Pre-deployed Contract

To Share and +4 nLEARNs

Learn how to easily create your own non-fungible tokens without doing any software development by using a readily-available NFT smart contract.

Prerequisites

To complete this tutorial successfully, you’ll need:

Using the NFT contract

Setup

  • Log in to your newly created account with near-cli by running the following command in your terminal:
near login
  • Set an environment variable for your account ID to make it easy to copy and paste commands from this tutorial:
export NEARID=YOUR_ACCOUNT_NAME

:::note

Be sure to replace YOUR_ACCOUNT_NAME with the account name you just logged in with including the .testnet (or .near for mainnet).

::

  • Test that the environment variable is set correctly by running:
echo $NEARID

Minting your NFTs

NEAR has deployed an NFT contract to the account nfts.examples.testnet which allows users to freely mint tokens. Using this pre-deployed contract, let’s mint our first token!

  • Run this command in your terminal, however you must replace the token_id value with an UNIQUE string.
near call example-nft.testnet nft_mint '{"token_id": "TYPE_A_UNIQUE_VALUE_HERE", "receiver_id": "'$NEARID'", "token_metadata": { "title": "GO TEAM", "description": "The Team Goes", "media": "https://bafybeidl4hjbpdr6u6xvlrizwxbrfcyqurzvcnn5xoilmcqbxfbdwrmp5m.ipfs.dweb.link/", "copies": 1}}' --accountId $NEARID --deposit 0.1
:::tip
You can also replace the media URL with a link to any image file hosted on your web server.
::
Example response:

“`json
{
“token_id”: “0”,
“owner_id”: “dev-xxxxxx-xxxxxxx”,
“metadata”: {
“title”: “Some Art”,
“description”: “My NFT media”,
“media”: “https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Olympus_Mons_alt.jpg/1024px-Olympus_Mons_alt.jpg”,
“media_hash”: null,
“copies”: 1,
“issued_at”: null,
“expires_at”: null,
“starts_at”: null,
“updated_at”: null,
“extra”: null,
“reference”: null,
“reference_hash”: null
},
“approved_account_ids”: {}
}
“`

  • To view tokens owned by an account you can call the NFT contract with the following near-cli command:
near view example-nft.testnet nft_tokens_for_owner '{"account_id": "'$NEARID'"}'
Example response:

“`json
[
{
“token_id”: “0”,
“owner_id”: “dev-xxxxxx-xxxxxxx”,
“metadata”: {
“title”: “Some Art”,
“description”: “My NFT media”,
“media”: “https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Olympus_Mons_alt.jpg/1024px-Olympus_Mons_alt.jpg”,
“media_hash”: null,
“copies”: 1,
“issued_at”: null,
“expires_at”: null,
“starts_at”: null,
“updated_at”: null,
“extra”: null,
“reference”: null,
“reference_hash”: null
},
“approved_account_ids”: {}
}
]
“`

Congratulations! You just minted your first NFT token on the NEAR blockchain! 🎉

👉 Now try going to your NEAR Wallet and view your NFT in the "Collectibles" tab. 👈


Final remarks

This basic example illustrates all the required steps to call an NFT smart contract on NEAR and start minting your own non-fungible tokens.

Now that you’re familiar with the process, you can jump to Contract Architecture and learn more about the smart contract structure and how you can build your own NFT contract from the ground up.

Happy minting! 🪙

::note Versioning for this article

At the time of this writing, this example works with the following versions:

  • near-cli: 3.0.0
    ::
Generate comment with AI 2 nL
Scroll to Top
Report a bug👀