TRANSACTIONS | USERS | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|
1 | 463874 | 67049 | 587.926489 | 84.979721 |
Afonso_DiazTotal
Updated 2025-04-15
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
main as (
select
tx_hash,
block_timestamp,
signer_id as user,
deposit / 1e24 as amount,
'Stake' as event_name
from
near.core.fact_actions_events_function_call
where
receipt_succeeded
and method_name = 'deposit'
and receiver_id = 'storage.herewallet.near'
union all
select
tx_hash,
block_timestamp,
signer_id as user,
args:amount::bigint / 1e24 as amount,
'Unstake' as event_name
from
near.core.fact_actions_events_function_call
where
receipt_succeeded
and method_name = 'withdraw'
and receiver_id = 'storage.herewallet.near'
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
transactions / count(distinct block_timestamp::date) as daily_average_transactions,
Last run: 24 days ago
1
37B
162s