mehrancrypto-dxoepqUntitled Query
    Updated 2023-03-22
    with tab0 as (
    SELECT *
    from ethereum.aave.ez_votes
    where BLOCK_TIMESTAMP > CURRENT_DATE-10
    )
    SELECT A.* , B.gas_used , B.tx_fee , B.CUMULATIVE_GAS_USED , B. ETH_VALUE
    from tab0 A left OUTER JOIN ethereum.core.sv_fact_transactions B
    on A.tx_hash = B.tx_hash


    Run a query to Download Data