Solution Overview

Easily create NFTs.

When you create a new NFT using BWS.NFT.zK (Zero Knowledge) solution, the NFT will initially be linked to your BWS account. In order to transfer an NFT ownership, you have two options:

  • Transfer ownership to a blockchain wallet address.

  • Transfer ownership to an email address.

Before you transfer your NFT, we will do the custody, and ownership is mapped with your BWS Account.

Transfer NFT Ownership to a Wallet

If you want to transfer an NFT ownership to another wallet address, you can simply use the Transfer NFT operation indicating the new blockchain wallet address owner.

Transfer NFT Ownership to an Email Address

If you want to transfer an NFT ownership, but the new owner does not have a Web3 Wallet (or you don't know it), you can simply transfer the ownership by using his email address.

Email received for the new NFT owner to hold and get ownership

We will send the new owner an email notification indicating he's the owner of the NFT. If he wants to transfer the ownership to his own Wallet, he will be able to.

Transfer ownership page for wasy NFT transfers

Please note that once you transfer the ownership using an email address, ONLY the email address owner will be able to transfer the NFT to a new Wallet address.

NFT Image

Your NFT image is always hosted in IPFS.

To create an NFT using BWS.NFT.zK, you pass the NFT image as:

  • a web addressable URL, or,

  • as an IPFS URI (for example, ipfs://QmcduEBAppXxnyn37deHHf33Ep7cPbYxn1mH36Nvvowki).

API Call JSON Example using a URL for the NFT image.

{
    "name": "My NFT",
    "description": "My First NFT",
    "image": "https://uploads-ssl.webflow.com/6474d385cfec71cb21a92251/647dde8bbe8f094f5a0ee2c1_bws-violet.svg",
    "attributes":[
        {       
            "trait_type": "Rarity",
            "value": "Ultra rare" 
        }
    ]
}

In all the scenarios, your NFT metadata will point to an image stored in IPFS, as we will upload your image to IPFS if required.

NFT Metadata

Your NFT metadata is always hosted in IPFS.

When a new NFT is created, we create and upload the NFT metadata to IPFS,

NFT Metadata Example

{
    "name": "BWS NFT Limited Edition",
    "description": "This NFT is a limited edition, with only 100 copies in existence, each meticulously verified on the blockchain.",
    "image": "ipfs://QmcduEBAppXxnyn37deHHf33Ep7cPbYxn1mH36Nvvowkiu",
    "attributes": [
        {
            "trait_type": "Rarity",
            "value": "Ultra rare"
        }
    ]
}

Your NFT blockchain transaction then points to IPFS, as you can see on the following example:

NFT Creation Transaction Parameters

We currently offer NFT creation in Polygon and Ethereum blockchains.

Blockchain
Network Id
Description

Matchain

matchain

Matchain blockchain.

Polygon

polygon

Polygon blockchain.

mumbai

Polygon test network.

Ethereum

ethereum

Ethereum blockchain

We recommend using the Polygon Mumbai network for tests.

Click on Contract Address to check the verified contract.

Matchain

Network Id
Contract Address
Version

Polygon

Network Id
Contract Address
Version

polygon

mumbai

Ethereum

Network Id
Contract Address
Version

ethereum

1

Last updated

Was this helpful?