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.
The efficiency of hashgraph consensus enables Hedera to be the most sustainable public network, based on average energy consumed per transaction (0.000003 kWh), according to a recent study conducted by University College London.In addition, Hedera has committed to being a carbon-negative public network through the purchase of quarterly carbon credits to offset the small amount of emissions from all public-facing infrastructure.
The HBAR Foundation Metaverse Fund brings users into the Hedera ecosystem at scale by accelerating the development of projects across gaming and virtual worlds, collectibles, social and creator platforms, and enterprise.
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`);