index.js:114 Error fetching Aave data: Error: overflow #605
-
I am implementing lending and borrowing functionality using aave-utilities, but while fetching data using, getReservesHumanized() method, I am getting this error: provider (using from wagmi):
My data setup:
This is what I am doing, I also tried to format the reserves data using formatReserves method in aave-math-utils:
Also I have checked the POOL_ADDRESSES_PROVIDER by comparing it from the aave addresses in the documentation, and eveything is correct. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The issue here is that the Sepolia V3 testnet market is not using the updated Aave v3.2 codebase, which has breaking changes to the view contract functions This can be resolved by using the |
Beta Was this translation helpful? Give feedback.
The issue here is that the Sepolia V3 testnet market is not using the updated Aave v3.2 codebase, which has breaking changes to the view contract functions
This can be resolved by using the
LegacyUiPoolDataProvider
service, example usage