omer93Avalanche TPS comparison
Updated 2023-11-22
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
avx as (
select
trunc(block_timestamp,'day') as date,
count(distinct tx_hash) as txs,
txs/84600 as tps
from avalanche.core.fact_transactions
where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
group by 1
order by 1 asc
),
cosmos as (
select
trunc(block_timestamp,'day') as date,
count(distinct tx_id) as txs,
txs/84600 as tps
from cosmos.core.fact_transactions
where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
group by 1
order by 1 asc
),
near as (
select
trunc(block_timestamp,'day') as date,
count(distinct tx_hash) as txs,
txs/84600 as tps
from near.core.fact_transactions
where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
group by 1
order by 1 asc
),
sei as (
select
trunc(block_timestamp,'day') as date,
count(distinct tx_id) as txs,
txs/84600 as tps
Run a query to Download Data