Skip to main content
Version: Current

Launch a Token

Token Standards

It is important that Flow has Token Standards for Fungible tokens and Non-fungible tokens. This allows applications and other smart contracts to interact with your token in a predictable way.

Non-Fungible Tokens (NFTs)

All NFTs on the Flow blockchain implement the NonFungibleToken interface, allowing them to be compatible with wallets, marketplaces and other cross-app experiences.

Fungible Tokens

The FLOW token is a fungible token, More Information. Fungible tokens can be used for various reasons on the Flow blockchain.

  • In order to create a fungible token, the Fungible tokens, interface has to be implemented.

How to Launch a Fungible Token

There is a lot to consider when creating a token, strong tokenomics, private or public sale, distribution, and finally an organized launch on centralized and decentralized exchanges. These concepts will not be discussed here, only how to create a token.

  • Flow Token Standard - minimum requirements to implement a safe, secure, easy to understand and easy to use fungible token contract

Example of a Fungible Token Contract ExampleToken. See how to deploy contracts here.

How to Launch a Non-Fungible Token (NFT)

A NFT collection is very flexible and can be used for many different use cases. The most common use case is for digital art, but it can also be used for collectibles, game items, and more. Keeping this in mind, a tool will help build the NFT collection metadata.

A few resources to help start your NFT collection:

NFT Catalog

After getting your NFT collection created, look into your collection registered on the NFT catalog. The NFT Catalog will allow developers to easily discover your NFT collection. This will give them the opportunity to integrate your collection into their applications.

Final Words

We have given in this guide a number of guidelines and templates to help you get around the cold start problem.

More Resources: