Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 1 day 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 (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-22T16:52:06.000Z (6 months ago)
- Last Synced: 2024-05-22T17:50:01.403Z (6 months ago)
- Topics: aave, aave-lending, aave-protocol, aave-v3, blockchain, defi, ethereum, react, reactjs, sdk, typescript
- Language: TypeScript
- Homepage:
- Size: 2.11 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aave SDK
## [Aave V3 React is out!](https://www.npmjs.com/package/aave-v3-react)
![banner](https://github.com/akanoce/react-aave-sdk/blob/main/assets/banner.jpg)
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;