mmdrezaTop 10 LP pools with the most Burn action
    Updated 2022-08-14
    select pool_name,count(tx_hash) as transactions
    from optimism.velodrome.ez_lp_actions
    where lp_token_action like 'burn'
    group by pool_name
    order by transactions desc
    limit 10
    Run a query to Download Data