with topups as (
select
tx_hash
,block_timestamp
,origin_from_address
from ronin.core.fact_event_logs
where 1=1
and block_timestamp > '2025-03-27 17:56:00'
--and tx_hash = '0x08c2000b2db40a163179b66bca050c37bc42c02aa4dcd898031e26417a027715'
and contract_address = '0x97f23294f47155c4cef55088c80be34b2adc1abc'
and topic_0 = '0xd43fffdf01316edc73491a343299f89691b04b15bccd422af5fbcf06f7a01e66'
)
select
count(tx_hash) as top_ups
from topups