Start with the Hedera JavaScript SDK
Understand Hedera SDK clients, identifiers, transactions and receipts. Start with the current JavaScript package and learn safely on testnet.
Content reviewed on
@hiero-ledger/sdk. Follow that maintained setup in a separate learning project with a supported Node release. Do not replace an existing application's SDK dependency without checking its migration requirements.
The objects you will meet
Parse an NFT identifier first
import { TokenId, NftId } from '@hiero-ledger/sdk';
const token = TokenId.fromString('0.0.1234567');
const nft = new NftId(token, 1);
console.log(nft.toString());

