DigitalDanMDAO 1. Most Active LPs on Convex 2
    Updated 2022-02-04
    --Users lock CRV LP tokens on Convex. Which tokens are most often added to Convex?
    --Are people exiting or entering any specific pools at high volumes? Are any pools less active?
    select date_trunc('week', block_timestamp) as weeks, count(distinct(tx_id)), symbol
    from ethereum.udm_events
    where symbol like '%cvx%' and origin_function_signature = '0x60759fce' and weeks > current_date - interval '6 months'
    group by 1,3
    order by weeks desc
    Run a query to Download Data