Open
Description
Describe the bug
Aave ARC subgraph seems to providing a incorrect priceInEth value of USDC when compared to the price returned from the on-chain Oracle (and Aave v2 sub-graph).
To Reproduce
Run any query that will return USDC price in eth
E.g
{
users(
first: 1,
skip: 9,
orderBy:id,
orderDirection:desc,
where:{
borrowedReservesCount_gt:0
}
)
{
id
collateralReserve:reserves(
where:{
currentATokenBalance_gt:0
reserve_:{symbol: "USDC"}
}
){
currentATokenBalance
reserve{
symbol
underlyingAsset
price{
priceInEth
}
}
}
}
}
Expected behavior
Price returned from subgraph to match on chain oracle price
Metadata
Assignees
Labels
No labels
Activity