# NFT Token ERC721

{% hint style="info" %}
**Copy and modify:** Copy the sample code and make the necessary changes as instructed in this documentation. Always do your tests using the testnet network before publishing on mainnet.
{% endhint %}

{% hint style="success" %}
All Blockchain
{% endhint %}

{% tabs %}
{% tab title="NFT ERC721 Mainnet ou Testnet" %}

```javascript
new contract
contract.nft erc721=> (
  {
     marketplace : "0x66b7f4Cf1F5264A8d152CD8442B663ae7124E62c",
     owner : "0x8f890dF9fE06B41D89f9b9c53e8D68791fF2828c",
     name : "NFT Max",
     symbol : "NFTMAX"
  }
)
contract.nft deploy=> ("mainnet")
```

{% endtab %}
{% endtabs %}

`CONNECT` `https://dapp.tokenbank.exchange/`

#### Request Body

| Name                                          | Type   | Description                                                                                                                                                          |
| --------------------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| marketplace<mark style="color:red;">\*</mark> | string | Marketplace smart contract address, the store needs to be associated with the NFT tokens that will be sold, if you don't have the marketplace add any wallet address |
| owner<mark style="color:red;">\*</mark>       | string | Smart contract owner wallet address                                                                                                                                  |
| name<mark style="color:red;">\*</mark>        | string | Name of your NFT tokens                                                                                                                                              |
| symbol                                        | String | Symbol of your NFT token                                                                                                                                             |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}
