Skip to content
🎉 Welcome to the new Aptos Docs! Click here to submit feedback!
Build
Aptos Standards

Aptos Standards

Standards define a common interoperable interface for all developers to build upon. They consist of rules to ensure compatibility across applications and wallets on the Aptos blockchain. See a list of known coin resource addresses on Aptos provided by hippospace.

Move Standards

Aptos Object

The Object model allows Move to represent a complex type as a set of resources stored within a single address and offers a rich capability model that allows for fine-grained resource control and ownership management.

Asset Standards

Digital Asset (DA)

The new Aptos Digital Asset Standard allows:

  • Rich, flexible assets and collectibles.
  • Easy enhancement of base functionality to provide richer custom functionalities. An example of this is the aptos_token module

Digital Asset (DA) is recommended for any new collections or protocols that want to build NFT or semi-fungible tokens.

Fungible Asset (FA)

The new Aptos Fungible Asset Standard is a standard meant for simple, type-safe, and fungible assets based on object model intending to replace Aptos coin. Fungible Asset (FA) offers more features and flexibility to Aptos move developers on creating and managing fungible assets.

Legacy Standards

Aptos Token

The old existing Token module, on the other hand:

  • Encapsulates rich, flexible assets and collectibles. These assets are discrete (non-decimal) and can be fungible, semi-fungible, or non-fungible.
  • The token standard is in its own AptosToken package at the Address 0x3 to allow for rapid iteration based on feedback from the community.

Aptos Coin

The Coin module is a lightweight standard meant for simple, type-safe, and fungible assets. The coin standard is separated out into its own Move module to ensure that:

  • Applications and users can create and use simple tokens, with high performance and low gas overhead.
  • The Coin standard is part of the Aptos core framework, so it can be used for currencies, including the gas currency.