This React application displays the current borrowing rates for various assets on the Aave V3 protocol.
- Connect to MetaMask wallet
- Display current borrowing rates for multiple assets
- Auto-refresh data on new Ethereum blocks
- Manual refresh option
- Responsive design for mobile and desktop
-
Clone the repository: https://github.com/vinhphamdev/aave-borrowing-rates
-
Install dependencies: npm install
-
Start the development server: npm start
-
Open http://localhost:3000 to view it in the browser.
The application uses ethers.js to interact with the Ethereum blockchain and the Aave V3 smart contract. It fetches the current borrowing rates for various assets and displays them in a table format.
Key components:
- Wallet connection using MetaMask
- Fetching data from the Aave V3 smart contract
- Auto-refreshing data on new blocks
- Responsive UI using Tailwind CSS
-
ABI Integration: Finding and integrating the correct ABI for the Aave V3 contract was challenging. Ensure you're using the most up-to-date ABI.
-
Rate Calculation: The borrowing rates returned by the contract are in ray units (1e27). We needed to convert these to percentages for display.
-
Auto-refresh Optimization: Implementing auto-refresh on new blocks while avoiding excessive API calls required careful debouncing.
-
Mobile Responsiveness: Ensuring the UI looks good on both desktop and mobile required careful CSS adjustments.
- Add support for more assets
- Implement error handling for network issues
- Add unit tests for components and functions