SELECT
a.tx_hash,
a.block_timestamp,
a.tokenid::int as token_id,
a.tx_fee,
b.gas_price
FROM ethereum.core.ez_nft_mints a
LEFT JOIN ethereum.core.fact_transactions b
ON b.tx_hash = a.tx_hash
WHERE nft_address = lower('0x27787755137863bb7f2387ed34942543c9f24efe')
ORDER BY token_id ASC