π¨Non-Fungible Tokens (NFTs) on the Tezos blockchain
Introduction
On March 13, 2021, Christieβs auction houseβs ο¬rst sale of a digital piece of art emphasized the current traction for Non-Fungible Tokens (NFTs). That artwork was sold for 69 million USD, which was a record-breaking price for an NFT.
NFTs provide ownership management features for digital assets. That doesnβt eliminate the risk of copies, forgeries, or creation stealing, but it makes these things harder and thus helps to protect buyers, creators, and platforms.
A token is a representation of a physical or virtual asset.
There are two broad classes of assets: fungible and non-fungible.
A fungible token is composed of units that are indistinguishable and interchangeable. Gold is a fungible asset, since (for example) a standard 12.5 kg gold ingot is equivalent to any other ingot of the same weight.
A non-fungible token is composed of units that are distinct and non-interchangeable. It can be represented by an NFT. The Mona Lisa is a non-fungible asset. Thereβs only one; even an excellent copy is still not the Mona Lisa. A token representing ownership of the Mona Lisa shouldnβt be interchanged for a token representing ownership of a copy of it.
Non-fungible tokens
An NFT consists of data stored on a digital ledger to certify a digital asset as unique, indivisible, and not interchangeable.
It can be stored on a blockchain and used to represent a digital artwork, an ownership certiο¬cate of a tangible asset, or any other property of a non-fungible asset - be it material, cultural, electronic, and so forth.
The value of an NFT depends on the value of the asset that it denotes: an NFT representing the Mona Lisa is likely to be worth more than one representing a copy of the Mona Lisa. That is not because the original is necessarily prettier than the copy; but because the copy is not the original.
As weβll demonstrate in this document, NFTs can be issued and exchanged smoothly and quickly on the Tezos blockchain. Furthermore, buyers can prove swiftly and easily that they own an NFT, simply by making a query to the blockchain. So, for example, a process that traditionally might involve several hours looking up title deeds stored in a bank vault could be automated using blockchain to be done in microseconds with a few taps on a computer or mobile phone.
FA2 standard
On the Tezos blockchain, the token standard for creating NFTs is the FA2 standard. The FA2 standard allows the management of fungible tokens and NFTs within the same contract. However, its use is also adapted to interact only with NFTs. Each token is associated with a unique ID (identiο¬er) and metadata.
Metadata is useful information related to a smart contract, for example, the symbol of a token, the name of a token, an external link to a website, etc.
This standard allows simple management of NFTs, and itβs the Tezos equivalent of the Ethereum ERC1155 standard. Most of the Tezos NFT contracts implement this standard.
NFT platform and tools on Tezos
Here is a list of NFT projects currently available on Tezos:
Hic et nunc: the most popular NFT marketplace on Tezos. There are more than 500,000 NFTs available on their platform by September 2021. Hic et Nunc is mostly oriented towards art-related NFTs.
Objkt.com: an auction market enabling to sell Hic et nunc artworks ad various pieces from artists.
Kalamint: curated marketplace for all sorts of NFTs (art, collectible cards, music, etc. ).
tzNFT: a toolbox for creating your own NFTs.
Openminter: a toolbox for creating your own NFT platform.
tzcolors: auction marketplace allowing you to buy rare colors as NFTs.
Hic et nunc
A fast and simple solution to create an NFT on the Tezos blockchain is to use an NFT marketplace.
To create an NFT on Hic et Nunc, you need to connect to your favorite wallet and load your digital art piece.
You can set a title, description, tags, and price for your NFT...
Once all the information have been ο¬lled in, we can create our NFT. Royalties are mandatory on Hic et Nunc, and can be set from 10 to 25 percent.
Metadata will store information regarding the current content of the NFT, where itβs stored, and the information you provided during the creation. Creating an NFT on Tezos costs around 0.08 tez, which would be around 0.23 EUR as of June 4, 2021.
Openminter
OpenMinter is a free and open-source DApp framework enabling the creation and collection of NFTs on Tezos. Its features include browsing and marketplace capabilities.
OpenMinter relies on Minter SDK for its smart contracts, but it only implements two of them: the NFT collection and the Sales smart contract. Minter SDK provides many more, but theyβre not implemented in OpenMinter yet. You can ο¬nd the rest of the smart contracts here.
When you create an NFT with OpenMinter, it creates a collection containing that NFT and sets you as the owner of both the collection and the NFT. If you decide to list it for sale, the NFT becomes the property of the Sales smart contract. At that point, you donβt own it anymore. To be able to get the ownership back, you need to cancel the sale listing with the dedicated entry point.
Hereβs a list of useful documentation regarding OpenMinter:
OpenMinter Github: https://github.com/tqtezos/minter
Minter SDK: https://github.com/tqtezos/minter-sdk/
tzNFT
Another option could be to install tzNFT, which is a command-line tool for creating NFTs. It provides the following features:
Mint an NFT
Inspect an NFT
Transfer an NFT
Every time you create a new NFT collection, it creates a new smart contract. Once created, it wonβt be possible to add or remove tokens; only transfers will be available. With Hic et nunc, this tool relies on IPFS decentralized storage for storing NFT metadata. This is a very interesting option if you donβt want to pay any fees and have full control over your NFT.
Interactions
You can interact with an NFT through its original contract. Contract entry points deο¬ne the possible actions, which are generally as follows:
creation/destruction: itβs usually possible in centralized or open contracts.
transfer: it allows token transfers between peers.
swap: atomic and decentralized swap. This can only be done for tokens inside the same contract (it can also include a transaction).
delegation: it allows a trusted external party to manage the tokens.
Tickets and NFTs
Since the integration of the Edo Amendment into the Tezos blockchain in early 2021, a new type of data has emerged: the ticket. A ticket has three intrinsic properties:
it contains the address of the contract that created it,
it cannot be modiο¬ed,
it cannot be duplicated.
That allows the ticket to materialize and interact with a token within the blockchain outside its original contract. A token represented by a ticket can then be exchanged outside its original contract. Its authenticity is guaranteed by its address of origin, corresponding to the contract that created it. Tickets would be a great solution for managing the ownership of multisig NFTs or NFT collections. Instead of having a complex multi-signature process, you could just verify that the signer's address owns a speciο¬c ticket to grant access. It could also greatly facilitate the setup of a permissioned structure for an NFT or NFT collection.
Last updated