akbaridriabsc arb 6
Updated 2022-07-02
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
›
⌄
WITH data_bsc as (
select
block_timestamp::date as date,
count(distinct tx_hash) as total
from
bsc.core.ez_bnb_transfers
where
block_timestamp::date >= CURRENT_DATE - 7
and
block_timestamp::date != CURRENT_DATE -- PREVENT NOT FULL TRANSACTIONS
group by 1
)
, data_arbitrum as (
select
block_timestamp::date as date,
count(distinct tx_hash) as total
from
arbitrum.core.ez_eth_transfers
where
block_timestamp::date >= CURRENT_DATE - 7
and
block_timestamp::date != CURRENT_DATE -- PREVENT NOT FULL TRANSACTIONS
group by 1
)
select 'BSC' as blockchain, * from data_bsc
union all
select 'Arbitrum' as blockchain, * from data_arbitrum
Run a query to Download Data