SELECT DISTINCT e as action, count(DISTINCT tx_hash) as txs, TIMESTAMP::date as date
from external.tokenflow_starknet.decoded_events
where CHAIN_ID = 'mainnet'
and action = 'register_round'
and CONTRACT = '0x054b7b08b5389709af79a65b21574231b9adb0c313c1598aac94ee44fe99d213'
GROUP BY 1,3;