Skip to content

Latest commit

 

History

History
2357 lines (2127 loc) · 136 KB

SNIP-721.md

File metadata and controls

2357 lines (2127 loc) · 136 KB

SNIP-721: Private, Non-Fungible Tokens

SNIP-721 is a specification for private non-fungible tokens based on CosmWasm on the Secret Network. The name and design is loosely based on ERC-721, and is a superset of CosmWasm's CW-721. While this specification is CW-721 compliant, because CW-721 is not capable of privacy, a number of the CW-721-compliant functions may not return all the information a CW-721 implementation would. For example, the OwnerOf query must not display the approvals for a token unless the token owner has supplied his address and viewing key. In order to strive for CW-721 compliance, a number of queries that require authentication use optional parameters that the CW-721 counterpart does not have. If the optional authentication parameters are not supplied, the responses must only display information that the token owner has made public.

The SNIP-721 reference implementation may be used to create SNIP-721-compliant token contracts either as-is or as a base upon which to build additional application-specific functionality.

This specification is split into multiple sections, a contract may only implement some of this functionality, but must implement the base functionality.

Introduction

Scope

This document aims to set standard interfaces that SNIP-721 contract implementors will create, and that both wallet implementors & dependent contract creators will consume. For this reason, the focus of this document is to merely give SNIP-721 contract implementors the tools needed to create contracts that fully maintain privacy but not to specify implementation details. That said, this document may, at times, mention implementation details of the SNIP-721 reference implementation as non-base functionality that developers might choose to mirror.

Terms

  • Message - This is an on-chain interface. It is triggered by sending a transaction, and receiving an on-chain response which is read by the client. Messages are authenticated both by the blockchain, and by the secret enclave.
  • Query - This is an off-chain interface. Queries are done by returning data that a node has locally, and are not public. Query responses are returned immediately, and do not have to wait for blocks.
  • Cosmos Message Sender - The account that is found under the sender field in a standard Cosmos SDK message. This is also the signer of the message.

Memo

Users may want to include private memos with transactions. While it is possible to include a memo with the Cosmos message, that message is publicly viewable. Therefore, to enable private memos, SNIP-721 token contracts must allow an optional memo field in any message that generates a mint, burn, or transfer transaction.

Padding

Users may want to enforce constant length messages to avoid leaking data. To support this functionality, SNIP-721 token contracts must support the option to include a padding field in every message. This optional padding field may be sent with any of the messages in this spec. Contracts must ignore this field if sent.

Requests

Requests should be sent as base64 encoded JSON. Future versions of Secret Network may add support for other formats as well, but at this time we recommend usage of JSON only. For this reason the parameter descriptions specify the JSON type which must be used. In addition, request parameters will include in parentheses a CosmWasm (or other) underlying type that this value must conform to. E.g. a recipient address is sent as a string, but must also be parsed to a bech32 address.

Queries

Queries are off-chain requests that are not cryptographically validated. This means that contracts that wish to validate the caller of a query must implement some sort of authentication. SNIP-721 uses an "API key" scheme, which validates a (viewing key, account) pair.

Authentication must happen on each query that reveals private account-specific information. Authentication must be a resource intensive operation that takes a significant amount of time to compute. This is because such queries are open to offline brute-force attacks, which can be parallelized to scale linearly with the resources of a motivated attacker. Authentication must perform the same computation even if the user does not have a viewing key set. The authentication response must be indistinguishable for both the case of a wrong viewing key and the case of a non-existent viewing key.

One should be aware that the current blockheight and time is not available to a query on Secret Network at this moment, but there are plans to make the BlockInfo available to queries in a future hardfork. To get around this limitation, the SNIP-721 contract may choose to store the BlockInfo every time a message is executed, in order to use the blockheight and time of the last message execution when checking the expiration of an approval during a query. Therefore it is possible that a whitelisted address may be able to view the owner or metadata of a token past its approval expiration if no one executed any contract message since before the expiration.

Responses

Unless otherwise specified, all message & query responses will be JSON encoded in the data field of the Cosmos response, rather than in the logs. This is meant to reduce the potential for data-leakage through side-channel attacks. In addition, since all keys will be encrypted, it is not possible to use the log events for event triggering.

Success status

Some of the messages detailed in this document contain a status field. This field must hold one of two values: "success" or "failure".

While errors during execution of contract functions should usually result in a proper and detailed error response, The "failure" status is reserved for cases where a contract might choose to obfuscate the exact cause of failure, or otherwise indicate that while nothing failed to happen, the operation itself could not be completed for some valid reason.

Base

This handles ownership, transfers, approvals, and metadata. These messages and queries must be consistently supported by all SNIP-721 contracts; however, all metadata response fields are optional to allow for SNIP-721 contracts that choose not to implement metadata. Note that all tokens must have an owner as well as an ID. The ID is an arbitrary string, unique within the contract.

Messages

TransferNft

TransferNft is used to transfer ownership of the token to the recipient address. This requires a valid token_id and the message sender must either be the owner or an address with valid transfer approval. If the token is transferred to a new owner, its single-token approvals must be cleared.

