sunshine-juliaTop 20 new swappers with highest swap volume in USD
    Updated 2023-09-27
    WITH new_swappers_1 as
    (select recipient as new_swapper, min(block_timestamp) as first_time
    FROM ethereum.uniswapv3.ez_swaps group by 1 having first_time >= '2022-11-01')
    select recipient, abs (sum(amount0_usd)) as Total_Volume
    from ethereum.uniswapv3.ez_swaps
    where recipient in (select new_swapper from new_swappers_1)
    and amount0_usd <1e9
    group by 1
    having Total_Volume >0
    order by 2 desc 50000000000
    limit 20
    '0x974ac927d2a24f4226a3aa7e116af0da67abcc9b', '0x80ba1f37fe1208d55125063a37e1cc01b62b52c3','0xdd15fb3f998511903b9b9cf7d61fbf59fcdc08c5', '0x717f60a74fe17d0cb1ec4c0cac788bc7d492b70f', '0x4360658e680026e4c636e8be0f7d0b9f976c46f0','0x128dd66e4c9f1477ba29523b379aec6ace76d584'




    Run a query to Download Data