BlockTrackernear - test
Updated 2023-04-11Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
⌄
SELECT
date_trunc('day', block_timestamp) AS date,
sum(tx:actions[0]:FunctionCall:withdraw) AS volume_withdraw
FROM
near.core.fact_transactions
WHERE
tx_receiver = 'everstake.poolv1.near'
AND tx:actions[0]:FunctionCall:method_name = 'withdraw'
GROUP by 1;
SELECT DISTINCT tx:actions[0]:FunctionCall:method_name
FROM near.core.fact_transactions
WHERE tx_receiver = 'linear-protocol.near'
AND tx:actions[0]:FunctionCall:method_name != 'deposit_and_stake' and tx_signer != 'operator.linear-protocol.near'
--tx_hash = '2qp7znMGMMHCdd36ZCyL2xK1AspPq8JphbNKWsdYVA15';
Run a query to Download Data