protocol-subgraphs icon indicating copy to clipboard operation
protocol-subgraphs copied to clipboard

The Subgraph not fetching the data for `aETH` and few other `aTokens`

Open lksquare opened this issue 4 years ago • 1 comments

Description

As a developer I want to fetch the data for aETH and other Aave tokens using the subgraph here. when queried for reserves for the account 0x49a2dcc237a65cc1f412ed47e0594602f6141936 the subgraph doesn't returns the aETH reserves. on the other hand the aETH reserves are displayed by the contract here, as well as the v1 version of the subgraph here.

How to replicate the issue?

  • go to this link here, try to read the contract with the address value of 0x49a2dcc237a65cc1f412ed47e0594602f6141936.
  • Or check here
  • Go to the subgraph here, try to fetch the data using the query below
{
    userReserves(
        where: {
            user: "0x49a2dcc237a65cc1f412ed47e0594602f6141936"
        }
    ) {
        reserve {
            symbol
            name
        }
    scaledATokenBalance
    }
}

lksquare avatar Oct 28 '21 17:10 lksquare

I also have the same problem.

VladEarnven avatar Nov 19 '21 20:11 VladEarnven