mariyaTop 10 volume of assets inflow to FTX
    Updated 2022-11-09
    with alamedaftx as ( select *
    from ethereum.core.dim_labels
    where label ilike 'ftx%' or address_name ilike 'ftx%')
    select symbol, sum (amount_usd) as Inflow_Volume
    from ethereum.core.ez_token_transfers
    where to_address in (select distinct address from alamedaftx)
    and From_Address not in (select distinct address from alamedaftx)
    and block_timestamp >= '2022-11-01'
    and amount_usd > 0
    group by 1
    order by 2 DESC
    limit 10


    Run a query to Download Data