Afonso_Diaz2023-09-09 08:12 PM
    Updated 2023-09-27
    select
    pool_name,
    count(distinct tx_hash) as transactions,
    count(distinct liquidity_provider) as users
    from ethereum.uniswapv3.ez_lp_actions
    group by 1
    order by users desc
    limit 10
    Run a query to Download Data