kiacryptoNumber of new unique users (wallets) per day that transacted with ParaSwap
    Updated 2022-05-12
    select date_trunc('day', block_timestamp) as date , count(distinct from_address)
    from ethereum_core.fact_transactions
    where date >= current_date - 60 and to_address = '0xdef171fe48cf0115b1d80b88dc8eab59176fee57'
    group by 1
    Run a query to Download Data