TOTAL_VOL | CHAIN | |
---|---|---|
1 | 4380281.48 | Base |
2 | 495542.58 | Arbitrum |
3 | 167475.78 | Optimism |
4 | 30386.02 | Blast |
tkvresearchnecessary-lavender
Updated 2025-04-01
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 contract as
(select address,
symbol,
name
from ink.core.dim_contracts),
ink_wallet as
(select
user_add
from
(select date(block_timestamp) as datetime,
date_trunc('week',block_timestamp) as week_date,
date_trunc('month',block_timestamp) as month_date,
tx_hash,
tx_fee,
to_address as user_add,
from_address as contract_add
from ink.core.fact_transactions
where from_address in (select address from contract)
union all
select date(block_timestamp) as datetime,
date_trunc('week',block_timestamp) as week_date,
date_trunc('month',block_timestamp) as month_date,
tx_hash,
tx_fee,
from_address as user_add,
to_address as contract_add
from ink.core.fact_transactions
where to_address in (select address from contract)))
select sum(total_buy) as total_vol,
chain
from
(select *,
'Base' as chain
from
Last run: 27 days ago
4
86B
17s