mcfemi6Monthly Active Users on Uniswap
    Updated 2022-11-03
    Select date_trunc ('month', block_timestamp) as month, count(DISTINCT origin_address) as users, count(DISTINCT tx_id) as transactions, From_label
    from ethereum.udm_events
    Where from_label = 'uniswap' and from_label_type = 'dex' and block_timestamp >= CURRENT_DATE - interval '5 years'
    group by 1, 4
    order by 1 desc;



    Run a query to Download Data