Afonso_Diaz2023-06-01 10:49 PM
    Updated 2023-06-01

    with
    t as (
    select
    tx_hash,
    block_timestamp,
    'Arbitrum' as chain,
    'Inflow' as type,
    origin_from_address as user,
    symbol,
    amount_usd
    from arbitrum.core.ez_token_transfers a
    join arbitrum.core.dim_labels b
    on a.to_address = b.address
    where amount_usd < 1000000000
    and project_name like '%multichain%'
    and origin_function_signature in ('0x0175b1c4', '0xa5e56571')

    union all

    select
    tx_hash,
    block_timestamp,
    'Arbitrum' as chain,
    'Inflow' as type,
    origin_from_address as user,
    'ETH' as symbol,
    amount_usd
    from arbitrum.core.ez_eth_transfers a
    join arbitrum.core.dim_labels b
    on a.eth_to_address = b.address
    where amount_usd < 1000000000
    and project_name like '%multichain%'
    and origin_function_signature in ('0x0175b1c4', '0xa5e56571')

    union all
    Run a query to Download Data