25 lines
651 B
JSON
25 lines
651 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "InstantiateMsg",
|
|
"type": "object",
|
|
"required": [
|
|
"minter",
|
|
"name",
|
|
"symbol"
|
|
],
|
|
"properties": {
|
|
"minter": {
|
|
"description": "The minter is the only one who can create new NFTs. This is designed for a base NFT that is controlled by an external program or contract. You will likely replace this with custom logic in custom NFTs",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Name of the NFT contract",
|
|
"type": "string"
|
|
},
|
|
"symbol": {
|
|
"description": "Symbol of the NFT contract",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|