messari2023-01-17 11:04 PM
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
›
⌄
with
transaction_table as (
select
date(block_timestamp) as date,
tx_hash,
tx_signer,
tx_receiver
from
near.core.fact_transactions
),
unstake_events as (
select
tx_hash as tx,
deposit / pow(10, 24) as near_amount,
method_name
from
near.core.fact_actions_events_function_call
WHERE
(
method_name = 'unstake'
or method_name = 'unstake_all'
)
)
select
date,
tx,
tx_signer,
near_amount,
method_name,
tx_receiver
from
transaction_table a
join unstake_events b on a.tx_hash = b.tx
limit
100;
Run a query to Download Data