Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 933 Bytes

README.md

File metadata and controls

32 lines (17 loc) · 933 Bytes

Aave 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;