Mint and configure tokens and accounts.

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.
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.
Fees on Hedera are fixed, denominated in USD, and paid in $HBAR. To see the full fee schedule, visit the fee estimator.
$89 USD
(@ $8.90)
$100 USD
(@ $0.10)
$315 USD
(@ $19.67)
$485 USD
(@ $0.66)
(@ $1,596.07)
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`);