rackhaelEVMOS
Updated 2023-05-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
-- select
-- -- date_trunc('day', block_timestamp) as date,
-- block_id,
-- count(tx_id) as transactions
-- from evmos.core.fact_transactions
-- -- group by 1
-- -- limit 3
select block_id,
tx_count as transactions
from evmos.core.fact_blocks
order by 1
Run a query to Download Data