aptos-token-standards

Guide Aptos token standards for fungible and non-fungible tokens.

Updated Nov 25, 2025
One-click install
npx skills add https://github.com/gounthar/bazel-riscv --skill aptos-token-standards
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aptos-token-standards
Source: https://github.com/gounthar/bazel-riscv/tree/main/.claude/skills/aptos/token-standards
Command: npx skills add https://github.com/gounthar/bazel-riscv --skill aptos-token-standards

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill documents fungible tokens (Coin, Fungible Asset) and NFTs (Token V1/V2, Digital Asset) with minting, burning, and metadata patterns.

Core Features & Use Cases

  • Coin, Fungible Asset, Digital Asset standards
  • Token V1/V2, metadata, royalties
  • Minting, burning, transfer patterns

Quick Start

Start by selecting a token standard and implementing a simple mint.

Frequently Asked Questions about aptos-token-standards

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What are the different token standards available on Aptos?

Aptos supports four main token standards: Coin and Fungible Asset for fungible tokens, and Digital Asset and Token V1/V2 for non-fungible tokens. Each standard serves different use cases and provides varying levels of flexibility for minting, burning, metadata management, and transfer patterns.

How do I mint tokens on Aptos?

Minting tokens on Aptos depends on your chosen standard. The Coin standard requires defining a coin type and using mint functions; Fungible Asset uses a more flexible framework. Digital Asset and Token standards have their own minting patterns. This Skill provides complete code examples and best practices for each approach.

What's the best way to manage NFT metadata and royalties on Aptos?

Aptos token standards handle metadata and royalties differently across Digital Asset and Token V1/V2. Metadata management covers collection setup and individual token attributes; royalties require configuration at minting. Best practices include planning collection structure upfront and following Aptos conventions for compatibility.

Can I transfer tokens between different Aptos token standards?

Token standards on Aptos are not interchangeable—Coin, Fungible Asset, Digital Asset, and Token standards operate independently. Transfer patterns vary by standard. Plan your standard choice during design, as migrating between standards requires rebuilding token logic and managing existing holdings.

What security considerations should I know about Aptos token minting and burning?

Minting and burning operations on Aptos require careful permission management to prevent unauthorized token creation or destruction. This Skill covers security best practices, access control patterns, and common pitfalls across Coin, Fungible Asset, Digital Asset, and Token standards.

How do I integrate Aptos tokens into an existing project?

Integrating Aptos tokens into existing projects depends on your current architecture and chosen token standard. This Skill provides integration patterns for new projects and existing systems, covering migration considerations, compatibility checks, and step-by-step implementation guidance.