Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
larry0x committed Sep 19, 2022
1 parent 75b98b9 commit 0ae2b73
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions contracts/nft/schema/instantiate_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,25 @@
"title": "InstantiateMsg",
"type": "object",
"required": [
"api_url",
"collection_info",
"minter",
"name",
"symbol"
"hub"
],
"properties": {
"collection_info": {
"$ref": "#/definitions/CollectionInfo_for_RoyaltyInfoResponse"
},
"minter": {
"api_url": {
"description": "URL of an API that serves the Badges metadata. The full URL will be `${api_url}?id=${id}&serial=${serial}`",
"type": "string"
},
"name": {
"type": "string"
"collection_info": {
"description": "SG-721 collection info",
"allOf": [
{
"$ref": "#/definitions/CollectionInfo_for_RoyaltyInfoResponse"
}
]
},
"symbol": {
"hub": {
"description": "Address of the Badges Hub contract",
"type": "string"
}
},
Expand Down

0 comments on commit 0ae2b73

Please sign in to comment.