Updated 3 days ago
    with

    p as (
    select * from boba.core.ez_decoded_event_logs limit 1
    ),

    main as (
    select
    tx_hash,
    origin_from_address as user,
    block_timestamp,
    amount_usd,
    decoded_log:bridgeData:bridge as platform,
    'Base' as chain
    from
    base.core.ez_decoded_event_logs
    join
    base.core.ez_token_transfers
    using (tx_hash, block_timestamp, origin_to_address)
    where
    tx_status = 'SUCCESS'
    and event_name = 'LiFiTransferStarted'
    and origin_to_address = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
    and decoded_log:bridgeData:integrator = 'jumper.exchange'
    and from_address = origin_to_address
    and decoded_log:bridgeData:destinationChainId = 288

    union all

    select
    tx_hash,
    origin_from_address as user,
    block_timestamp,
    amount_usd,
    decoded_log:bridgeData:bridge as platform,
    'Optimism' as chain
    Last run: 3 days ago
    TRANSACTIONS
    USERS
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    1
    54144152906.89288555287.739457522
    1
    40B
    828s