Haisenbergeth-rollbit
    Updated 2023-04-30
    select block_timestamp,
    tx_hash,
    'Deposit' as type,
    'ETH' as symbol,
    eth_from_address as user,
    amount,
    amount_usd
    from ethereum.core.ez_eth_transfers
    where eth_to_address = lower('0xCBD6832Ebc203e49E2B771897067fce3c58575ac')



    select block_timestamp,
    tx_hash,
    'Withdrawal' as type,
    'ETH' as symbol,
    eth_to_address as user,
    -amount,
    -amount_usd
    from ethereum.core.ez_eth_transfers
    where eth_from_address = lower('0xCBD6832Ebc203e49E2B771897067fce3c58575ac')
    Run a query to Download Data