mohammadhnew unique users that transacted with ParaSwap over the past two months.
    Updated 2022-05-10
    select date_trunc('day', block_timestamp) as block_day,
    count(distinct FROM_ADDRESS) as unique_users
    from ethereum.udm_events
    where block_timestamp >= CURRENT_DATE - 60
    and TO_ADDRESS='0xdef171fe48cf0115b1d80b88dc8eab59176fee57'
    group by block_day
    order by block_day
    Run a query to Download Data