Sbhn_NPUntitled Query
    Updated 2023-01-29
    select tx_id,sum(amount/pow(10,decimal)) as vol
    from axelar.core.fact_transfers
    where amount/pow(10,decimal) > 1e14
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data