Sandeshrabby gas payouts
Updated 2024-05-01
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
'ethereum' as chain,
count(distinct tx_hash) as transactions,
count(distinct to_address) as users,
sum(amount_usd) as volume
from ethereum.core.ez_native_transfers
where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
and block_timestamp >= '2024-04-01'
)
union all
(
select
'polygon' as chain,
count(distinct tx_hash) as transactions,
count(distinct to_address) as users,
sum(amount_usd) as volume
from polygon.core.ez_native_transfers
where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
and block_timestamp >= '2024-04-01'
)
union all
(
select
'base' as chain,
count(distinct tx_hash) as transactions,
count(distinct to_address) as users,
sum(amount_usd) as volume
from base.core.ez_native_transfers
where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
and block_timestamp >= '2024-04-01'
)
QueryRunArchived: QueryRun has been archived