Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Latest commit

 

History

History
36 lines (18 loc) · 1.04 KB

File metadata and controls

36 lines (18 loc) · 1.04 KB

Aave SDK

This repo has been archived. Please use the official SDK.

banner

Collections of hooks and providers to make development on top of the aave contracts and pools a breeze.

Development

Install the packages

yarn

Run the example apps

yarn dev

Contribute to the sdk

The core hooks and logics of the sdk are located unders /packages/react-sdk.

While running yarn dev, any edit to the files should be reflected in real-time in the example apps.

Committing

This repo uses conventional commits via commitlint. commitlint is enforced via an husky pre-commit hook.

This means all the commits have to follow a specific structure like:

  • feat(sdk): add new feature;
  • fix(vite-app): avoid re-render;