maybeyonastxs_near
Updated 2022-10-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with
txs as (
select
block_timestamp,
tx_hash,
tx_receiver,
tx_signer,
tx:actions[0]:FunctionCall:method_name as method_name,
try_base64_decode_string(tx:actions[0]:FunctionCall:args) as args
from near.core.fact_transactions
where tx:actions[0]:FunctionCall is not null
)
select * from txs
limit 100
Run a query to Download Data