-- forked from flyingfish / Copy of Minting Fees per block (excluding team mints) @ https://flipsidecrypto.xyz/flyingfish/q/minting-fees-per-token-and-per-block-1XZ2tU
SELECT tx_hash, block_number, block_timestamp, tokenid::int as token_id, tx_fee
FROM avalanche.core.dim_contractsavalanche.core.dim_contractsethereum.core.ez_nft_mints
WHERE nft_address = '0x27787755137863bb7f2387ed34942543c9f24efe' and token_id > 5
ORDER BY token_id ASC