messaristake deep
Updated 2022-11-02
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
›
⌄
SELECT
block_timestamp,
tx_hash,
tx_receiver,
tx_signer,
tx:actions[0]:FunctionCall:deposit/pow(10,24) near_staked,
tx:receipt[0]:outcome:executor_id as executor_id,
tx:receipt[0]:outcome:logs as logs,
regexp_substr(logs, 'Contract total staked balance is\\W+\\w+') as result,
TRIM(REGEXP_REPLACE(result, '[a-z/-/A-z/./#/*"]', '')) as validator_stake_pre,
try_to_numeric(validator_stake_pre) as amount
FROM near.core.fact_transactions
WHERE tx_hash IN ( SELECT tx_hash
FROM near.core.fact_actions_events_function_call
WHERE method_name IN ('deposit_and_stake')) AND block_timestamp < '2022-12-01'
limit 100
select
*
FROM near.core.fact_transactions
WHERE tx_hash IN (
SELECT
tx_hash
FROM near.core.fact_actions_events_function_call
WHERE method_name IN ('deposit_and_stake','withdraw_all')
)
limit 100
Run a query to Download Data