Crazy_KidConcentration of Capital 1
    Updated 2022-04-03
    SELECT to_address_name as liq_pool, to_address as pool_address,
    COUNT(DISTINCT from_address) as liquidity_provider_count, sum(amount_usd) as liq_added
    FROM ethereum.udm_events
    WHERE to_label = 'sushiswap' AND to_label_subtype = 'pool'
    AND origin_function_name IN ('addLiquidity', 'addLiquidityETH')
    AND amount_usd IS NOT NULL
    GROUP BY liq_pool, pool_address
    ORDER BY liquidity_provider_count DESC
    Run a query to Download Data