hessVolume Breakdown
Updated 2023-04-15
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 ethereum as ( select date(a.block_timestamp) as date,
a.tx_hash,
source_chain,
destination_chain,
sender,
amount,
project_name
from ethereum.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
join crosschain.core.address_labels c on a.to_address = c.address
where source_chain = 'ethereum'
and label_type != 'cex'
and token_symbol ilike '%usdc%'
)
,
polygon as ( select date(a.block_timestamp) as date,
a.tx_hash,
source_chain,
destination_chain,
sender,
amount,
project_name
from polygon.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
join crosschain.core.address_labels c on a.to_address = c.address
where source_chain = 'polygon'
and label_type != 'cex'
and token_symbol ilike '%usdc%')
,
avalanche as ( select date(a.block_timestamp) as date,
a.tx_hash,
source_chain,
destination_chain,
sender,
amount,
project_name
from avalanche.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
join crosschain.core.address_labels c on a.to_address = c.address
Run a query to Download Data