SeleçãoGeneral Info
    Updated 2023-11-12
    select
    date_trunc('month',BLOCK_TIMESTAMP) as date ,
    sum(AMOUNT_USD) as volume ,
    TOKEN_SYMBOL,
    DESTINATION_CHAIN
    from
    ethereum.defi.ez_bridge_activity
    where
    date>current_date-360
    group by TOKEN_SYMBOL,DESTINATION_CHAIN,date
    having volume>1000
    Run a query to Download Data