We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5eb42d commit a7b2a19Copy full SHA for a7b2a19
packages/cw721/schema/cw721_execute_msg.json
@@ -167,6 +167,27 @@
167
}
168
},
169
"additionalProperties": false
170
+ },
171
+ {
172
+ "description": "Burn an NFT the sender has access to",
173
+ "type": "object",
174
+ "required": [
175
+ "burn"
176
+ ],
177
+ "properties": {
178
+ "burn": {
179
180
181
+ "token_id"
182
183
184
+ "token_id": {
185
+ "type": "string"
186
+ }
187
188
189
190
+ "additionalProperties": false
191
192
],
193
"definitions": {
packages/cw721/src/msg.rs
@@ -33,4 +33,6 @@ pub enum Cw721ExecuteMsg {
33
34
/// Remove previously granted ApproveAll permission
35
RevokeAll { operator: String },
36
+ /// Burn an NFT the sender has access to
37
+ Burn { token_id: String },
38
0 commit comments