theericstoneNet LPing: Pool Count, Deposits - Withdrawals
    with deposits as (
    select
    ),
    withdrawals as (
    )


    select * from optimism.core.fact_event_logs
    where lower(event_name) like '%deposit%'
    and block_timestamp > current_date - 10
    and contract_address in (select address from optimism.core.dim_labels where label_type = 'dex')
    limit 10;

    select * from optimism.core.dim_labels where address = lower('0x09236cfF45047DBee6B921e00704bed6D6B8Cf7e')
    Run a query to Download Data