Moenative bridge accross bridge from ethereum to arbitrum1
    Updated 2022-08-30
    select
    BLOCK_TIMESTAMP::date as date,
    count (distinct ETH_FROM_ADDRESS) as users,
    sum(AMOUNT_USD) as bridged_value
    from ethereum.core.ez_eth_transfers
    where ETH_to_ADDRESS = '0x4d9079bb4165aeb4084c526a32695dcfd2f77381'
    and ORIGIN_TO_ADDRESS = '0x4d9079bb4165aeb4084c526a32695dcfd2f77381'
    and ORIGIN_FUNCTION_SIGNATURE = '0x49228978'
    group by 1
    Run a query to Download Data