messari2023-01-17 11:04 PM
    Updated 2023-01-18
    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