select date_trunc('day', block_timestamp) as day, count(distinct(from_address)) as total_users from optimism.core.fact_transactions
where to_address = '0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45'
and (
origin_function_signature = '0x5ae401dc'
)
and status = 'SUCCESS'
group by day