CarlOwOsUntitled Query
    Updated 2022-08-02
    --SELECT distinct method_name
    --FROM flipside_prod_db.mdao_near.actions_events_function_call
    --WHERE method_name = 'unstake_all'
    SELECT logs, *
    FROM near.core.fact_receipts logs
    JOIN near.core.fact_actions_events_function_call
    USING(tx_hash)
    WHERE method_name = 'deposit_and_stake'
    AND block_timestamp >= CURRENT_DATE

    Run a query to Download Data