# Non-Fungible tokens in Venom network

Non-fungible tokens aka NFT are unique cryptographic tokens that exist on a blockchain and cannot be replicated. Non-fungible is an economic term that you could use to describe things like your picture, a song file, or even your furniture. These things are not interchangeable for other items because they have unique properties.

{% hint style="info" %}
Follow [this](/knowledge-base/build/development-guides/how-to-create-your-own-fungible-tip-3-token.md) guide to explore another type of blockchain tokens - fungible tokens
{% endhint %}

Venom network uses the standard of fungible tokens TIP-4

### What is TIP-4?

Same as Ethereum ERC-721 standard, TIP-4 provides similar functionality for Venom Blockchain. As well as TIP-3, TIP-4 was designed to match the distributed system design of the Venom network. It is cost-effective for it's fee-paying model.

TIP-4 provides following functionality:

* minting and burning NFTs
* transferring NFTs from one account to another
* selling your NFTs

### ERC721 differences

ERC721 generally is a monolith smart-contract, which stores mapping, that show token owners by token ids. Tokens metadata can be stored here too in another mapping or you can store only `tokenUri` (mapped the same way - by token ids), which can help you to reach token metadata.

<figure><img src="/files/piwgYGAhQ3jhzwARabrh" alt=""><figcaption><p>ERC721 concept simple scheme</p></figcaption></figure>

TIP-4 consists of collection contract and personal contracts for each non-fungible token. As a results, users owns concrete amount of NFT contracts, that stores metadata.

<figure><img src="/files/qYtuQRYJT7BcPbHlDYLr" alt=""><figcaption><p>TIP-4 concept simple scheme</p></figcaption></figure>

\<todo: standard link>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://venom-docs.gitbook.io/knowledge-base/build/development-guides/how-to-create-your-own-non-fungible-tip-4-token/non-fungible-tokens-in-venom-network.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
