Updated 2024-09-22
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    symbol,
    amount_usd,
    'Ethereum' as chain
    from
    ethereum.core.ez_token_transfers
    where
    to_address in (
    '0xf7e8033366166f92eb477b7b38e0d47d47b43326',
    '0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6',
    '0x940362b46faf7df48af1c8989d809f50466b5fca'
    )

    union all

    select
    tx_hash,
    block_timestamp,
    symbol,
    amount_usd,
    'Arbitrum' as chain
    from
    arbitrum.core.ez_token_transfers
    where
    to_address in (
    '0xf7e8033366166f92eb477b7b38e0d47d47b43326',
    '0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6',
    '0x940362b46faf7df48af1c8989d809f50466b5fca'
    )

    union all
    QueryRunArchived: QueryRun has been archived