sakineh5021-nIQRzBConcentration of Capital 7
    Updated 2022-04-04
    with pool as (
    SELECT POOL_ADDRESS , POOL_NAME
    FROM ethereum.dex_liquidity_pools
    where platform ='sushiswap'
    )
    SELECT POOL_NAME , user_address , balance
    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
    and balance is not NULL
    order by balance DESC
    limit 2000
    Run a query to Download Data