Updated 2023-09-02
    with pricet as (
    SELECT
    HOUR::date as dates,
    TOKEN_ADDRESS,
    avg(price) as usd
    from ethereum.price.fact_hourly_token_prices
    group by 1,2
    ),

    airdropt as (
    select
    distinct ORIGIN_FROM_ADDRESS as user ,
    amount as volume ,
    amount_usd as usd_volume ,
    BLOCK_TIMESTAMP ,
    'Arbitrum' as Projects
    from arbitrum.core.ez_token_transfers
    WHERE ORIGIN_FUNCTION_SIGNATURE IN ('0x4e71d92d', '0x78e2b594')
    AND ORIGIN_TO_ADDRESS = '0x67a24ce4321ab3af51c2d0a4801c3e111d88c9d9'
    AND BLOCK_NUMBER >= 70506697

    UNION

    select
    distinct ORIGIN_FROM_ADDRESS as user ,
    AMOUNT as volume ,
    amount_usd as USD_volume ,
    BLOCK_TIMESTAMP ,
    'Optimism' as Projects
    from optimism.core.ez_token_transfers
    where ORIGIN_TO_ADDRESS ='0xfedfaf1a10335448b7fa0268f56d2b44dbd357de'
    and CONTRACT_ADDRESS = '0x4200000000000000000000000000000000000042'
    and FROM_ADDRESS ='0xfedfaf1a10335448b7fa0268f56d2b44dbd357de'
    and ORIGIN_FUNCTION_SIGNATURE ='0x2e7ba6ef'

    UNION
    Run a query to Download Data