Drsimoneth vs sol daily transactions
Updated 2023-01-08
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
›
⌄
with eth as (
SELECT
date_trunc('day', BLOCK_TIMESTAMP) as day ,
count(distinct TX_HASH) as tx_eth
from ethereum.core.fact_transactions
where 1=1
and day >= '2022-08-01'
GROUP by 1
-- order by 1
) ,
sol as (
SELECT
date_trunc('day', BLOCK_TIMESTAMP) as day ,
count(distinct TX_id) as tx_sol
from solana.core.fact_transactions
where 1=1
and day >= '2022-08-01'
GROUP by 1
-- order by 1
)
select e.day ,e.tx_eth , s.tx_sol
from eth e
full outer join sol s
on e.day = s.day
order by 1
Run a query to Download Data