select date_trunc('day',block_timestamp)as date,count(tx_hash) as transactions
from polygon.core.fact_token_transfers
join polygon.core.dim_labels on address = contract_address
where origin_from_address = lower('0x0000000000000000000000000000000000000000')
or origin_to_address = lower('0x0000000000000000000000000000000000000000')
and contract_address = lower('0xbbba073c31bf03b8acf7c28ef0738decf3695683')
group by date
order by date asc