SeleçãoTokens with the highest volume bridged out
    Updated 2023-11-12
    select
    TOKEN_SYMBOL,
    sum(AMOUNT_USD) as volume


    from
    ethereum.defi.ez_bridge_activity
    where
    BLOCK_TIMESTAMP>current_date-360
    group by 1
    having volume is not null
    order by 2 desc
    Run a query to Download Data