Request
{
	"transfer_nft": {
		"recipient": "address_receiving_the_token",
		"token_id": "ID_of_the_token_being_transferred",
		"memo": "optional_memo_for_the_transfer_tx",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
recipient string (HumanAddr) Address receiving the token no
token_id string Identifier of the token to be transferred no
memo string memo for the transfer transaction that is only viewable by addresses involved in the transfer (recipient, sender, previous owner) yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"transfer_nft": {
		"status": "success"
	}
}

SendNft

SendNft is used to transfer ownership of the token to the contract address, and then call the recipient's BatchReceiveNft (or ReceiveNft, see below) if the recipient contract has registered its receiver interface with the NFT contract or if its ReceiverInfo is provided. While SendNft keeps the contract field name in order to maintain CW-721 compliance, Secret Network does not have the same limitations as Cosmos, and it is possible to use SendNft to transfer token ownership to a personal address (not a contract) or to a contract that does not implement any Receiver Interface.

SendNft requires a valid token_id and the message sender must either be the owner or an address with valid transfer approval. If the token is transferred to a new owner, its single-token approvals must be cleared. If the BatchReceiveNft (or ReceiveNft) callback fails, the entire transaction must be reverted (even the transfer must not take place).

Request
{
	"send_nft": {
		"contract": "address_receiving_the_token",
		"receiver_info": {
			"recipient_code_hash": "code_hash_of_the_recipient_contract",
			"also_implements_batch_receive_nft": true | false,
		},
		"token_id": "ID_of_the_token_being_transferred",
		"msg": "optional_base64_encoded_Binary_message_sent_with_the_BatchReceiveNft_callback",
		"memo": "optional_memo_for_the_transfer_tx",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
contract string (HumanAddr) Address receiving the token no
receiver_info ReceiverInfo (see below) Code hash and BatchReceiveNft implementation status of the recipient contract yes nothing
token_id string Identifier of the token to be transferred no
msg string (base64 encoded Binary) msg included when calling the recipient contract's BatchReceiveNft (or ReceiveNft) yes nothing
memo string memo for the tx that is only viewable by addresses involved (recipient, sender, previous owner) yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"send_nft": {
		"status": "success"
	}
}

ReceiverInfo

The optional ReceiverInfo object may be used to provide the code hash of the contract receiving tokens from either SendNft or BatchSendNft. It may also optionally indicate whether the recipient contract implements BatchReceiveNft in addition to ReceiveNft. If the also_implements_batch_receive_nft field is not provided, it defaults to false.

{
	"recipient_code_hash": "code_hash_of_the_recipient_contract",
	"also_implements_batch_receive_nft": true | false,
}
Name Type Description Optional Value If Omitted
recipient_code_hash string Code hash of the recipient contract no
also_implements_batch_receive_nft bool True if the recipient contract implements BatchReceiveNft in addition to ReceiveNft yes false

Approve

Approve is used to grant an address permission to transfer a single token. This can only be performed by the token's owner or, in compliance with CW-721, an address that has inventory-wide approval to transfer the owner's tokens. Approve is provided to maintain compliance with CW-721, but the owner can use SetWhitelistedApproval to accomplish the same thing if specifying a token_id and approve_token AccessLevel for transfer.

Request
{
	"approve": {
		"spender": "address_being_granted_approval_to_transfer_the_specified_token",
		"token_id": "ID_of_the_token_that_can_now_be_transferred_by_the_spender",
		"expires": "never" | {"at_height": 999999} | {"at_time":999999},
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
spender string (HumanAddr) Address being granted approval to transfer the token no
token_id string ID of the token that the spender can now transfer no
expires Expiration (see below) The expiration of this token transfer approval. Can be a blockheight, time, or never yes "never"
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"approve": {
		"status": "success"
	}
}

Expiration

The Expiration object is used to set an expiration for any approvals granted in the message. Expiration can be set to a specified blockheight, a time in seconds since epoch 01/01/1970, or "never". Values for blockheight and time are specified as a u64. If no expiration is given, it must default to "never".

Also, because the current blockheight and time will not be available to queries until a future hardfork makes that possible, please see above regarding an imprecise, and possibly delayed way to enforce expirations on queries in the meantime. This imprecise method must only be applied when checking an expiration during a query. When checking an expiration during a message, the blockheight and time are available and exact expiration must be enforced.

  • "never" - the approval will never expire
  • {"at_time": 1700000000} - the approval will expire 1700000000 seconds after 01/01/1970 (time value is u64)
  • {"at_height": 3000000} - the approval will expire at blockheight 3000000 (height value is u64)

Revoke

Revoke is used to revoke from an address the permission to transfer this single token. This can only be performed by the token's owner or, in compliance with CW-721, an address that has inventory-wide approval to transfer the owner's tokens (referred to as an operator later). However, one operator may not revoke transfer permission of even one single token away from another operator. Revoke is provided to maintain compliance with CW-721, but the owner can use SetWhitelistedApproval to accomplish the same thing if specifying a token_id and revoke_token AccessLevel for transfer.

Request
{
	"revoke": {
		"spender": "address_being_revoked_approval_to_transfer_the_specified_token",
		"token_id": "ID_of_the_token_that_can_no_longer_be_transferred_by_the_spender",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
spender string (HumanAddr) Address no longer permitted to transfer the token no
token_id string ID of the token that the spender can no longer transfer no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"revoke": {
		"status": "success"
	}
}

ApproveAll

ApproveAll is used to grant an address permission to transfer all the tokens in the message sender's inventory. This must include the ability to transfer any tokens the sender acquires after granting this inventory-wide approval. This also gives the address the ability to grant another address the approval to transfer a single token. ApproveAll is provided to maintain compliance with CW-721, but the message sender can use SetWhitelistedApproval to accomplish the same thing by using all AccessLevel for transfer.

Request
{
	"approve_all": {
		"operator": "address_being_granted_inventory-wide_approval_to_transfer_tokens",
		"expires": "never" | {"at_height": 999999} | {"at_time":999999},
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
operator string (HumanAddr) Address being granted approval to transfer all of the message sender's tokens no
expires Expiration (see above) The expiration of this inventory-wide transfer approval. Can be a blockheight, time, or never yes "never"
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"approve_all": {
		"status": "success"
	}
}

RevokeAll

RevokeAll is used to revoke all transfer approvals granted to an address. RevokeAll is provided to maintain compliance with CW-721, but the message sender can use SetWhitelistedApproval to accomplish the same thing by using none AccessLevel for transfer.

Request
{
	"revoke_all": {
		"operator": "address_being_revoked_all_approvals_to_transfer_tokens",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
operator string (HumanAddr) Address being revoked all approvals to transfer the message sender's tokens no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"revoke_all": {
		"status": "success"
	}
}

SetWhitelistedApproval

The owner of a token can use SetWhitelistedApproval to grant an address permission to view ownership, view private metadata, and/or to transfer a single token or every token in the owner's inventory. SetWhitelistedApproval can also be used to revoke any approval previously granted to the address.

Request
{
	"set_whitelisted_approval": {
		"address": "address_being_granted_or_revoked_approval",
		"token_id": "optional_ID_of_the_token_to_grant_or_revoke_approval_on",
		"view_owner": "approve_token" | "all" | "revoke_token" | "none",
		"view_private_metadata": "approve_token" | "all" | "revoke_token" | "none",
		"transfer": "approve_token" | "all" | "revoke_token" | "none",
		"expires": "never" | {"at_height": 999999} | {"at_time":999999},
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
address string (HumanAddr) Address to grant or revoke approval to/from no
token_id string If supplying either approve_token or revoke_token access, the token whose privacy is being set yes nothing
view_owner AccessLevel (see below) Grant or revoke the address' permission to view the ownership of a token/inventory yes nothing
view_private_metadata AccessLevel (see below) Grant or revoke the address' permission to view the private metadata of a token/inventory yes nothing
transfer AccessLevel (see below) Grant or revoke the address' permission to transfer a token/inventory yes nothing
expires Expiration (see above) The expiration of any approval granted in this message. Can be a blockheight, time, or never yes "never"
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"set_whitelisted_approval": {
		"status": "success"
	}
}

AccessLevel

AccessLevel determines the type of access being granted or revoked to the specified address in a SetWhitelistedApproval message or to everyone in a SetGlobalApproval message. Inventory-wide approval and token-specific approval are mutually exclusive levels of access. The levels are:

  • "approve_token" - grant approval only on the token specified in the message
  • "revoke_token" - revoke a previous approval on the specified token
  • "all" - grant approval for all tokens in the message signer's inventory. This approval must also apply to any tokens the signer acquires after granting all approval
  • "none" - revoke any approval (both token and inventory-wide) previously granted to the specified address (or for everyone if using SetGlobalApproval)

RegisterReceiveNft

A contract will use RegisterReceiveNft to notify the SNIP-721 contract that it implements ReceiveNft and possibly also BatchReceiveNft (see below). This enables the SNIP-721 contract to call the registered contract whenever it is Sent a token (or tokens). In order to comply with CW-721, ReceiveNft only informs the recipient contract that it has been sent a single token, and it only informs the recipient contract who the token's previous owner was, not who sent the token (which may be different addresses) despite calling the previous owner sender (see below). BatchReceiveNft, on the other hand, can be used to inform a contract that it was sent multiple tokens, and notifies the recipient of both, the token's previous owner and the sender.

Request
{
	"register_receive_nft": {
		"code_hash": "code_hash_of_the_contract_implementing_a_receiver_interface",
		"also_implements_batch_receive_nft": true | false,
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
code_hash string A 32-byte hex encoded string, with the code hash of the message sender, which is a contract that implements a receiver no
also_implements_batch_receive_nft bool true if the message sender contract also implements BatchReceiveNft so it can be informed that it was sent a list of tokens yes false
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"register_receive_nft": {
		"status": "success"
	}
}

CreateViewingKey

CreateViewingKey generates a new viewing key for the Cosmos message sender, which is used to authenticate account-specific queries, because queries in Cosmos have no way to cryptographically authenticate the querier's identity.

The Viewing Key must be implemented in such a way that validation takes a significant amount to time to perform, in order to be resistant to brute-force attacks. The viewing key must only be used to authenticate queries, as messages cryptographically authenticate the sender.

The entropy field of the request should be a client supplied string used for entropy for generation of the viewing key. Secure implementation is left to the contract developer, but it is recommended to use base-64 encoded random bytes and not predictable inputs.

Request
{
	"create_viewing_key": {
		"entropy": "string_used_as_part_of_the_entropy_supplied_to_the_rng",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
entropy string String used as part of the entropy supplied to the rng that generates the random viewing key no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"viewing_key": {
		"key": "the_created_viewing_key"
	}
}

SetViewingKey

SetViewingKey is used to set the viewing key to a predefined string. It must replace any key that currently exists. It would be best for users to call CreateViewingKey to ensure a strong key, but this function is provided so that contracts can also utilize viewing keys.

Request
{
	"set_viewing_key": {
		"key": "the_new_viewing_key",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
key string The new viewing key for the message sender no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"viewing_key": {
		"key": "the_message_sender's_viewing_key"
	}
}

Queries

ContractInfo

ContractInfo returns the contract's name and symbol. This query is not authenticated.

Request
{
	"contract_info": {}
}
Response
{
	"contract_info": {
		"name": "contract_name",
		"symbol": "contract_symbol"
	}
}

NumTokens

NumTokens returns the number of tokens controlled by the contract. If the contract's token supply is private, the SNIP-721 contract may choose to only allow an authenticated minter's address to perform this query.

Request
{
	"num_tokens": {
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		}
	}
}
Name Type Description Optional Value If Omitted
viewer ViewerInfo (see below) The address and viewing key performing this query yes nothing
Response
{
	"num_tokens": {
		"count": 99999
	}
}
Name Type Description Optional
count number (u32) Number of tokens controlled by this contract no

ViewerInfo

The ViewerInfo object provides the address and viewing key of the querier. It is optionally provided in queries where public responses and address-specific responses will differ.

{
	"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
	"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
}
Name Type Description Optional Value If Omitted
address string (HumanAddr) Address performing the query no
viewing_key string The querying address' viewing key no

OwnerOf

OwnerOf returns the owner of the specified token if the querier is the owner or has been granted permission to view the owner. If the querier is the owner, OwnerOf must also display all the addresses that have been given transfer permission. The transfer approval list is provided as part of CW-721 compliance; however, the token owner is advised to use NftDossier (see below) for a more complete list that includes view_owner and view_private_metadata approvals (which CW-721 is not capable of keeping private). If no viewer is provided, OwnerOf must only display the owner if ownership is public for this token.

Request
{
	"owner_of": {
		"token_id": "ID_of_the_token_being_queried",
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
include_expired bool True if expired transfer approvals should be included in the response yes false
Response
{
	"owner_of": {
		"owner": "address_of_the_token_owner",
		"approvals": [
			{
				"spender": "address_with_transfer_approval",
				"expires": "never" | {"at_height": 999999} | {"at_time":999999}
			},
			{
				"...": "..."
			}
		]
	}
}
Name Type Description Optional
owner string (HumanAddr) Address of the token's owner no
approvals array of Cw721Approval (see below) List of approvals to transfer this token no

Cw721Approval

The Cw721Approval object is used to display CW-721-style approvals which are limited to only permission to transfer, as CW-721 does not enable ownership or metadata privacy.

{
	"spender": "address_with_transfer_approval",
	"expires": "never" | {"at_height": 999999} | {"at_time":999999}
}
Name Type Description Optional
spender string (HumanAddr) Address whitelisted to transfer a token no
expires Expiration (see above) The expiration of this transfer approval. Can be a blockheight, time, or never no

NftInfo

NftInfo returns the public metadata of a token. All metadata fields are optional to allow for SNIP-721 contracts that choose not to implement metadata, but at most, one of the fields token_uri OR extension should be defined. Metadata follows CW-721 specification, which is based on ERC-721 Metadata JSON Schema.

Request
{
	"nft_info": {
		"token_id": "ID_of_the_token_being_queried"
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
Response
{
	"nft_info": {
		"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
		"extension": {
			"...": "..."
		}
}
Name Type Description Optional
token_uri string Uri pointing to off-chain JSON metadata yes
extension Extension (see below) Data structure defining on-chain metadata yes
At most, one of the fields token_uri OR extension should be defined.

Metadata

This is the metadata for a token that follows CW-721 metadata specification, which is based on ERC721 Metadata JSON Schema. At most, one of the fields token_uri OR extension should be defined.

{
	"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
	"extension": {
		"...": "..."
	}
}
Name Type Description Optional Value If Omitted
token_uri string Uri pointing to off-chain JSON metadata yes nothing
extension Extension (see below) Data structure defining on-chain metadata yes nothing
At most, one of the fields token_uri OR extension should be defined.

Extension

Extension can be any data structure representing token metadata that is stored on-chain. See here for the description of the Extension that the reference implementation uses.

AllNftInfo

AllNftInfo displays the result of both OwnerOf and NftInfo in a single query. This is provided for CW-721 compliance, but for more complete information about a token, use NftDossier, which will include private metadata and view_owner and view_private_metadata approvals if the querier is permitted to view this information.

Request
{
	"all_nft_info": {
		"token_id": "ID_of_the_token_being_queried",
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
include_expired bool True if expired transfer approvals should be included in the response yes false
Response
{
	"all_nft_info": {
		"access": {
			"owner": "address_of_the_token_owner",
			"approvals": [
				{
					"spender": "address_with_transfer_approval",
					"expires": "never" | {"at_height": 999999} | {"at_time":999999}
				},
				{
					"...": "..."
				}
			]
		},
		"info": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		}
	}
}
Name Type Description Optional
access Cw721OwnerOfResponse (see below) The token's owner and its transfer approvals if permitted to view this info no
info Metadata (see above) The token's public metadata yes

Cw721OwnerOfResponse

The Cw721OwnerOfResponse object is used to display a token's owner if the querier has view_owner permission, and the token's transfer approvals if the querier is the token's owner.

{
	"owner": "address_of_the_token_owner",
	"approvals": [
		{
			"spender": "address_with_transfer_approval",
			"expires": "never" | {"at_height": 999999} | {"at_time":999999}
		},
		{
			"...": "..."
		}
	]
}
Name Type Description Optional
owner string (HumanAddr) Address of the token's owner yes
approvals array of Cw721Approval (see above) List of approvals to transfer this token no

PrivateMetadata

PrivateMetadata returns the private metadata of a token if the querier is permitted to view it. All metadata fields are optional to allow for SNIP-721 contracts that choose not to implement private metadata, but at most, one of the fields token_uri OR extension should be defined. Metadata follows CW-721 metadata specification, which is based on ERC-721 Metadata JSON Schema. If no viewer is provided, PrivateMetadata must only display the private metadata if the private metadata is public for this token.

Request
{
	"private_metadata": {
		"token_id": "ID_of_the_token_being_queried",
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
Response
{
	"private_metadata": {
		"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
		"extension": {
			"...": "..."
		}
	}
}
Name Type Description Optional
token_uri string Uri pointing to off-chain JSON metadata yes
extension Extension (see above) Data structure defining on-chain metadata yes
At most, one of the fields token_uri OR extension should be defined.

NftDossier

NftDossier returns all the information about a token that the viewer is permitted to view. If no viewer is provided, NftDossier will only display the information that has been made public. The response may include the owner, the public metadata, the private metadata, the reason the private metadata is not viewable, the royalty information, the mint run information, whether ownership is public, whether the private metadata is public, and (if the querier is the owner,) the approvals for this token as well as the inventory-wide approvals for the owner. The implementation may choose to hide royalty recipient addresses. See here for a description of how the reference implementation determines who is permitted to view royalty recipient addresses.

Request
{
	"nft_dossier": {
		"token_id": "ID_of_the_token_being_queried",
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
include_expired bool True if expired approvals should be included in the response yes false
Response
{
	"nft_dossier": {
		"owner": "address_of_the_token_owner",
		"public_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"private_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"display_private_metadata_error": "optional_error_describing_why_private_metadata_is_not_viewable_if_applicable",
		"royalty_info": {
			"decimal_places_in_rates": 4,
			"royalties": [
				{
					"recipient": "optional_address_that_should_be_paid_this_royalty",
					"rate": 100,
				},
				{
					"...": "..."
				}
			],
		},
		"mint_run_info": {
			"collection_creator": "optional_address_that_instantiated_this_contract",
			"token_creator": "optional_address_that_minted_this_token",
			"time_of_minting": 999999,
			"mint_run": 3,
			"serial_number": 67,
			"quantity_minted_this_run": 1000,
		},
		"owner_is_public": true | false,
		"public_ownership_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"private_metadata_is_public": true | false,
		"private_metadata_is_public_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"token_approvals": [
			{
				"address": "whitelisted_address",
				"view_owner_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"view_private_metadata_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"transfer_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
			},
			{
				"...": "..."
			}
		],
		"inventory_approvals": [
			{
				"address": "whitelisted_address",
				"view_owner_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"view_private_metadata_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"transfer_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
			},
			{
				"...": "..."
			}
		]
	}
}
Name Type Description Optional
owner string (HumanAddr) Address of the token's owner yes
public_metadata Metadata (see above) The token's public metadata yes
private_metadata Metadata (see above) The token's private metadata yes
display_private_metadata_error string If the private metadata is not displayed, the corresponding error message yes
royalty_info RoyaltyInfo (see below) The token's RoyaltyInfo yes
mint_run_info MintRunInfo (see below) The token's MintRunInfo yes
owner_is_public bool True if ownership is public for this token no
public_ownership_expiration Expiration (see above) When public ownership expires for this token. Can be a blockheight, time, or never yes
private_metadata_is_public bool True if private metadata is public for this token no
private_metadata_is_public_expiration Expiration (see above) When public display of private metadata expires. Can be a blockheight, time, or never yes
token_approvals array of Snip721Approval (see below) List of approvals for this token yes
inventory_approvals array of Snip721Approval (see below) List of inventory-wide approvals for the token's owner yes

RoyaltyInfo

RoyaltyInfo is used to define royalties to be paid when a token is sold. Royalty recipient addresses are optional in query responses because an implementation may choose to restrict who can view royalty recipient addresses. See here for a description of how the reference implementation determines who is permitted to view royalty recipient addresses.

{
	"decimal_places_in_rates": 4,
	"royalties": [
		{
			"recipient": "address_that_should_be_paid_this_royalty_(optional_in_query_responses)",
			"rate": 100,
		},
		{
			"...": "..."
		}
	]
}
Name Type Description Optional
decimal_places_in_rates number (u8) The number of decimal places used for all rates in royalties (e.g. 2 decimals for whole percents) no
royalties array of Royalty (see below) List of royalties to be paid upon sale no

Royalty

Royalty defines a payment address and a royalty rate to be paid when an NFT is sold. Royalty recipient addresses are optional in query responses because an implementation may choose to restrict who can view royalty recipient addresses. See here for a description of how the reference implementation determines who is permitted to view royalty recipient addresses.

{
	"recipient": "address_that_should_be_paid_this_royalty_(optional_in_query_responses)",
	"rate": 100,
}
Name Type Description Optional in Messages Optional in Query Responses
recipient string (HumanAddr) The address that should be paid this royalty no yes
rate number (u16) The royalty rate to be paid using the number of decimals specified in the RoyaltyInfo containing this Royalty no no

MintRunInfo

MintRunInfo contains information aout the minting of this token.

{
	"collection_creator": "optional_address_that_instantiated_this_contract",
	"token_creator": "optional_address_that_minted_this_token",
	"time_of_minting": 999999,
	"mint_run": 3,
	"serial_number": 67,
	"quantity_minted_this_run": 1000,
}
Name Type Description Optional
collection_creator string (HumanAddr) The address that instantiated this contract yes
token_creator string (HumanAddr) The address that minted this token yes
time_of_minting number (u64) The number of seconds since 01/01/1970 that this token was minted yes
mint_run number (u32) The mint run this token was minted in. This represents batches of NFTs released at the same time yes
serial_number number (u32) The serial number of this token yes
quantity_minted_this_run number (u32) The number of tokens minted in this mint run. yes

A mint run is a group of NFTs released at the same time. So, for example, if a creator decided to make 100 copies, they would all be part of mint run number 1. If they sell well and the creator wants to rerelease that NFT, he could make 100 more copies that would all be part of mint run number 2. The combination of mint_run, serial_number, and quantity_minted_this_run is used to indicate, for example, that this token was number 67 of 1000 minted in mint run number 3.

Snip721Approval

The Snip721Approval object is used to display all the approvals (and their expirations) that have been granted to a whitelisted address. The expiration field must be null if the whitelisted address does not have that corresponding permission type.

{
	"address": "whitelisted_address",
	"view_owner_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
	"view_private_metadata_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
	"transfer_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
}
Name Type Description Optional
address string (HumanAddr) The whitelisted address no
view_owner_expiration Expiration (see above) The expiration for view_owner permission. Can be a blockheight, time, or never yes
view_private_metadata_expiration Expiration (see above) The expiration for view_private_metadata permission. Can be a blockheight, time, or never yes
transfer_expiration Expiration (see above) The expiration for transfer permission. Can be a blockheight, time, or never yes

TokenApprovals

TokenApprovals returns whether the owner and private metadata of a token is public, and lists all the approvals specific to this token. Only the token's owner may perform TokenApprovals.

Request
{
	"token_approvals": {
		"token_id": "ID_of_the_token_being_queried",
		"viewing_key": "the_token_owner's_viewing_key",
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried no
viewing_key string The token owner's viewing key no
include_expired bool True if expired approvals should be included in the response yes false
Response
{
	"token_approvals": {
		"owner_is_public": true | false,
		"public_ownership_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"private_metadata_is_public": true | false,
		"private_metadata_is_public_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"token_approvals": [
			{
				"address": "whitelisted_address",
				"view_owner_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"view_private_metadata_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"transfer_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
			},
			{
				"...": "..."
			}
		],
	}
}
Name Type Description Optional
owner_is_public bool True if ownership is public for this token no
public_ownership_expiration Expiration (see above) When public ownership expires for this token. Can be a blockheight, time, or never yes
private_metadata_is_public bool True if private metadata is public for this token no
private_metadata_is_public_expiration Expiration (see above) When public display of private metadata expires. Can be a blockheight, time, or never yes
token_approvals array of Snip721Approval (see above) List of approvals for this token no

ApprovedForAll

ApprovedForAll displays all the addresses that have approval to transfer all of the specified owner's tokens. This is provided to comply with CW-721 specification, but because approvals are private on Secret Network, if the owner's viewing key is not provided, no approvals should be displayed. For a more complete list of inventory-wide approvals, the owner should use InventoryApprovals which also includes view_owner and view_private_metadata approvals.

Request
{
	"approved_for_all": {
		"owner": "address_whose_approvals_are_being_queried",
		"viewing_key": "owner's_viewing_key"
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
owner string (HumanAddr) The address whose approvals are being queried no
viewing_key string The owner's viewing key yes nothing
include_expired bool True if expired approvals should be included in the response yes false
Response
{
	"approved_for_all": {
		"operators": [
				{
					"spender": "address_with_transfer_approval",
					"expires": "never" | {"at_height": 999999} | {"at_time":999999}
				},
				{
					"...": "..."
				}
		]
	}
}
Name Type Description Optional
operators array of Cw721Approval (see above) List of approvals to transfer all of the owner's tokens no

InventoryApprovals

InventoryApprovals returns whether all the address' tokens have public ownership and/or public display of private metadata, and lists all the inventory-wide approvals the address has granted. Only the viewing key for this specified address should be accepted.

Request
{
	"inventory_approvals": {
		"address": "address_whose_approvals_are_being_queried",
		"viewing_key": "the_viewing_key_associated_with_this_address",
		"include_expired": true | false
	}
}
Name Type Description Optional Value If Omitted
address string (HumanAddr) The address whose inventory-wide approvals are being queried no
viewing_key string The viewing key associated with this address no
include_expired bool True if expired approvals should be included in the response yes false
Response
{
	"inventory_approvals": {
		"owner_is_public": true | false,
		"public_ownership_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"private_metadata_is_public": true | false,
		"private_metadata_is_public_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
		"inventory_approvals": [
			{
				"address": "whitelisted_address",
				"view_owner_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"view_private_metadata_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
				"transfer_expiration": "never" | {"at_height": 999999} | {"at_time":999999},
			},
			{
				"...": "..."
			}
		],
	}
}
Name Type Description Optional
owner_is_public bool True if ownership is public for all of this address' tokens no
public_ownership_expiration Expiration (see above) When public ownership expires for all tokens. Can be a blockheight, time, or never yes
private_metadata_is_public bool True if private metadata is public for all of this address' tokens no
private_metadata_is_public_expiration Expiration (see above) When public display of private metadata expires. Can be a blockheight, time, or never yes
inventory_approvals array of Snip721Approval (see above) List of inventory-wide approvals for this address no

Tokens

Tokens displays an optionally paginated list of all the token IDs that belong to the specified owner. It must only display the owner's tokens on which the querier has view_owner permission. If no viewing key is provided, it must only display the owner's tokens that have public ownership. When paginating, supply the last token ID received in a response as the start_after string of the next query to continue listing where the previous query stopped.

Request
{
	"tokens": {
		"owner": "address_whose_inventory_is_being_queried",
		"viewer": "address_of_the_querier_if_different_from_owner",
		"viewing_key": "querier's_viewing_key"
		"start_after": "optionally_display_only_token_ids_that_come_after_this_one_in_the_list",
		"limit": 10
	}
}
Name Type Description Optional Value If Omitted
owner string (HumanAddr) The address whose inventory is being queried no
viewer string (HumanAddr) The querier's address if different from the owner yes nothing
viewing_key string The querier's viewing key yes nothing
start_after string Results will only list token IDs that come after this token ID in the list yes nothing
limit number (u32) Number of token IDs to return yes developer's discretion
Response
{
	"token_list": {
		"tokens": [
			"list", "of", "the", "owner's", "tokens", "..."
		]
	}
}
Name Type Description Optional
tokens array of string A list of token IDs owned by the specified owner no

TransactionHistory

TransactionHistory displays an optionally paginated list of transactions (mint, burn, and transfer) in reverse chronological order that involve the specified address.

Request
{
	"transaction_history": {
		"address": "address_whose_tx_history_is_being_queried",
		"viewing_key": "address'_viewing_key"
		"page": "optional_page_to_display",
		"page_size": 10
	}
}
Name Type Description Optional Value If Omitted
address string (HumanAddr) The address whose transaction history is being queried no
viewing_key string The address' viewing key no
page number (u32) The page number to display, where the first transaction shown skips the page * page_size most recent transactions yes 0
page_size number (u32) Number of transactions to return yes developer's discretion
Response
{
	"transaction_history": {
		"total": 99,
		"txs": [
			{
				"tx_id": 9999,
				"block_height": 999999,
				"block_time": 1610000012,
				"token_id": "token_involved_in_the_tx",
				"action": {
					"transfer": {
						"from": "previous_owner_of_the_token",
						"sender": "address_that_sent_the_token_if_different_than_the_previous_owner",
						"recipient": "new_owner_of_the_token"
					}
				},
				"memo": "optional_memo_for_the_tx"
			},
			{
				"tx_id": 9998,
				"block_height": 999998,
				"block_time": 1610000006,
				"token_id": "token_involved_in_the_tx",
				"action": {
					"mint": {
						"minter": "address_that_minted_the_token",
						"recipient": "owner_of_the_newly_minted_token"
					}
				},
				"memo": "optional_memo_for_the_tx"
			},
			{
				"tx_id": 9997,
				"block_height": 999997,
				"block_time": 1610000000,
				"token_id": "token_involved_in_the_tx",
				"action": {
					"burn": {
						"owner": "previous_owner_of_the_token",
						"burner": "address_that_burned_the_token_if_different_than_the_previous_owner",
					}
				},
				"memo": "optional_memo_for_the_tx"
			},
			{
				"...": "..."
			}
		],
	}
}
Name Type Description Optional
total number (u64) The total number of transactions that involve the specified address no
txs array of Tx (see below) List of transactions in reverse chronological order that involve the specified address no

Tx

The Tx object contains all the information pertaining to a mint, burn, or transfer transaction.

{
	"tx_id": 9999,
	"block_height": 999999,
	"block_time": 1610000000,
	"token_id": "token_involved_in_the_tx",
	"action": { TxAction::Transfer | TxAction::Mint | TxAction::Burn },
	"memo": "optional_memo_for_the_tx"
}
Name Type Description Optional
tx_id number (u64) The transaction identifier no
block_height number (u64) The number of the block that contains the transaction no
block_time number (u64) The time in seconds since 01/01/1970 of the block that contains the transaction no
token_id string The token involved in the transaction no
action TxAction (see below) The type of transaction and the information specific to that type no
memo string memo for the transaction that is only viewable by addresses involved in the transaction yes

TxAction

The TxAction object defines the type of transaction and holds the information specific to that type.

  • TxAction::Mint
{
	"minter": "address_that_minted_the_token",
	"recipient": "owner_of_the_newly_minted_token"
}

Name Type Description Optional
minter string (HumanAddr) The address that minted the token no
recipient string (HumanAddr) The address of the newly minted token's owner no
  • TxAction::Transfer
{
	"from": "previous_owner_of_the_token",
	"sender": "address_that_sent_the_token_if_different_than_the_previous_owner",
	"recipient": "new_owner_of_the_token"
}

Name Type Description Optional
from string (HumanAddr) The previous owner of the token no
sender string (HumanAddr) The address that sent the token if different than the previous owner yes
recipient string (HumanAddr) The new owner of the token no
  • TxAction::Burn
{
	"owner": "previous_owner_of_the_token",
	"burner": "address_that_burned_the_token_if_different_than_the_previous_owner",
}

Name Type Description Optional
owner string (HumanAddr) The previous owner of the token no
burner string (HumanAddr) The address that burned the token if different than the previous owner yes

Receiver Interface

When the SNIP-721 contract executes SendNft and BatchSendNft messages, it must perform a callback to the receiving contract's receiver interface if the contract had registered its code hash using RegisterReceiveNft. BatchReceiveNft is preferred over ReceiveNft, because ReceiveNft does not allow the recipient to know who sent the token, only its previous owner, and ReceiveNft can only process one token. So it is inefficient when sending multiple tokens to the same contract (a deck of game cards for instance). ReceiveNft primarily exists just to maintain CW-721 compliance.

Also, it should be noted that the CW-721 sender field is inaccurately named, because it is used to hold the address the token came from, not the address that sent it (which is not always the same). The name is reluctantly kept in ReceiveNft to maintain CW-721 compliance, but BatchReceiveNft uses sender to hold the sending address (which matches both its true role and its SNIP-20 Receive counterpart). Any contract that is implementing both Receiver Interfaces must be sure that the ReceiveNft sender field is actually processed like a BatchReceiveNft from field. Again, apologies for any confusion caused by propagating inaccuracies, but because InterNFT is planning on using CW-721 standards, compliance with CW-721 might be necessary.

ReceiveNft

ReceiveNft may be a HandleMsg variant of any contract that wants to implement a receiver interface. BatchReceiveNft, which is more informative and more efficient, is preferred over ReceiveNft.

{
	"receive_nft": {
		"sender": "address_of_the_previous_owner_of_the_token",
		"token_id": "ID_of_the_sent_token",
		"msg": "optional_base64_encoded_Binary_message_used_to_control_receiving_logic"
	}
}
Name Type Description Optional Value If Omitted
sender string (HumanAddr) Address of the token's previous owner (see above about this inaccurate naming convention) no
token_id string ID of the sent token no
msg string (base64 encoded Binary) Msg used to control receiving logic yes nothing

BatchReceiveNft

BatchReceiveNft may be a HandleMsg variant of any contract that wants to implement a receiver interface. BatchReceiveNft, which is more informative and more efficient, is preferred over ReceiveNft.

{
	"batch_receive_nft": {
		"sender": "address_that_sent_the_tokens",
		"from": "address_of_the_previous_owner_of_the_tokens",
		"token_ids": [
			"list", "of", "tokens", "sent", "..."
		],
		"msg": "optional_base64_encoded_Binary_message_used_to_control_receiving_logic"
	}
}
Name Type Description Optional Value If Omitted
sender string (HumanAddr) Address that sent the tokens (this field has no ReceiveNft equivalent, see above) no
from string (HumanAddr) Address of the tokens' previous owner (this field is equivalent to the ReceiveNft sender field, see above) no
token_ids array of string List of the tokens sent no
msg string (base64 encoded Binary) Msg used to control receiving logic yes nothing

Optional Functionality

These messages and queries are not mandatory for SNIP-721 compliance; however, they are considered useful enough to be included in the SNIP-721 reference implementation. As such, the SNIP-721 toolkit package includes functions to call these messages and queries, and SNIP-721 contract developers may wish to implement them.

Query Permits

SNIP-721 contracts may optionally implement query permits as specified in SNIP-24. They are an improvement over viewing keys in that permits allow a user to query private information without first needing to send a transaction to set or create a viewing key (see here for more details).

Because SNIP-721s already provide whitelisting functionality for approving other addresses to view private information, SNIP-721 permits typically use the owner permission type to authenticate the query to display all the private information that the address of the creator of the permit is authorized to see. So, it is generally advised that you never give SNIP-721 permits with owner permission to anyone. If you need someone to view private information of a token you own, you should whitelist their address, and they will then use a permit they create themselves to view only what you have approved. This eliminates the need to provide them a permit, eliminates the need to track permit names in order to later revoke viewing permission, and provides an easy way to query the network to see everyone that currently has viewing approval. That said, contract developers are not limited, and may choose, if appropriate for their use-case, to implement permits that have more granular permissions that users are meant to share with others.

Query

WithPermit

WithPermit wraps permit queries in the same manner as SNIP-24.

Request
{
	"with_permit": {
		"permit": {
			"params": {
				"permit_name": "some_name",
				"allowed_tokens": ["collection_address_1", "collection_address_2", "..."],
				"chain_id": "some_chain_id",
				"permissions": ["owner"]
			},
			"signature": {
				"pub_key": {
					"type": "tendermint/PubKeySecp256k1",
					"value": "33_bytes_of_secp256k1_pubkey_as_base64"
				},
				"signature": "64_bytes_of_secp256k1_signature_as_base64"
			}
		},
		"query": {
			"QueryWithPermit_variant_defined_below": { "...": "..." }
		}
	}
}
Name Type Description Optional Value If Omitted
permit Permit A permit following SNIP-24 standard no
query QueryWithPermit (see below) The query to perform and its input parameters no

QueryWithPermit

QueryWithPermit is an enum whose variants correlate with all SNIP-721 queries that require authentication. The input parameters are the same as the corresponding query other than the absence of ViewerInfo and viewing keys because the permit supplied with the WithPermit query provides both the address and authentication.

WithPermit query Parameter
"query": {
	"num_tokens": {}
}
WithPermit query Parameter
"query": {
	"owner_of": {
		"token_id": "ID_of_the_token_being_queried",
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"all_nft_info": {
		"token_id": "ID_of_the_token_being_queried",
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"private_metadata": {
		"token_id": "ID_of_the_token_being_queried",
	}
}
WithPermit query Parameter
"query": {
	"nft_dossier": {
		"token_id": "ID_of_the_token_being_queried",
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"token_approvals": {
		"token_id": "ID_of_the_token_being_queried",
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"approved_for_all": {
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"inventory_approvals": {
		"include_expired": true | false
	}
}
WithPermit query Parameter
"query": {
	"tokens": {
		"owner": "address_whose_inventory_is_being_queried",
		"start_after": "optionally_display_only_token_ids_that_come_after_this_one_in_the_list",
		"limit": 10
	}
}
WithPermit query Parameter
"query": {
	"transaction_history": {
		"page": "optional_page_to_display",
		"page_size": 10
	}
}
WithPermit query Parameter
"query": {
	"all_tokens": {
		"start_after": "optionally_display_only_token_ids_that_come_after_this_one_in_the_list",
		"limit": 10
	}
}
WithPermit query Parameter
"query": {
	"royalty_info": {
		"token_id": "optional_ID_of_the_token_being_queried",
	}
}
WithPermit query Parameter
"query": {
	"verify_transfer_approval": {
		"token_ids": [
			"list", "of", "tokens", "to", "check", "for", "transfer", "approval", "..."
		],
	}
}

Token Supply

Query

AllTokens

AllTokens returns an optionally paginated list of all the token IDs controlled by the contract. If the contract's token supply is private, the SNIP-721 contract may choose to only allow an authenticated minter's address to perform this query. When paginating, supply the last token ID received in a response as the start_after string of the next query to continue listing where the previous query stopped.

Request
{
	"all_tokens": {
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
		"start_after": "optionally_display_only_token_ids_that_come_after_this_one_in_the_list",
		"limit": 10
	}
}
Name Type Description Optional Value If Omitted
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
start_after string Results will only list token IDs that come after this token ID in the list yes nothing
limit number (u32) Number of token IDs to return yes developer's discretion
Response
{
	"token_list": {
		"tokens": [
			"list", "of", "token", "IDs", "controlled", "by", "the", "contract", "..."
		]
	}
}
Name Type Description Optional
tokens array of string A list of token IDs controlled by this contract no

Minting and Modifying Tokens

Messages

MintNft

MintNft mints a single token.

Request
{
	"mint_nft": {
		"token_id": "optional_ID_of_new_token",
		"owner": "optional_address_the_new_token_will_be_minted_to",
		"public_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"private_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"serial_number": {
			"mint_run": 3,
			"serial_number": 67,
			"quantity_minted_this_run": 1000,
		},
		"royalty_info": {
			"decimal_places_in_rates": 4,
			"royalties": [
				{
					"recipient": "address_that_should_be_paid_this_royalty",
					"rate": 100,
				},
				{
					"...": "..."
				}
			],
		},
		"memo": "optional_memo_for_the_mint_tx",
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string Identifier for the token to be minted yes minting order number
owner string (HumanAddr) Address of the owner of the minted token yes env.message.sender
public_metadata Metadata (see above) The metadata that is publicly viewable yes nothing
private_metadata Metadata (see above) The metadata that is viewable only by the token owner and addresses the owner has whitelisted yes nothing
serial_number SerialNumber (see below) The SerialNumber for this token yes nothing
royalty_info RoyaltyInfo (see above) RoyaltyInfo for this token yes default RoyaltyInfo
memo string memo for the mint tx that is only viewable by addresses involved in the mint (minter, owner) yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing

See here for an explanation of the default RoyaltyInfo.

Response
{
	"mint_nft": {
		"token_id": "ID_of_minted_token",
	}
}

The ID of the minted token should also be returned in a LogAttribute with the key minted.

SerialNumber

SerialNumber is used to serialize identical NFTs.

{
	"mint_run": 3,
	"serial_number": 67,
	"quantity_minted_this_run": 1000,
}
Name Type Description Optional Value If Omitted
mint_run number (u32) The mint run this token was minted in. This represents batches of NFTs released at the same time yes nothing
serial_number number (u32) The serial number of this token no
quantity_minted_this_run number (u32) The number of tokens minted in this mint run. yes nothing

A mint run is a group of NFTs released at the same time. So, for example, if a creator decided to make 100 copies, they would all be part of mint run number 1. If they sell well and the creator wants to rerelease that NFT, he could make 100 more copies that would all be part of mint run number 2. The combination of mint_run, serial_number, and quantity_minted_this_run is used to indicate, for example, that this token was number 67 of 1000 minted in mint run number 3.

MintNftClones

MintNftClones mints copies of an NFT, giving each one a MintRunInfo that indicates its serial number and the number of identical NFTs minted with it. If the optional mint_run_id is provided, the contract will also indicate which mint run these tokens were minted in, where the first use of the mint_run_id will be mint run number 1, the second time MintNftClones is called with that mint_run_id will be mint run number 2, etc... If no mint_run_id is provided, the MintRunInfo will not include a mint_run.

Request
{
	"mint_nft_clones": {
		"mint_run_id": "optional_ID_used_to_track_mint_run_numbers_over_multiple_calls",
		"quantity": 100,
		"owner": "optional_address_the_new_tokens_will_be_minted_to",
		"public_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"private_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"royalty_info": {
			"decimal_places_in_rates": 4,
			"royalties": [
				{
					"recipient": "address_that_should_be_paid_this_royalty",
					"rate": 100,
				},
				{
					"...": "..."
				}
			],
		},
		"memo": "optional_memo_for_the_mint_tx",
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
mint_run_id string Identifier used to track the number of mint runs these clones have had over multiple MintNftClones calls yes nothing
quantity number (u32) Number of clones to mint in this run no
owner string (HumanAddr) Address of the owner of the minted tokens yes env.message.sender
public_metadata Metadata (see above) The metadata that is publicly viewable yes nothing
private_metadata Metadata (see above) The metadata that is viewable only by the token owner and addresses the owner has whitelisted yes nothing
royalty_info RoyaltyInfo (see above) RoyaltyInfo for these tokens yes default RoyaltyInfo
memo string memo for the mint tx that is only viewable by addresses involved in the mint (minter, owner) yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing

See here for an explanation of the default RoyaltyInfo.

Response
{
	"mint_nft_clones": {
		"first_minted": "token_id_of_the_first_minted_token",
		"last_minted": "token_id_of_the_last_minted_token"
	}
}

The IDs of the minted tokens will also be returned in LogAttributes with the keys first_minted and last_minted. Because the token IDs are sequential in the reference implementation, the IDs of the other minted tokens are easily inferred.

AddMinters

AddMinters must add the provided addresses to the list of authorized minters. This should only be callable by an admin address.

Request
{
	"add_minters": {
		"minters": [
			"list", "of", "addresses", "to", "add", "to", "the", "list", "of", "minters", "..."
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
minters array of string (HumanAddr) The list of addresses to add to the list of authorized minters no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"add_minters": {
		"status": "success"
	}
}

RemoveMinters

RemoveMinters must remove the provided addresses from the list of authorized minters. This should only be callable by an admin address.

Request
{
	"remove_minters": {
		"minters": [
			"list", "of", "addresses", "to", "remove", "from", "the", "list", "of", "minters", "..."
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
minters array of string (HumanAddr) The list of addresses to remove from the list of authorized minters no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"remove_minters": {
		"status": "success"
	}
}

SetMinters

SetMinters must precisely define the list of authorized minters. This should only be callable by an admin address.

Request
{
	"set_minters": {
		"minters": [
			"list", "of", "addresses", "that", "have", "minting", "authority", "..."
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
minters array of string (HumanAddr) The list of addresses to are allowed to mint no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"set_minters": {
		"status": "success"
	}
}

SetMetadata

SetMetadata will set the public and/or private metadata to the corresponding input. The SNIP-721 contract may want to limit which addresses have the authority to alter the metadata. See here for a description of which addresses are given authority to alter metadata in the reference implementation

Request
{
	"set_metadata": {
		"token_id": "ID_of_token_whose_metadata_should_be_updated",
		"public_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"private_metadata": {
			"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
			"extension": {
				"...": "..."
			}
		},
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token whose metadata should be updated no
public_metadata Metadata (see above) The new public metadata for the token yes nothing
private_metadata Metadata (see above) The new private metadata for the token yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"set_metadata": {
		"status": "success"
	}
}

Query

Minters

Minters returns the list of addresses that are authorized to mint tokens. This query is not authenticated.

Request
{
	"minters": {}
}
Response
{
	"minters": {
		“minters”: [
			"list", "of", "authorized", "minters", "..."
		]
	}
}
Name Type Description Optional
minters array of string (HumanAddr) List of addresses with minting authority no

Royalties

Royalties may be used to send residual payments to specified addresses when tokens are sold.

Messages

SetRoyaltyInfo

A SNIP-721 contract may follow the example of the reference implementation and implement a default RoyaltyInfo for the contract. The contract's default RoyaltyInfo is the RoyaltyInfo that will be assigned to any token that is minted without explicitly defining its own RoyaltyInfo. It should be noted that the default RoyaltyInfo only applies to new tokens minted while the default is in effect, and will not alter the royalties for any existing tokens. This is because a token creator should not be able to sell a token with only 1% advertised royalty, and then change it to 100% once it is purchased.

If a token_id is supplied, SetRoyaltyInfo will update the specified token's RoyaltyInfo to the input. If no RoyaltyInfo is provided, it will delete the RoyaltyInfo and replace it with the contract's default RoyaltyInfo (if there is one). If no token_id is provided, SetRoyaltyInfo will update the contract's default RoyaltyInfo to the input, or delete it if no RoyaltyInfo is provided.
Only an authorized minter may update the contract's default RoyaltyInfo.
Only a token's creator may update its RoyaltyInfo, and only if they are also the current owner. Again, this is to avoid an unwelcome surprise that the royalties that were in place at the time of purchase have drastically increased by the time of re-sale.

Request
{
	"set_royalty_info": {
		"token_id": "optional_ID_of_token_whose_royalty_info_should_be_updated",
		"royalty_info": {
			"decimal_places_in_rates": 4,
			"royalties": [
				{
					"recipient": "address_that_should_be_paid_this_royalty",
					"rate": 100,
				},
				{
					"...": "..."
				}
			],
		},
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string Optional ID of the token whose RoyaltyInfo should be updated yes see above
royalty_info RoyaltyInfo (see above) The new RoyaltyInfo yes see above
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"set_royalty_info": {
		"status": "success"
	}
}

Query

RoyaltyInfo (query)

If a token_id is provided in the request, RoyaltyInfo returns the royalty information for that token. If no token_id is requested, RoyaltyInfo displays the default royalty information for the contract. The implementation may choose to hide royalty recipient addresses. See here for a description of how the reference implementation determines who is permitted to view royalty recipient addresses.

Request
{
	"royalty_info": {
		"token_id": "optional_ID_of_the_token_being_queried",
		"viewer": {
			"address": "address_of_the_querier_if_supplying_optional_ViewerInfo",
			"viewing_key": "viewer's_key_if_supplying_optional_ViewerInfo"
		},
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token being queried yes query contract's default RoyaltyInfo
viewer ViewerInfo (see above) The address and viewing key performing this query yes nothing
Response
{
	"royalty_info": {
		"decimal_places_in_rates": 4,
		"royalties": [
			{
				"recipient": "optional_address_that_should_be_paid_this_royalty",
				"rate": 100,
			},
			{
				"...": "..."
			}
		],
	}
}
Name Type Description Optional
royalty_info RoyaltyInfo (see above) The token or default RoyaltyInfo as per the request yes

Batch Processing

These messages are used to process multiple token transactions in a single Cosmos message. By avoiding the overhead of creating an additional Cosmos message for every token, an application can save 70k-80k gas per additional token processed. This may be particularly useful in gaming applications where entire decks of "cards" are being processed.

Messages

BatchMintNft

BatchMintNft mints a list of tokens.

Request
{
	"batch_mint_nft": {
		"mints": [
			{
				"token_id": "optional_ID_of_new_token",
				"owner": "optional_address_the_new_token_will_be_minted_to",
				"public_metadata": {
					"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
					"extension": {
						"...": "..."
					}
				},
				"private_metadata": {
					"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
					"extension": {
						"...": "..."
					}
				},
				"serial_number": {
					"mint_run": 3,
					"serial_number": 67,
					"quantity_minted_this_run": 1000,
				},
				"royalty_info": {
					"decimal_places_in_rates": 4,
					"royalties": [
						{
							"recipient": "address_that_should_be_paid_this_royalty",
							"rate": 100,
						},
						{
							"...": "..."
						}
					],
				},
				"memo": "optional_memo_for_the_mint_tx"
			},
			{
				"...": "..."
			}
		],
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
mints array of Mint (see below) A list of all the mint operations to perform no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"batch_mint_nft": {
		"token_ids": [
			"IDs", "of", "tokens", "that", "were", "minted", "..."
		]
	}
}

The IDs of the minted tokens should also be returned in a LogAttribute with the key minted.

Mint

The Mint object defines the data necessary to mint one token.

{
	"token_id": "optional_ID_of_new_token",
	"owner": "optional_address_the_new_token_will_be_minted_to",
	"public_metadata": {
		"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
		"extension": {
			"...": "..."
		}
	},
	"private_metadata": {
		"token_uri": "optional_uri_pointing_to_off-chain_JSON_metadata",
		"extension": {
			"...": "..."
		}
	},
	"serial_number": {
		"mint_run": 3,
		"serial_number": 67,
		"quantity_minted_this_run": 1000,
	},
	"royalty_info": {
		"decimal_places_in_rates": 4,
		"royalties": [
			{
				"recipient": "address_that_should_be_paid_this_royalty",
				"rate": 100,
			},
			{
				"...": "..."
			}
		],
	},
	"memo": "optional_memo_for_the_mint_tx"
}
Name Type Description Optional Value If Omitted
token_id string Identifier for the token to be minted yes minting order number
owner string (HumanAddr) Address of the owner of the minted token yes env.message.sender
public_metadata Metadata (see above) The metadata that is publicly viewable yes nothing
private_metadata Metadata (see above) The metadata that is viewable only by the token owner and addresses the owner has whitelisted yes nothing
serial_number SerialNumber (see above) The SerialNumber for this token yes nothing
royalty_info RoyaltyInfo (see above) RoyaltyInfo for this token yes default RoyaltyInfo
memo string memo for the mint tx that is only viewable by addresses involved in the mint (minter, owner) yes nothing

See here for an explanation of the default RoyaltyInfo.

BatchTransferNft

BatchTransferNft is used to perform multiple token transfers. The message sender may specify a list of tokens to transfer to one recipient address in each Transfer object, and any memo provided must be applied to every token transferred in that one Transfer object. The message sender may provide multiple Transfer objects to perform transfers to multiple addresses, providing a different memo for each address if desired. Each individual transfer of a token must show separately in transaction histories. The message sender must have permission to transfer all the tokens listed (either by being the owner or being granted transfer approval) and every listed token_id must be valid. Any token that is transferred to a new owner must have its single-token approvals cleared.

Request
{
	"batch_transfer_nft": {
		"transfers": [
			{
				"recipient": "address_receiving_the_tokens",
				"token_ids": [
					"list", "of", "token", "IDs", "to", "transfer"
				],
				"memo": "optional_memo_applied_to_the_transfer_tx_for_every_token_listed_in_this_Transfer_object"
			},
			{
				"...": "..."
			}
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
transfers array of Transfer (see below) List of Transfer objects to process no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"batch_transfer_nft": {
		"status": "success"
	}
}

Transfer

The Transfer object provides a list of tokens to transfer to one recipient address, as well as an optional memo that would be included with every logged token transfer.

{
	"recipient": "address_receiving_the_tokens",
	"token_ids": [
		"list", "of", "token", "IDs", "to", "transfer", "..."
	],
	"memo": "optional_memo_applied_to_the_transfer_tx_for_every_token_listed_in_this_Transfer_object"
}
Name Type Description Optional Value If Omitted
recipient string (HumanAddr) Address receiving the listed tokens no
token_ids array of string List of token IDs to transfer to the recipient no
memo string memo for the transfer transactions that is only viewable by addresses involved in the transfer (recipient, sender, previous owner) yes nothing

BatchSendNft

BatchSendNft is used to perform multiple token transfers, and then call the recipient contracts' BatchReceiveNft (or ReceiveNft) if they have registered their receiver interface with the NFT contract or if their ReceiverInfo is provided. The message sender may specify a list of tokens to send to one recipient address in each Send object, and any memo or msg provided must be applied to every token transferred in that one Send object. If the list of transferred tokens belonged to multiple previous owners, a separate BatchReceiveNft callback must be performed for each of the previous owners. If the contract only implements ReceiveNft, one ReceiveNft must be performed for every sent token. Therefore it is highly recommended to implement BatchReceiveNft if there is the possibility of being sent multiple tokens at one time. This will significantly reduce gas costs.

The message sender may provide multiple Send objects to perform sends to multiple addresses, providing a different memo and msg for each address if desired. Each individual transfer of a token must show separately in transaction histories. The message sender must have permission to transfer all the tokens listed (either by being the owner or being granted transfer approval) and every token ID must be valid. Any token that is transferred to a new owner must have its single-token approvals cleared. If any BatchReceiveNft (or ReceiveNft) callback fails, the entire transaction must be reverted (even the transfers must not take place).

Request
{
	"batch_send_nft": {
		"sends": [
			{
				"contract": "address_receiving_the_tokens",
				"receiver_info": {
					"recipient_code_hash": "code_hash_of_the_recipient_contract",
					"also_implements_batch_receive_nft": true | false,
				},
				"token_ids": [
					"list", "of", "token", "IDs", "to", "transfer", "..."
				],
				"msg": "optional_base64_encoded_Binary_message_sent_with_every_BatchReceiveNft_callback_made_for_this_one_Send_object",
				"memo": "optional_memo_applied_to_the_transfer_tx_for_every_token_listed_in_this_Send_object"
			},
			{
				"...": "..."
			}
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
sends array of Send (see below) List of Send objects to process no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"batch_send_nft": {
		"status": "success"
	}
}

Send

The Send object provides a list of tokens to transfer to one recipient address, optionally provides the ReceiverInfo of the recipient contract, as well as an optional memo that would be included with every logged token transfer, and an optional msg that would be included with every BatchReceiveNft or ReceiveNft callback made as a result of this Send object. While Send keeps the contract field name in order be consistent with CW-721 specification, Secret Network does not have the same limitations as Cosmos, and it is possible to use BatchSendNft to transfer token ownership to a personal address (not a contract) or to a contract that does not implement any Receiver Interface.

{
	"contract": "address_receiving_the_tokens",
	"receiver_info": {
		"recipient_code_hash": "code_hash_of_the_recipient_contract",
		"also_implements_batch_receive_nft": true | false,
	},
	"token_ids": [
		"list", "of", "token", "IDs", "to", "transfer", "..."
	],
	"msg": "optional_base64_encoded_Binary_message_sent_with_every_BatchReceiveNft_callback_made_for_this_one_Send_object",
	"memo": "optional_memo_applied_to_the_transfer_tx_for_every_token_listed_in_this_Send_object"
}
Name Type Description Optional Value If Omitted
contract string (HumanAddr) Address receiving the token no
receiver_info ReceiverInfo (see above) Code hash and BatchReceiveNft implementation status of the recipient contract yes nothing
token_ids array of string List of token IDs to send to the recipient no
msg string (base64 encoded Binary) msg included when calling the recipient contract's BatchReceiveNft (or ReceiveNft) yes nothing
memo string memo for the tx that is only viewable by addresses involved (recipient, sender, previous owner) yes nothing

Burning

These message standards are provided for contracts that may wish to allow burning tokens.

Messages

BurnNft

BurnNft is used to burn a single token, providing an optional memo to include in the burn's transaction history if desired. The message sender must have permission to burn the token. Implementation details regarding who is authorized to burn tokens is left to the contract developer. The reference implementation allows only the token owner and anyone else with valid transfer approval to burn this token.

Request
{
	"burn_nft": {
		"token_id": "ID_of_the_token_to_burn",
		"memo": "optional_memo_for_the_burn_tx",
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string Identifier of the token to burn no
memo string memo for the burn tx that is only viewable by addresses involved in the burn (message sender and previous owner if different) yes nothing
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"burn_nft": {
		"status": "success"
	}
}

BatchBurnNft

BatchBurnNft is used to burn multiple tokens. The message sender may specify a list of tokens to burn in each Burn object, and any memo provided must be applied to every token burned in that one Burn object. The message sender will usually list every token to be burned in one Burn object, but if a different memo is needed for different tokens being burned, multiple Burn objects may be listed. Each individual burning of a token must show separately in transaction histories. The message sender must have permission to burn all the tokens listed. Implementation details regarding who is authorized to burn tokens is left to the contract developer. The reference implementation allows only the token owner and anyone else with valid transfer approval to burn a token.

Request
{
	"batch_burn_nft": {
		"burns": [
			{
				"token_ids": [
					"list", "of", "token", "IDs", "to", "burn"
				],
				"memo": "optional_memo_applied_to_the_burn_tx_for_every_token_listed_in_this_Burn_object"
			},
			{
				"...": "..."
			}
		],
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
burns array of Burn (see below) List of Burn objects to process no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"batch_burn_nft": {
		"status": "success"
	}
}

Burn

The Burn object provides a list of tokens to burn, as well as an optional memo that would be included with every token burn transaction history.

{
	"token_ids": [
		"list", "of", "token", "IDs", "to", "burn", "..."
	],
	"memo": "optional_memo_applied_to_the_burn_tx_for_every_token_listed_in_this_Burn_object"
}
Name Type Description Optional Value If Omitted
token_ids array of string List of token IDs to burn no
memo string memo for the burn txs that is only viewable by addresses involved in the burn (message sender and previous owner if different) yes nothing

Making the Owner and/or Private Metadata Public

A SNIP-721 contract may wish to allow an owner to make a token's owner and/or its private metadata public. It may also choose to allow an address to make all their tokens' owner and/or private metadata public. The reference implementation does this using the same convention as SetWhitelistedApproval.

Message

SetGlobalApproval

The owner of a token can use SetGlobalApproval to make ownership and/or private metadata viewable by everyone. This can be set for a single token or for an owner's entire inventory of tokens by choosing the appropriate AccessLevel. SetGlobalApproval can also be used to revoke any global approval previously granted.

Request
{
	"set_global_approval": {
		"token_id": "optional_ID_of_the_token_to_grant_or_revoke_approval_on",
		"view_owner": "approve_token" | "all" | "revoke_token" | "none",
		"view_private_metadata": "approve_token" | "all" | "revoke_token" | "none",
		"expires": "never" | {"at_height": 999999} | {"at_time":999999},
 		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string If supplying either approve_token or revoke_token access, the token whose privacy is being set yes nothing
view_owner AccessLevel (see above) Grant or revoke everyone's permission to view the ownership of a token/inventory yes nothing
view_private_metadata AccessLevel (see above) Grant or revoke everyone's permission to view the private metadata of a token/inventory yes nothing
expires Expiration (see above) Expiration of any approval granted in this message. Can be a blockheight, time, or never yes "never"
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"set_global_approval": {
		"status": "success"
	}
}

Lootboxes and Wrapped Cards

The reference implementation provides a configuration setting that prevents anyone, even the owner, from viewing or altering the private metadata of a token until it is unwrapped by calling Reveal. This enables creating lootboxes or sealed "cards" that have already determined contents instead of randomly determining the contents when they are unwrapped. If a developer chooses to implement this Seal/Reveal functionality in their own SNIP-721 contract, they may also wish to follow the same message formats.

Message

Reveal

Reveal unwraps the sealed private metadata, irreversibly marking the token as unwrapped.

Request
{
	"reveal": {
		"token_id": "ID_of_the_token_to_unwrap",
		"padding": "optional_ignored_string_that_can_be_used_to_maintain_constant_message_length"
	}
}
Name Type Description Optional Value If Omitted
token_id string ID of the token to unwrap no
padding string An ignored string that can be used to maintain constant message length yes nothing
Response
{
	"reveal": {
		"status": "success"
	}
}

Query

IsUnwrapped

IsUnwrapped indicates whether the token has been unwrapped. This query is not authenticated.

Request
{
	"is_unwrapped": {
		"token_id": "ID_of_the_token_whose_unwrapped_status_is_being_queried"
	}
}
Name Type Description Optional Value If Omitted
token_id string The ID of the token whose unwrapped status is being queried no
Response
{
	"is_unwrapped": {
		"token_is_unwrapped": true | false
	}
}
Name Type Description Optional
token_is_unwrapped bool True if the token is unwrapped no

Verifying Transfer Approval

A SNIP-721 contract may wish to provide a query for contracts to use to verify that they can transfer all the tokens they plan to attempt, instead of allowing the (Batch)SendNft/(Batch)TransferNft/(Batch)BurnNft to throw an error if it fails due to lack of approval.

Query

VerifyTransferApproval

VerifyTransferApproval will verify that the specified address has approval to transfer the entire provided list of tokens. As explained above, queries may experience a delay in revealing expired approvals, so it is possible that a transfer attempt will still fail even after being verified by VerifyTransferApproval. If the address does not have transfer approval on all the tokens, the response will indicate the first token encountered that can not be transferred by the address.

Request
{
	"verify_transfer_approval": {
		"token_ids": [
			"list", "of", "tokens", "to", "check", "for", "transfer", "approval", "..."
		],
		"address": "address_to_use_for_approval_checking",
		"viewing_key": "address'_viewing_key"
	}
}
Name Type Description Optional Value If Omitted
token_ids array of string List of tokens to check for the address' transfer approval no
address string (HumanAddr) Address being checked for transfer approval no
viewing_key string The address' viewing key no
Response
{
	"verify_transfer_approval": {
		"approved_for_all": true | false,
		"first_unapproved_token": "token_id"
	}
}
Name Type Description Optional
approved_for_all bool True if the address has transfer approval on all the token_ids no
first_unapproved_token string The first token in the list that the address does not have approval to transfer yes