0-MIDhourly & Total volume Arb -mode
    Updated 2024-10-08

    with tab1 as (
    select
    TX_HASH
    from arbitrum.core.ez_decoded_event_logs
    where EVENT_NAME='LiFiTransferStarted'
    and DECODED_LOG:bridgeData:integrator='jumper.exchange'
    and ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
    and DECODED_LOG:bridgeData:destinationChainId=34443
    )
    select date_trunc('day',BLOCK_TIMESTAMP) as day
    ,sum(AMOUNT_USD) as volume
    ,sum(volume)over(order by day) as total
    from arbitrum.core.ez_token_transfers
    where ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
    and ORIGIN_FROM_ADDRESS=FROM_ADDRESS
    and TX_HASH in (select TX_HASH from tab1)
    and AMOUNT_USD is not null
    group by 1









    QueryRunArchived: QueryRun has been archived