with para as (
select
min(date(block_timestamp)) as date,
origin_address
from ethereum.udm_events
where block_timestamp >= CURRENT_DATE-60
and (FROM_LABEL = 'paraswap' or TO_LABEL = 'paraswap')
group by 2
)
select
date,
count(distinct origin_address) as new_users
from para
group by 1