Andrew Schmidt
Andrew Schmidt
Also account for delay in cross-chain execution
@iamanastasia Could you possibly give some feedback on the error message here
Now supported: https://github.com/aave/protocol-subgraphs?tab=readme-ov-file#production-networks
Current balances will only update for a specific user on the subgraph when that user performs an action. To compute the current aToken balance you multiply the users scaledATokenBalance by...
Yes, [this](https://docs.aave.com/developers/guides/rates-guide#how-is-yield-accrued) explains the variables used in this calculation
Other examples include WBTC, wstETH, and WETH on Arbitrum V3 ``` { reserves(where: {symbol_in: ["WETH", "WBTC", "wstETH"]}) { symbol price { priceInEth } } } ```
Link T-8986
That's a great idea, especially if more pages are added in the future mint will only get harder to find. It's a pretty easy addition: - Add `Mint` option to...
This is an issue of relying on TheGraph to update for live data This can be avoided by waiting to load the view/sell buttons until a contract read follows the...
So I had a bit of a misunderstanding on the contracts side 😓 , I thought approve/permit was required for all NFTs transfers but `safeTransferFrom` allows the owner to transfer...