select date_trunc('{{Time_Frame}}',created_at) as "Date", count(distinct split_part(id,'_',0)) as "TXs Count", case
when amount is null then 'Token Deployment' else 'Token Transfers' end as "ITS Type"
from axelar.axelscan.fact_gmp
where call ilike '%0xB5FB4BE02232B1bBA4dC8f81dc24C26980dE9e3C%' and
created_at::date>=current_date-{{Time_Interval}}
group by 1,3
order by 1