flyingfishMinting Fees per token and per block
    Updated 2023-06-02
    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.core.ez_nft_mints
    WHERE nft_address = '0x27787755137863bb7f2387ed34942543c9f24efe'
    ORDER BY token_id ASC
    Run a query to Download Data