SalehCelsius Swaps-top 10 wallets
    Updated 2022-06-19
    select top 10
    origin_from_address
    ,count (distinct tx_hash) as tx_count
    ,sum (amount_in_usd) as volume_usd
    from ethereum.sushi.ez_swaps
    where origin_from_address in (select address from flipside_prod_db.crosschain.address_labels where project_name ='celsius network')
    group by 1
    order by tx_count DESC
    Run a query to Download Data