NuveveCryptoArchivedA vs B Total Fees
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
›
⌄
with arb as (
select
concat('Arbitrum') as category,
sum(tx_fee) as total
from arbitrum.core.fact_transactions
where block_timestamp > '2022-06-20 00:00'
and block_timestamp < '2022-06-27 01:00'
),
bsc as (
select
concat('BSC') as category,
sum(tx_fee) as total
from bsc.core.fact_transactions
where block_timestamp > '2022-06-20 00:00'
and block_timestamp < '2022-06-27 01:00'
)
select *
from arb
union
select *
from bsc
Run a query to Download Data