SELECT
COUNT(tx_hash) AS nfts_minted,
COUNT(DISTINCT origin_from_address) AS minters
FROM monad.testnet.fact_event_logs
WHERE origin_to_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
AND contract_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
AND topic_0 = '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62'
AND tx_succeeded = 'TRUE'
ORDER BY nfts_minted ASC