Sandeshrabby gas payouts copy
Updated 2024-12-26
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
›
⌄
-- forked from rabby gas payouts @ https://flipsidecrypto.xyz/edit/queries/dabcb1dd-4989-4b4b-9a84-bf3208eb0bd7
(
select
'ethereum' as chain,
count(distinct tx_hash) as transactions
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
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
from base.core.ez_native_transfers
where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
and block_timestamp >= '2024-04-01'
)
union all
(
QueryRunArchived: QueryRun has been archived