NFT SC Introduction

NFT minter Smart Contract

Be aware that the Smart Contract doesn't have any audits. It has complete functionality for the first version but still needs some improvements. Test it first on the devnet/testnet. And be sure that you know what you are doing.

You are reading about the Smart Contract designed for the MultiversX blockchain. Its primary purpose is to provide a simple logic for minting and buying NFT tokens from a previously configured collection. It does it in a randomized way.

It supports:

  • issuing the collection token
  • setting the create role
  • pausing/unpausing the process
  • random mint and distribution
  • minting multiple NFTs in one transaction
  • giveaway options
  • possibility to split the process into drops/waves
  • claiming the developer rewards
  • changing basic setup where it is possible

The smart contract works like a candy machine. In short, the user can pay in EGLD and, in return, will get randomly minted tokens from the previously configured collection. The amount of tokens per address is configured on the smart contract.

Required initial configuration

All are mandatory operations and should be done only once. Make the transactions in this order.

  1. The Smart Contract requires initial configuration to start the minting process. First, you would need to deploy it with all the arguments defined for the init endpoint. Check the description and link to the code in the endpoints section. It is simpler if you are using the Elven Tools CLI.
  2. You would need to issue the collection token using the issueCollection endpoint. With CLI, it is simpler to do that. Again, check it in the endpoints section.
  3. Next is the setLocalRoles endpoint - it is required to set up proper roles for the collection token.
  4. Finally, you need to start the minting by calling the startMinting endpoint. By default, in the beginning, the minting is paused.

Remember that everything is more straightforward with the Elven Tools CLI Check the jump start section.

Ways of using it

The best way of using it will be with Elven Tools CLI tool. It has a lot of valuable functions integrated with the smart contract, so deploying or interacting is simple. You can deploy the smart contract directly from its repository. Almost no coding skills are required in this case.

You can also take a more standard path and use mxpy for that. Mxpy CLI is an official CLI SDK for MultiversX blockchain based on Python.

Limitations and caveats

  • Remember that because of the open-source nature of this Smart Contract, it won't be used only in a way that everyone would want to, be aware that you can always change the names of the endpoints in the Smart Contract. You can even deploy a couple of them. In the last minutes before the mint, decide to use one. This will limit the bots. Remember always to inform which one is the official one.
  • Smart Contract in version 1 doesn't have many mechanisms which will strongly limit unwanted behaviors. It only implements random minting, but in version 2, there will be more mechanisms for fair launches.

Issues and ideas

Please post issues and ideas here.

Contact

Contents