Mint, sell, and trade NFTs on Hedera

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.

Beyond the Frame: LG's Journey into NFTs and Digital Artistry

Play Video
HH NFT Stats BG H Logo BG Mobile

6,004,422

NFTS MINTED
on the Hedera mainnet

HH Sustainibility Tymlez H Logo

6,149,866

NFT TRANSFERS
on Hedera

CARBON NEGATIVE NFTS

Hedera is the most sustainable public distributed ledger, based on average energy consumed per transaction (0.00017 kWh), according to a recent study conducted by University College London.

Low and Predictable Fees

Fees on Hedera are fixed, denominated in USD, and paid in $HBAR. It costs $1 to create an NFT collection and $0.05 to mint an NFT in that collection — transfers are only $0.001.

Immutable Royalty Configurations

Incorporate NFT royalty fees with just a few lines of code. Ensure payment to creators for all secondary sales. Immutable royalties on Hedera are paid by the NFT recipient and can optionally include a fallback fee.

Dapp ecosystem wallets

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.

Create a free Hedera account, purchase HBAR and USDC with a bank card, manage NFTs, sign transactions, and more.
Create a free Hedera account, purchase HBAR and USDC with a bank card, manage NFTs, sign transactions, and more.

Explore thousands of NFT projects in the fast-growing Hedera NFT ecosystem

Carbon negative commitment

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.

HH NFTLP Desktop UCL Logo outline
ba r -

$250M Metaverse Fund

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.

Low, predictable fees

Fees on Hedera are fixed, denominated in USD, and paid in $HBAR. To see the full fee schedule, visit the fee estimator.

NFT fee schedule

Mint and transfer NFTs on Hedera at a fraction of the cost of other public ledgers.
HEDERA TRANSACTION
FIXED FEE (USD PAID IN $HBAR)
Create an NFT collection
$1.00
Mint an NFT in a collection
$0.02
Associate a token with an account
$0.05
Transfer an NFT
$0.001
Include a royalty fee
$0.001
Burn a token
$0.001

Configure a collection. Add a royalty. Mint an NFT.

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`);