lagandispenserNumber of Transactions Over Time
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 polygon1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from polygon.core.fact_blocks),
flow1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from flow.core.fact_blocks),
sol1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from solana.core.fact_blocks),
eth1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from ethereum.core.fact_blocks),
bsc1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from bsc.core.fact_blocks),
ava1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from avalanche.core.fact_blocks),
osm1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from osmosis.core.fact_blocks),
arb1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from arbitrum.core.fact_blocks),
opt1 as (
select max(tx_count), min(tx_count),avg (tx_count)
from optimism.core.fact_blocks),
Run a query to Download Data