FABLEBORNE | TX_COUNT | USER_COUNT | FEES | |
---|---|---|---|---|
1 | before 30 days | 36336239 | 3222723 | 62308.231988225 |
2 | After 30 days | 53081243 | 3604911 | 102407.796138016 |
elsinatotal amount (30 Days)
Updated 2025-02-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
case
when block_timestamp::date < '2024-11-13' then 'before 30 days'
else 'After 30 days'
end as Fableborne,
count(distinct tx_hash) as tx_count,
count(distinct from_address) as user_count,
sum(tx_fee) as fees
from ronin.core.fact_transactions
where block_timestamp::date between '2024-10-13' and '2024-12-13'
group by 1
Last run: 28 days ago
2
105B
5s