sakineh5021-nIQRzBConcentration of Capital 2
    Updated 2022-04-04
    with pool as (
    SELECT POOL_ADDRESS , POOL_NAME
    FROM ethereum.dex_liquidity_pools
    where platform ='sushiswap'
    )

    SELECT POOL_NAME , count(user_address)
    from ethereum.erc20_balances
    left outer join pool P on POOL_ADDRESS = contract_address
    where balance_date = '2022-04-01'
    and POOL_NAME is not NULL
    group by 1

    Run a query to Download Data