EVENT_NAME | TRANSACTIONS | USERS | VOLUME | AVERAGE_AMOUNT | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|---|---|---|
1 | Stake | 11558977 | 2900359 | 3568642.254209 | 0.308733291819 | 206410.303571 | 51792.125 |
2 | Unstake | 5103766 | 1171043 | 4307453.548957 | 0.797721048702 | 91138.678571 | 20911.482143 |
Afonso_DiazTotal
Updated 22 hours ago
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
utils.udf_hex_to_int(data)::bigint / 1e18 as amount,
iff(topics[1] = '0x0000000000000000000000000000000000000000000000000000000000000000', 'Stake', 'Unstake') as event_name
from
monad.testnet.fact_event_logs
where
tx_succeeded
and origin_to_address = '0xb2f82d0f38dc453d596ad40a37799446cc89274a'
and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
and contract_address = lower('0xb2f82D0f38dc453D596Ad40A37799446Cc89274A')
and block_timestamp >= '2025-02-19'
)
select
event_name,
count(distinct tx_hash) as transactions,
count(distinct user) as users,
sum(amount) as volume,
avg(amount) as average_amount,
transactions / count(distinct block_timestamp::date) as daily_average_transactions,
users / count(distinct block_timestamp::date) as daily_average_users
from
main
group by 1
Last run: about 22 hours ago
2
166B
93s