winnie-fsMinting Fees per token and per block copy
    Updated 2024-10-25
    -- forked from flyingfish / Minting Fees per token and per block @ https://flipsidecrypto.xyz/flyingfish/q/3ZQotbKJjLRJ/minting-fees-per-token-and-per-block

    SELECT tx_hash, block_number, block_timestamp, tokenid::int as token_id, tx_fee
    , tx_fee * 1000 AS test
    , log(10, tx_fee) as logFee
    FROM ethereum.nft.ez_nft_mints
    WHERE nft_address = '0x27787755137863bb7f2387ed34942543c9f24efe'
    ORDER BY token_id ASC