select date_part('hour', block_timestamp) as "Hour", count(distinct tx_hash) as "Txn Count"
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