Abbas_ra21Weekly ststs compettion
Updated 2024-11-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select
Date_trunc('week',BLOCK_TIMESTAMP) AS week,
'base' AS Chain,
sum(Amount) AS "Transfers Volume (USDC)"
from base.core.ez_token_transfers where CONTRACT_ADDRESS=lower('0x833589fcd6edb6e08f4c7c32d4f71b54bda02913')
and block_timestamp >= '2024-01-01' group by 1,2
union ALL
select
Date_trunc('week',BLOCK_TIMESTAMP) AS week,
'optimism' AS Chain,
sum(Amount) AS "Transfers Volume (USDC)"
from optimism.core.ez_token_transfers where CONTRACT_ADDRESS=lower('0x0b2c639c533813f4aa9d7837caf62653d097ff85')
and block_timestamp >= '2024-01-01' group by 1,2
union ALL
select
Date_trunc('week',BLOCK_TIMESTAMP) AS week,
'avalanche' AS Chain,
sum(Amount) AS "Transfers Volume (USDC)"
from avalanche.core.ez_token_transfers where CONTRACT_ADDRESS=lower('0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E')
and block_timestamp >= '2024-01-01' group by 1,2
union ALL
select
Date_trunc('week',BLOCK_TIMESTAMP) AS week,
'ethereum' AS Chain,
sum(Amount) AS "Transfers Volume (USDC)"
from ethereum.core.ez_token_transfers where CONTRACT_ADDRESS=lower('0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48')
and block_timestamp >= '2024-01-01' group by 1,2
union ALL
select
Date_trunc('week',BLOCK_TIMESTAMP) AS week,
'arbitrum' AS Chain,
sum(Amount) AS "Transfers Volume (USDC)"
from arbitrum.core.ez_token_transfers where CONTRACT_ADDRESS=lower('0xaf88d065e77c8cC2239327C5EDb3A432268e5831')
and block_timestamp >= '2024-01-01' group by 1,2
union ALL
select
QueryRunArchived: QueryRun has been archived