Hedera offers low, fixed fees, immutable royalties, scalable transactions, and a carbon-negative footprint, making it the best network for NFT applications and projects.
Pending transactions, expensive gas fees, and poor business and sustainability practices are a relic of blockchain past.
With Hedera, NFTs operate at the speed of hashgraph — 10,000 transactions per second with immediate finality. All of this with royalties enforced at the protocol level on the carbon-negative, open source, public Hedera network.
NFTS MINTED on the Hedera mainnet
NFT TRANSFERS on Hedera
Create or import a Hedera account for free, buy HBAR and USDC using a bank card, manage tokens and NFTs, and connect to the permissionless application ecosystem.
Buy, sell, mint, and bid on NFTs using marketplaces and launchpads built on Hedera.
Fees on Hedera are fixed, denominated in USD, and paid in $HBAR. To see the full fee schedule, visit the fee estimator.
For developers creating an NFT marketplace, financial application, or ecosystem tool, it has never been easier to get started.
// CREATE NFT WITH CUSTOM FEE let nftCreate = await new TokenCreateTransaction() .setTokenName("Fall Collection") .setTokenSymbol("LEAF") .setTokenType(TokenType.NonFungibleUnique) .setDecimals(0) .setInitialSupply(0) .setTreasuryAccountId(treasuryId) .setSupplyType(TokenSupplyType.Finite) .setMaxSupply(CID.length) .setCustomFees([nftCustomFee]) .setAdminKey(adminKey) .setSupplyKey(supplyKey) .setPauseKey(pauseKey) .setFreezeKey(freezeKey) .setWipeKey(wipeKey) .freezeWith(client) .sign(treasuryKey); let nftCreateTxSign = await nftCreate.sign(adminKey); let nftCreateSubmit = await nftCreateTxSign.execute(client); let nftCreateRx = await nftCreateSubmit.getReceipt(client); let tokenId = nftCreateRx.tokenId; console.log(`Created NFT with Token ID: ${tokenId} \n`);
Here are a few resources to start your journey building NFT-focused applications on the public Hedera network.
Whether you are a developer, HBAR enthusiast, or web3 application user, here is how to get started with Hedera.