DB_across the chains
Updated 2022-12-21
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
28
29
30
31
32
33
34
35
36
›
⌄
with ETH_UNI as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_hash) as transactions,
sum(eth_value) as total_eth,
sum(tx_fee) as total_fees,
avg(tx_fee) as avg_fee
from
ethereum.core.fact_transactions
where
to_address = lower('0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B')
group by 1
),
arbitrum_uni as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_hash) as transactions,
sum(eth_value) as total_eth,
sum(tx_fee) as total_fees,
avg(tx_fee) as avg_fee
from
arbitrum.core.fact_transactions
where
to_address = lower('0x4C60051384bd2d3C01bfc845Cf5F4b44bcbE9de5')
group by 1
),
optimism_uni as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_hash) as transactions,
sum(eth_value) as total_eth,
sum(tx_fee) as total_fees,
avg(tx_fee) as avg_fee
from
optimism.core.fact_transactions
where
Run a query to Download Data