0-MIDTop 10 token copy
    Updated 2024-05-23
    -- forked from Top 10 token @ https://flipsidecrypto.xyz/edit/queries/e3e7efa7-d6eb-4b17-89ba-a62048e1debc


    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 BLOCK_TIMESTAMP::date>=current_date-30
    )
    select SYMBOL
    ,sum(AMOUNT_USD) as volume
    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 BLOCK_TIMESTAMP::date>=current_date-30
    and AMOUNT_USD is not null
    group by 1
    order by 2 desc
    limit 50




    QueryRunArchived: QueryRun has been archived