Minting is the action to create a new token on the blockchain and send it to a specific wallet.

1

Mint a token

First, we need to mint the token. This route is used to mint both fungible and non-fungible tokens. For non-fungible tokens, the uriNumber is required.

Remember to switch <CONTRACT_ID> and <WALLET_ID>.

You will receive a status 202 with an object containing the ID of the transaction.

2

Read a transaction

Every new mint is queued up to mitigate the possibility of a transaction failing.

Now, let’s check the transaction’s status on the blockchain.

Remember to switch <TRANSACTION_ID>.

You will receive a status 200 with an object containing the transaction status and transaction hash.

Congratulations! You can check your transaction on the block explorer. Just paste the transaction hash in the search field.

Any problems during this guide? Check some possible troubleshooting.