subgraphs icon indicating copy to clipboard operation
subgraphs copied to clipboard

Across-V2 Arbitrum: `liquidityPoolDailySnapshot` TVL not being added into `financialDailySnapshot` TVL

Open bye43 opened this issue 2 years ago • 0 comments

In subgraphs.xyz: Screenshot 2023-06-30 at 1 16 46 PM

On Messari FE where we sum up poolSnapshots to get the protocol level values Screenshot 2023-06-30 at 1 16 10 PM

Here is the pool not being included: image (10)

{
  pools  (where:{id:"0xff970a61a04b1ca14834a43f5de4533ebddb5cc8"}){
    id
    name
    dailySnapshots (
      where:{
        timestamp_gt: 1682467200,
        timestamp_lt:1682553600
      }
    ){
      id
      timestamp
      totalValueLockedUSD
    }
  }
}

bye43 avatar Jul 18 '23 13:07 bye43