-- forked from Eman-Raz / Number of Daily Checkers @ https://flipsidecrypto.xyz/Eman-Raz/q/B_lUe6hHWBWy/number-of-daily-checkers
select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", count(distinct origin_from_address) as "Number of Users"
from blast.core.fact_event_logs
where origin_function_signature='0x183ff085'
and tx_status='SUCCESS'
and origin_to_address='0x5ff315aa82a8b2b435f866d20ecd46959999bdcd'
group by 1
order by 1