TRANSACTIONS | USERS | NETFLOW_VOLUME | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|---|
1 | 465601 | 67092 | 1003318.12324302 | 563.681598 | 81.225182 |
Afonso_DiazTotal
Updated 10 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
31
32
33
34
35
36
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
receipt_signer_id as user,
action_data:deposit / 1e24 as amount,
'Stake' as event_name
from
near.core.ez_actions
where
receipt_succeeded
and action_data:method_name = 'deposit'
and receipt_receiver_id = 'storage.herewallet.near'
union all
select
tx_hash,
block_timestamp,
receipt_signer_id as user,
action_data:args:amount::bigint / 1e24 as amount,
'Unstake' as event_name
from
near.core.ez_actions
where
receipt_succeeded
and action_data:method_name = 'withdraw'
and receipt_receiver_id = 'storage.herewallet.near'
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
sum(iff(event_name = 'Stake', amount, -amount)) as netflow_volume,
Last run: about 10 hours ago
1
54B
466s