sarathNear_city1
Updated 2022-11-06
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
›
⌄
with transaction_count as
(
select 'Near' as "Chain"
, count(*) as count_trx
from near.core.fact_transactions
where block_timestamp::date > current_date -90
and tx_status = 'Success'
union all
select 'Flow' as "Chain"
, count(*) as count_trx
from flow.core.fact_transactions
where block_timestamp::date > current_date - 90
and tx_succeeded = TRUE
union all
select 'Avalanche' as "Chain"
, count(*) as count_trx
from avalanche.core.fact_transactions
where block_timestamp::date > current_date - 90
and status = 'SUCCESS'
union all
select 'Osmosis' as "Chain"
, count(*) as count_trx
from osmosis.core.fact_transactions
where block_timestamp::date > current_date -90
)
select *
from transaction_count
order by 2 desc
Run a query to Download Data