Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Create and manage fungible tokens and NFTs on Hedera with minting, supply control, and permission configuration.
Create and manage fungible tokens and NFTs on Hedera with minting, supply control, and permission configuration.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
npm install @hashgraph/sdk
import { TokenCreateTransaction, TokenSupplyType, TokenType } from '@hashgraph/sdk'; const tx = await new TokenCreateTransaction() .setTokenName("My Token") .setTokenSymbol("MTK") .setTokenType(TokenType.FungibleCommon) .setSupplyType(TokenSupplyType.Infinite) .setDecimals(2) .setInitialSupply(1000000) // Total supply = 1,000,000 .setTreasuryAccountId(treasuryId) .setAdminKey(adminKey) .setSupplyKey(supplyKey) .freezeWith(client) .sign(treasuryKey); const result = await tx.execute(client); const tokenId = result.receipt.tokenId;
const tx = await new TokenCreateTransaction() .setTokenName("My NFT Collection") .setTokenSymbol("MNFT") .setTokenType(TokenType.NonFungibleUnique) .setTreasuryAccountId(treasuryId) .setAdminKey(adminKey) .setSupplyKey(supplyKey) .freezeWith(client) .sign(treasuryKey);
import { TokenMintTransaction } from '@hashgraph/sdk'; const tx = await new TokenMintTransaction() .setTokenId(tokenId) .addMetadata(Buffer.from("NFT #1 metadata")) .addMetadata(Buffer.from("NFT #2 metadata")) .freezeWith(client) .sign(supplyKey); const result = await tx.execute(client);
import { TransferTransaction } from '@hashgraph/sdk'; await new TransferTransaction() .addTokenTransfer(tokenId, fromAccount, -10) .addTokenTransfer(tokenId, toAccount, 10) .execute(client);
import { TokenBurnTransaction } from '@hashgraph/sdk'; await new TokenBurnTransaction() .setTokenId(tokenId) .setAmount(100) .execute(client);
Supply Types: Infinite or Finite Token Types: FungibleCommon or NonFungibleUnique Royalty: Use custom fees for NFT royalties Token ID Format: 0.0.12345
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.