SELECT count(*) "Mints", date_trunc('minute', block_timestamp) "Minute"
FROM ethereum.core.ez_nft_mints
WHERE NFT_ADDRESS = LOWER('0x903E2F5d42EE23156D548DD46bb84B7873789E44')
and block_timestamp between '2022-06-07 16:00:00.000' and '2022-06-07 17:00:00.000'
group by "Minute"