{ "contract_name": "sg721-name", "contract_version": "1.2.3", "idl_version": "1.0.0", "instantiate": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "InstantiateMsg", "type": "object", "required": [ "collection_info", "minter", "name", "symbol" ], "properties": { "collection_info": { "$ref": "#/definitions/CollectionInfo_for_RoyaltyInfoResponse" }, "minter": { "type": "string" }, "name": { "type": "string" }, "symbol": { "type": "string" } }, "additionalProperties": false, "definitions": { "CollectionInfo_for_RoyaltyInfoResponse": { "type": "object", "required": [ "creator", "description", "image" ], "properties": { "creator": { "type": "string" }, "description": { "type": "string" }, "explicit_content": { "type": [ "boolean", "null" ] }, "external_link": { "type": [ "string", "null" ] }, "image": { "type": "string" }, "royalty_info": { "anyOf": [ { "$ref": "#/definitions/RoyaltyInfoResponse" }, { "type": "null" } ] }, "start_trading_time": { "anyOf": [ { "$ref": "#/definitions/Timestamp" }, { "type": "null" } ] } }, "additionalProperties": false }, "Decimal": { "description": "A fixed-point decimal value with 18 fractional digits, i.e. Decimal(1_000_000_000_000_000_000) == 1.0\n\nThe greatest possible value that can be represented is 340282366920938463463.374607431768211455 (which is (2^128 - 1) / 10^18)", "type": "string" }, "RoyaltyInfoResponse": { "type": "object", "required": [ "payment_address", "share" ], "properties": { "payment_address": { "type": "string" }, "share": { "$ref": "#/definitions/Decimal" } }, "additionalProperties": false }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "execute": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "ExecuteMsg", "oneOf": [ { "description": "Set name marketplace contract address", "type": "object", "required": [ "set_name_marketplace" ], "properties": { "set_name_marketplace": { "type": "object", "required": [ "address" ], "properties": { "address": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Set an address for name reverse lookup and updates token_uri Can be an EOA or a contract address.", "type": "object", "required": [ "associate_address" ], "properties": { "associate_address": { "type": "object", "required": [ "name" ], "properties": { "address": { "type": [ "string", "null" ] }, "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Update image NFT", "type": "object", "required": [ "update_image_nft" ], "properties": { "update_image_nft": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "nft": { "anyOf": [ { "$ref": "#/definitions/NFT" }, { "type": "null" } ] } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Add text record ex: twitter handle, discord name, etc", "type": "object", "required": [ "add_text_record" ], "properties": { "add_text_record": { "type": "object", "required": [ "name", "record" ], "properties": { "name": { "type": "string" }, "record": { "$ref": "#/definitions/TextRecord" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Remove text record ex: twitter handle, discord name, etc", "type": "object", "required": [ "remove_text_record" ], "properties": { "remove_text_record": { "type": "object", "required": [ "name", "record_name" ], "properties": { "name": { "type": "string" }, "record_name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Update text record ex: twitter handle, discord name, etc", "type": "object", "required": [ "update_text_record" ], "properties": { "update_text_record": { "type": "object", "required": [ "name", "record" ], "properties": { "name": { "type": "string" }, "record": { "$ref": "#/definitions/TextRecord" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Verify a text record as true or false (via oracle)", "type": "object", "required": [ "verify_text_record" ], "properties": { "verify_text_record": { "type": "object", "required": [ "name", "record_name", "result" ], "properties": { "name": { "type": "string" }, "record_name": { "type": "string" }, "result": { "type": "boolean" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Update the reset the verification oracle", "type": "object", "required": [ "update_verifier" ], "properties": { "update_verifier": { "type": "object", "properties": { "verifier": { "type": [ "string", "null" ] } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Transfer is a base message to move a token to another account without triggering actions", "type": "object", "required": [ "transfer_nft" ], "properties": { "transfer_nft": { "type": "object", "required": [ "recipient", "token_id" ], "properties": { "recipient": { "type": "string" }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Send is a base message to transfer a token to a contract and trigger an action on the receiving contract.", "type": "object", "required": [ "send_nft" ], "properties": { "send_nft": { "type": "object", "required": [ "contract", "msg", "token_id" ], "properties": { "contract": { "type": "string" }, "msg": { "$ref": "#/definitions/Binary" }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Allows operator to transfer / send the token from the owner's account. If expiration is set, then this allowance has a time/height limit", "type": "object", "required": [ "approve" ], "properties": { "approve": { "type": "object", "required": [ "spender", "token_id" ], "properties": { "expires": { "anyOf": [ { "$ref": "#/definitions/Expiration" }, { "type": "null" } ] }, "spender": { "type": "string" }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Remove previously granted Approval", "type": "object", "required": [ "revoke" ], "properties": { "revoke": { "type": "object", "required": [ "spender", "token_id" ], "properties": { "spender": { "type": "string" }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Allows operator to transfer / send any token from the owner's account. If expiration is set, then this allowance has a time/height limit", "type": "object", "required": [ "approve_all" ], "properties": { "approve_all": { "type": "object", "required": [ "operator" ], "properties": { "expires": { "anyOf": [ { "$ref": "#/definitions/Expiration" }, { "type": "null" } ] }, "operator": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Remove previously granted ApproveAll permission", "type": "object", "required": [ "revoke_all" ], "properties": { "revoke_all": { "type": "object", "required": [ "operator" ], "properties": { "operator": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Mint a new NFT, can only be called by the contract minter", "type": "object", "required": [ "mint" ], "properties": { "mint": { "$ref": "#/definitions/MintMsg_for_Metadata" } }, "additionalProperties": false }, { "description": "Burn an NFT the sender has access to", "type": "object", "required": [ "burn" ], "properties": { "burn": { "type": "object", "required": [ "token_id" ], "properties": { "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Update specific collection info fields", "type": "object", "required": [ "update_collection_info" ], "properties": { "update_collection_info": { "type": "object", "required": [ "collection_info" ], "properties": { "collection_info": { "$ref": "#/definitions/UpdateCollectionInfoMsg_for_RoyaltyInfoResponse" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Called by the minter to update trading start time", "type": "object", "required": [ "update_start_trading_time" ], "properties": { "update_start_trading_time": { "anyOf": [ { "$ref": "#/definitions/Timestamp" }, { "type": "null" } ] } }, "additionalProperties": false }, { "description": "Freeze collection info from further updates", "type": "object", "required": [ "freeze_collection_info" ], "properties": { "freeze_collection_info": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ], "definitions": { "Addr": { "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "Binary": { "description": "Binary is a wrapper around Vec to add base64 de/serialization with serde. It also adds some helper methods to help encode inline.\n\nThis is only needed as serde-json-{core,wasm} has a horrible encoding for Vec. See also .", "type": "string" }, "Decimal": { "description": "A fixed-point decimal value with 18 fractional digits, i.e. Decimal(1_000_000_000_000_000_000) == 1.0\n\nThe greatest possible value that can be represented is 340282366920938463463.374607431768211455 (which is (2^128 - 1) / 10^18)", "type": "string" }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Metadata": { "description": "Note that the address mapped to the name is stored in `token_uri`.", "type": "object", "required": [ "records" ], "properties": { "image_nft": { "anyOf": [ { "$ref": "#/definitions/NFT" }, { "type": "null" } ] }, "records": { "type": "array", "items": { "$ref": "#/definitions/TextRecord" } } }, "additionalProperties": false }, "MintMsg_for_Metadata": { "type": "object", "required": [ "extension", "owner", "token_id" ], "properties": { "extension": { "description": "Any custom extension used by this contract", "allOf": [ { "$ref": "#/definitions/Metadata" } ] }, "owner": { "description": "The owner of the newly minter NFT", "type": "string" }, "token_id": { "description": "Unique ID of the NFT", "type": "string" }, "token_uri": { "description": "Universal resource identifier for this NFT Should point to a JSON file that conforms to the ERC721 Metadata JSON Schema", "type": [ "string", "null" ] } }, "additionalProperties": false }, "NFT": { "type": "object", "required": [ "collection", "token_id" ], "properties": { "collection": { "$ref": "#/definitions/Addr" }, "token_id": { "type": "string" } }, "additionalProperties": false }, "RoyaltyInfoResponse": { "type": "object", "required": [ "payment_address", "share" ], "properties": { "payment_address": { "type": "string" }, "share": { "$ref": "#/definitions/Decimal" } }, "additionalProperties": false }, "TextRecord": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "verified": { "type": [ "boolean", "null" ] } }, "additionalProperties": false }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" }, "UpdateCollectionInfoMsg_for_RoyaltyInfoResponse": { "type": "object", "properties": { "description": { "type": [ "string", "null" ] }, "explicit_content": { "type": [ "boolean", "null" ] }, "external_link": { "type": [ "string", "null" ] }, "image": { "type": [ "string", "null" ] }, "royalty_info": { "anyOf": [ { "anyOf": [ { "$ref": "#/definitions/RoyaltyInfoResponse" }, { "type": "null" } ] }, { "type": "null" } ] } }, "additionalProperties": false } } }, "query": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "QueryMsg", "oneOf": [ { "description": "Returns sudo params", "type": "object", "required": [ "params" ], "properties": { "params": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "description": "Reverse lookup of name for address", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "object", "required": [ "address" ], "properties": { "address": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns the marketplace contract address", "type": "object", "required": [ "name_marketplace" ], "properties": { "name_marketplace": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns the associated address for a name", "type": "object", "required": [ "associated_address" ], "properties": { "associated_address": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns the image NFT for a name", "type": "object", "required": [ "image_n_f_t" ], "properties": { "image_n_f_t": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns the text records for a name", "type": "object", "required": [ "text_records" ], "properties": { "text_records": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns if Twitter is verified for a name", "type": "object", "required": [ "is_twitter_verified" ], "properties": { "is_twitter_verified": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "description": "Returns the verification oracle address", "type": "object", "required": [ "verifier" ], "properties": { "verifier": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "description": "Everything below is inherited from sg721", "type": "object", "required": [ "owner_of" ], "properties": { "owner_of": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "approval" ], "properties": { "approval": { "type": "object", "required": [ "spender", "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "spender": { "type": "string" }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "approvals" ], "properties": { "approvals": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "all_operators" ], "properties": { "all_operators": { "type": "object", "required": [ "owner" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "limit": { "type": [ "integer", "null" ], "format": "uint32", "minimum": 0.0 }, "owner": { "type": "string" }, "start_after": { "type": [ "string", "null" ] } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "num_tokens" ], "properties": { "num_tokens": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "contract_info" ], "properties": { "contract_info": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "nft_info" ], "properties": { "nft_info": { "type": "object", "required": [ "token_id" ], "properties": { "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "all_nft_info" ], "properties": { "all_nft_info": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "tokens" ], "properties": { "tokens": { "type": "object", "required": [ "owner" ], "properties": { "limit": { "type": [ "integer", "null" ], "format": "uint32", "minimum": 0.0 }, "owner": { "type": "string" }, "start_after": { "type": [ "string", "null" ] } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "all_tokens" ], "properties": { "all_tokens": { "type": "object", "properties": { "limit": { "type": [ "integer", "null" ], "format": "uint32", "minimum": 0.0 }, "start_after": { "type": [ "string", "null" ] } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "minter" ], "properties": { "minter": { "type": "object", "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "collection_info" ], "properties": { "collection_info": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "migrate": null, "sudo": null, "responses": { "all_nft_info": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "AllNftInfoResponse_for_Metadata", "type": "object", "required": [ "access", "info" ], "properties": { "access": { "description": "Who can transfer the token", "allOf": [ { "$ref": "#/definitions/OwnerOfResponse" } ] }, "info": { "description": "Data on the token itself,", "allOf": [ { "$ref": "#/definitions/NftInfoResponse_for_Metadata" } ] } }, "additionalProperties": false, "definitions": { "Addr": { "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "Approval": { "type": "object", "required": [ "expires", "spender" ], "properties": { "expires": { "description": "When the Approval expires (maybe Expiration::never)", "allOf": [ { "$ref": "#/definitions/Expiration" } ] }, "spender": { "description": "Account that can transfer/send the token", "type": "string" } }, "additionalProperties": false }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Metadata": { "description": "Note that the address mapped to the name is stored in `token_uri`.", "type": "object", "required": [ "records" ], "properties": { "image_nft": { "anyOf": [ { "$ref": "#/definitions/NFT" }, { "type": "null" } ] }, "records": { "type": "array", "items": { "$ref": "#/definitions/TextRecord" } } }, "additionalProperties": false }, "NFT": { "type": "object", "required": [ "collection", "token_id" ], "properties": { "collection": { "$ref": "#/definitions/Addr" }, "token_id": { "type": "string" } }, "additionalProperties": false }, "NftInfoResponse_for_Metadata": { "type": "object", "required": [ "extension" ], "properties": { "extension": { "description": "You can add any custom metadata here when you extend cw721-base", "allOf": [ { "$ref": "#/definitions/Metadata" } ] }, "token_uri": { "description": "Universal resource identifier for this NFT Should point to a JSON file that conforms to the ERC721 Metadata JSON Schema", "type": [ "string", "null" ] } }, "additionalProperties": false }, "OwnerOfResponse": { "type": "object", "required": [ "approvals", "owner" ], "properties": { "approvals": { "description": "If set this address is approved to transfer/send the token as well", "type": "array", "items": { "$ref": "#/definitions/Approval" } }, "owner": { "description": "Owner of the token", "type": "string" } }, "additionalProperties": false }, "TextRecord": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "verified": { "type": [ "boolean", "null" ] } }, "additionalProperties": false }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "all_operators": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "OperatorsResponse", "type": "object", "required": [ "operators" ], "properties": { "operators": { "type": "array", "items": { "$ref": "#/definitions/Approval" } } }, "additionalProperties": false, "definitions": { "Approval": { "type": "object", "required": [ "expires", "spender" ], "properties": { "expires": { "description": "When the Approval expires (maybe Expiration::never)", "allOf": [ { "$ref": "#/definitions/Expiration" } ] }, "spender": { "description": "Account that can transfer/send the token", "type": "string" } }, "additionalProperties": false }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "all_tokens": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "TokensResponse", "type": "object", "required": [ "tokens" ], "properties": { "tokens": { "description": "Contains all token_ids in lexicographical ordering If there are more than `limit`, use `start_from` in future queries to achieve pagination.", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "approval": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "ApprovalResponse", "type": "object", "required": [ "approval" ], "properties": { "approval": { "$ref": "#/definitions/Approval" } }, "additionalProperties": false, "definitions": { "Approval": { "type": "object", "required": [ "expires", "spender" ], "properties": { "expires": { "description": "When the Approval expires (maybe Expiration::never)", "allOf": [ { "$ref": "#/definitions/Expiration" } ] }, "spender": { "description": "Account that can transfer/send the token", "type": "string" } }, "additionalProperties": false }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "approvals": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "ApprovalsResponse", "type": "object", "required": [ "approvals" ], "properties": { "approvals": { "type": "array", "items": { "$ref": "#/definitions/Approval" } } }, "additionalProperties": false, "definitions": { "Approval": { "type": "object", "required": [ "expires", "spender" ], "properties": { "expires": { "description": "When the Approval expires (maybe Expiration::never)", "allOf": [ { "$ref": "#/definitions/Expiration" } ] }, "spender": { "description": "Account that can transfer/send the token", "type": "string" } }, "additionalProperties": false }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "associated_address": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Addr", "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "collection_info": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CollectionInfoResponse", "type": "object", "required": [ "creator", "description", "image" ], "properties": { "creator": { "type": "string" }, "description": { "type": "string" }, "explicit_content": { "type": [ "boolean", "null" ] }, "external_link": { "type": [ "string", "null" ] }, "image": { "type": "string" }, "royalty_info": { "anyOf": [ { "$ref": "#/definitions/RoyaltyInfoResponse" }, { "type": "null" } ] }, "start_trading_time": { "anyOf": [ { "$ref": "#/definitions/Timestamp" }, { "type": "null" } ] } }, "additionalProperties": false, "definitions": { "Decimal": { "description": "A fixed-point decimal value with 18 fractional digits, i.e. Decimal(1_000_000_000_000_000_000) == 1.0\n\nThe greatest possible value that can be represented is 340282366920938463463.374607431768211455 (which is (2^128 - 1) / 10^18)", "type": "string" }, "RoyaltyInfoResponse": { "type": "object", "required": [ "payment_address", "share" ], "properties": { "payment_address": { "type": "string" }, "share": { "$ref": "#/definitions/Decimal" } }, "additionalProperties": false }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "contract_info": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "ContractInfoResponse", "type": "object", "required": [ "name", "symbol" ], "properties": { "name": { "type": "string" }, "symbol": { "type": "string" } }, "additionalProperties": false }, "image_n_f_t": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Nullable_NFT", "anyOf": [ { "$ref": "#/definitions/NFT" }, { "type": "null" } ], "definitions": { "Addr": { "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "NFT": { "type": "object", "required": [ "collection", "token_id" ], "properties": { "collection": { "$ref": "#/definitions/Addr" }, "token_id": { "type": "string" } }, "additionalProperties": false } } }, "is_twitter_verified": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Boolean", "type": "boolean" }, "minter": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "MinterResponse", "description": "Shows who can mint these tokens", "type": "object", "required": [ "minter" ], "properties": { "minter": { "type": "string" } }, "additionalProperties": false }, "name": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "String", "type": "string" }, "name_marketplace": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Addr", "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "nft_info": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "NftInfoResponse_for_Metadata", "type": "object", "required": [ "extension" ], "properties": { "extension": { "description": "You can add any custom metadata here when you extend cw721-base", "allOf": [ { "$ref": "#/definitions/Metadata" } ] }, "token_uri": { "description": "Universal resource identifier for this NFT Should point to a JSON file that conforms to the ERC721 Metadata JSON Schema", "type": [ "string", "null" ] } }, "additionalProperties": false, "definitions": { "Addr": { "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", "type": "string" }, "Metadata": { "description": "Note that the address mapped to the name is stored in `token_uri`.", "type": "object", "required": [ "records" ], "properties": { "image_nft": { "anyOf": [ { "$ref": "#/definitions/NFT" }, { "type": "null" } ] }, "records": { "type": "array", "items": { "$ref": "#/definitions/TextRecord" } } }, "additionalProperties": false }, "NFT": { "type": "object", "required": [ "collection", "token_id" ], "properties": { "collection": { "$ref": "#/definitions/Addr" }, "token_id": { "type": "string" } }, "additionalProperties": false }, "TextRecord": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "verified": { "type": [ "boolean", "null" ] } }, "additionalProperties": false } } }, "num_tokens": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "NumTokensResponse", "type": "object", "required": [ "count" ], "properties": { "count": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, "owner_of": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "OwnerOfResponse", "type": "object", "required": [ "approvals", "owner" ], "properties": { "approvals": { "description": "If set this address is approved to transfer/send the token as well", "type": "array", "items": { "$ref": "#/definitions/Approval" } }, "owner": { "description": "Owner of the token", "type": "string" } }, "additionalProperties": false, "definitions": { "Approval": { "type": "object", "required": [ "expires", "spender" ], "properties": { "expires": { "description": "When the Approval expires (maybe Expiration::never)", "allOf": [ { "$ref": "#/definitions/Expiration" } ] }, "spender": { "description": "Account that can transfer/send the token", "type": "string" } }, "additionalProperties": false }, "Expiration": { "description": "Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future)", "oneOf": [ { "description": "AtHeight will expire when `env.block.height` >= height", "type": "object", "required": [ "at_height" ], "properties": { "at_height": { "type": "integer", "format": "uint64", "minimum": 0.0 } }, "additionalProperties": false }, { "description": "AtTime will expire when `env.block.time` >= time", "type": "object", "required": [ "at_time" ], "properties": { "at_time": { "$ref": "#/definitions/Timestamp" } }, "additionalProperties": false }, { "description": "Never will never expire. Used to express the empty variant", "type": "object", "required": [ "never" ], "properties": { "never": { "type": "object", "additionalProperties": false } }, "additionalProperties": false } ] }, "Timestamp": { "description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```", "allOf": [ { "$ref": "#/definitions/Uint64" } ] }, "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" } } }, "params": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "SudoParams", "type": "object", "required": [ "max_record_count" ], "properties": { "max_record_count": { "type": "integer", "format": "uint32", "minimum": 0.0 } }, "additionalProperties": false }, "text_records": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Array_of_TextRecord", "type": "array", "items": { "$ref": "#/definitions/TextRecord" }, "definitions": { "TextRecord": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "verified": { "type": [ "boolean", "null" ] } }, "additionalProperties": false } } }, "tokens": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "TokensResponse", "type": "object", "required": [ "tokens" ], "properties": { "tokens": { "description": "Contains all token_ids in lexicographical ordering If there are more than `limit`, use `start_from` in future queries to achieve pagination.", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "verifier": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Nullable_String", "type": [ "string", "null" ] } } }