Venom Docs
  • General
    • Welcome to Venom
    • What's New
    • Ecosystem
    • Create a new Wallet Account
    • Balance Transfers
    • Community
    • Presskit
  • Learn
    • Glossary
    • Architecture
    • Tokens and Assets
    • Messages and Transactions
    • Accounts
  • Build
    • Development Guides
      • Comparing of Ethereum vs Venom architectures
      • Setting Up The Venom Smart Contract Development Environment
      • How to create your own fungible TIP-3 token
        • Fungible tokens in Venom network
        • Quick start developing with TIP-3
        • Venom In Action. Simple Tokensale.
        • Venom In Action. Extend our Tokensale with frontend
        • Venom In Action. Going Global
        • Venom In Action. Ways of code enhancing
      • Developing of simple voting system.
        • Voting system basics
        • Venom In Action. Voting system contracts.
        • Venom In Action. Ways of code enhancing
      • How to create your own non-fungible TIP-4 token
        • Non-Fungible tokens in Venom network
        • Quick start developing with TIP-4
        • Venom In Action. Simple NFT auction
        • Venom In Action. Extend our auction with frontend
    • Integration Guides
      • How to connect Dapp UI to Venom
    • Tools & Resources
  • Maintain
    • Network Maintainers
Powered by GitBook
On this page
  • What is TIP-4?
  • ERC721 differences
  1. Build
  2. Development Guides
  3. How to create your own non-fungible TIP-4 token

Non-Fungible tokens in Venom network

PreviousHow to create your own non-fungible TIP-4 tokenNextQuick start developing with TIP-4

Last updated 2 years ago

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.

Follow guide to explore another type of blockchain tokens - fungible tokens

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.

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.

<todo: standard link>

this
ERC721 concept simple scheme
TIP-4 concept simple scheme