NuveveCryptoArchivedSolana Blocks
Updated 2022-07-23Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
avg(datediff(second, current_.block_timestamp, lag.block_timestamp)) as avg_blocktime,
min(datediff(second, current_.block_timestamp, lag.block_timestamp)) as min_blocktime,
max(datediff(second, current_.block_timestamp, lag.block_timestamp)) as max_blocktime
from solana.core.fact_transactions as current_
inner join solana.core.fact_transactions as lag on current_.block_id = lag.block_id - 1
where current_.block_timestamp >= current_date - 7
Run a query to Download Data