headitmanagerBentoBox TVL
Updated 2022-03-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
with ethereum_transactions as (select count(*) as cnt,date(block_timestamp) as date from ethereum.udm_events
where to_address='0xf5bce5077908a1b7370b9ae04adc565ebd643966'
group by date
)
,polygon_transations as (select count(*) as cnt,date(block_timestamp) as date from polygon.udm_events
where to_address='0x0319000133d3ada02600f0875d2cf03d442c3367'
group by date
)
select * from polygon_transations
Run a query to Download Data