Ali3NUSDC Holders and Average Balance on Avalanche vs Arbitrum, Polygon, Optimism
Updated 2024-03-22
999
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
›
⌄
with avaxr as (
select to_address,
sum (amount) as Received_Volume
from avalanche.core.ez_token_transfers
where contract_address in ('0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e','0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664')
group by 1),
avaxs as (
select from_address,
sum (amount) as sent_volume
from avalanche.core.ez_token_transfers
where contract_address in ('0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e','0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664')
group by 1),
arbr as (
select to_address,
sum (amount) as Received_Volume
from arbitrum.core.ez_token_transfers
where contract_address in ('0xaf88d065e77c8cc2239327c5edb3a432268e5831','0xff970a61a04b1ca14834a43f5de4533ebddb5cc8')
group by 1),
arbs as (
select from_address,
sum (amount) as sent_volume
from arbitrum.core.ez_token_transfers
where contract_address in ('0xaf88d065e77c8cc2239327c5edb3a432268e5831','0xff970a61a04b1ca14834a43f5de4533ebddb5cc8')
group by 1),
polyr as (
select to_address,
sum (amount) as Received_Volume
from polygon.core.ez_token_transfers
where contract_address ilike '0x2791bca1f2de4661ed88a30c99a7a9449aa84174'
group by 1),
polys as (
QueryRunArchived: QueryRun has been archived