Skip to content
Discussion options

You must be logged in to vote

There are two standards for Aptos NFTs:

  1. Digital Assets (the new standard) - original named token_object
  2. Legacy Token ( the old standard)

For the Digital asset standard there are a few ways to create tokens (with code):

  1. 0x4::token::create - this creates an object with a randomized address. This NFT can be deleted to get storage cost back https://github.com/aptos-labs/aptos-core/blob/main/aptos-move/framework/aptos-token-objects/sources/token.move#L207-L221
  2. 0x4::token::create_numbered_token - this creates a token where each one is numbered in order, while staying fully parallel in minting (high throughput). This NFT can be deleted to get storage cost back https://github.com/aptos-labs/ap…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by gregnazario
Comment options

You must be logged in to vote
2 replies
@0x-j
Comment options

0x-j Mar 11, 2024
Maintainer

@gregnazario
Comment options

gregnazario Mar 13, 2024
Maintainer Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
nft Questions related to NFTs and digital asset / token standards
3 participants