https://github.com/akanoce/react-aave-sdk
Collections of hooks and providers to make development on top of the AAVE contracts and pools a breeze.
https://github.com/akanoce/react-aave-sdk
aave aave-lending aave-protocol aave-v3 blockchain defi ethereum react reactjs sdk typescript
Last synced: 4 months ago
JSON representation
Collections of hooks and providers to make development on top of the AAVE contracts and pools a breeze.
- Host: GitHub
- URL: https://github.com/akanoce/react-aave-sdk
- Owner: akanoce
- Created: 2024-03-08T08:18:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T12:16:33.000Z (about 1 year ago)
- Last Synced: 2025-08-21T10:21:27.629Z (10 months ago)
- Topics: aave, aave-lending, aave-protocol, aave-v3, blockchain, defi, ethereum, react, reactjs, sdk, typescript
- Language: TypeScript
- Homepage:
- Size: 1.86 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aave SDK
## This repo has been archived. Please use [the official SDK](https://aave.com/docs/developers/aave-v3/getting-started/react).
## [Aave V3 React is out!](https://www.npmjs.com/package/aave-v3-react)

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](https://www.conventionalcommits.org/en/v1.0.0/) via [commitlint](https://github.com/conventional-changelog/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;