Sbhn_NPPast 30 Days Summary
Updated 2024-08-03
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
›
⌄
select 'Flow' as chain,
sum(transaction_count) as txs,
sum(unique_from_count) as users,
sum(total_fees_usd) as fees,
sum(TRANSACTION_COUNT_SUCCESS) as success,
sum(TRANSACTION_COUNT_FAILED) as failed
from flow.stats.ez_core_metrics_hourly
where block_timestamp_hour::date >= current_date -30
group by 1
union all
select 'Avalanche' as chain,
sum(transaction_count) as txs,
sum(unique_from_count) as users,
sum(total_fees_usd) as fees,
sum(TRANSACTION_COUNT_SUCCESS) as success,
sum(TRANSACTION_COUNT_FAILED) as failed
from avalanche.stats.ez_core_metrics_hourly
where block_timestamp_hour::date >= current_date -30
group by 1
union all
select 'SEI' as chain,
sum(transaction_count) as txs,
sum(unique_from_count) as users,
sum(total_fees_usd) as fees,
sum(TRANSACTION_COUNT_SUCCESS) as success,
sum(TRANSACTION_COUNT_FAILED) as failed
from sei.stats.ez_core_metrics_hourly
where block_timestamp_hour::date >= current_date -30
group by 1
QueryRunArchived: QueryRun has been archived