maybeyonastxs_near
    Updated 2022-10-10
    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