select BLOCK_TIMESTAMP::date as date,count(distinct EVENT_INPUTS:user) as unique_stakers
from ethereum.core.fact_event_logs
where ORIGIN_FUNCTION_SIGNATURE='0xc83ec04d'
and CONTRACT_NAME='EventsHubProxy'
and EVENT_NAME='ShareBurnedWithId'
and TX_STATUS='SUCCESS'
and date>='2022-07-01'
group by 1