NuveveCryptoArchivedArbitrum vs BSC Fees Paid
Updated 2022-07-03
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 arb as (
select
block_timestamp::date as date,
sum(tx_fee) as tx_fee
from arbitrum.core.fact_transactions
where block_timestamp > '2022-06-20 00:00'
and block_timestamp < '2022-06-27 01:00'
group by date
),
bsc as (
select
block_timestamp::date as date,
sum(tx_fee) as tx_fee
from bsc.core.fact_transactions
where block_timestamp > '2022-06-20 00:00'
and block_timestamp < '2022-06-27 01:00'
group by date
)
select
arb.date as date,
arb.tx_fee as arbitrum,
bsc.tx_fee as bsc
from arb
inner join bsc on arb.date = bsc.date
Run a query to Download Data