messaridelegator test
Updated 2023-01-18
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
transaction_table as (
select
date(block_timestamp) as date,
tx_hash,
tx_signer,
tx_receiver
from
near.core.fact_transactions
),
deposit_stake_events as (
select
tx_hash as tx,
deposit / pow(10, 24) as near_amount
from
near.core.fact_actions_events_function_call
WHERE
method_name = 'deposit_and_stake'
),
stake_transactions as (
select
date,
tx,
tx_signer,
near_amount,
tx_receiver
from
transaction_table a
join deposit_stake_events b on a.tx_hash = b.tx
)
select
date,
count(DISTINCT (tx_signer)) as total_staker,
sum(near_amount) as total_stake_amount,
count(DISTINCT (tx_receiver)) as total_validator,
avg(near_amount) as average_amount,
Run a query to Download Data