Abolfazl_771025top 10 swapper before merge by count of swap
    Updated 2022-09-30
    with main as (select
    distinct miner
    from ethereum.core.fact_blocks
    where miner is not null
    )
    select
    origin_from_address,
    count(tx_hash) as "swaped count"
    from ethereum.core.ez_dex_swaps a
    left join main b on a.origin_from_address=b.miner
    where symbol_in = 'WETH'
    and block_timestamp::date between '2022-09-01' and '2022-09-15 06:46:00.000'
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data