intensodefiUntitled Query
    Updated 2021-12-26
    SELECT
    distinct ORIGIN_FUNCTION_NAME
    FROM ethereum.udm_events
    WHERE contract_address IN (SELECT
    DISTINCT pool_address
    FROM ethereum.dex_liquidity_pools
    WHERE platform = 'sushiswap')
    and ORIGIN_FUNCTION_NAME like 'addLiquidity%'
    -- GROUP BY 1
    limit 50
    Run a query to Download Data