Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverHappened committed Sep 3, 2024
1 parent b5010db commit 188ff67
Showing 1 changed file with 0 additions and 79 deletions.
79 changes: 0 additions & 79 deletions contracts/reflect/schema/execute_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -1286,25 +1286,6 @@
}
]
},
"MsgExecuteContract": {
"description": "MsgExecuteContract defines a call to the contract execution",
"type": "object",
"required": [
"contract",
"msg"
],
"properties": {
"contract": {
"description": "*contract** is a contract address that will be called",
"type": "string"
},
"msg": {
"description": "*msg** is a contract call message",
"type": "string"
}
},
"additionalProperties": false
},
"MultiHopRoute": {
"type": "object",
"required": [
Expand Down Expand Up @@ -1861,66 +1842,6 @@
},
"additionalProperties": false
},
{
"description": "AddSchedule adds new schedule with a given `name`. Until schedule is removed it will execute all `msgs` every `period` blocks. First execution is at least on `current_block + period` block. [Permissioned - DAO Only]",
"type": "object",
"required": [
"add_schedule"
],
"properties": {
"add_schedule": {
"type": "object",
"required": [
"msgs",
"name",
"period"
],
"properties": {
"msgs": {
"description": "list of cosmwasm messages to be executed",
"type": "array",
"items": {
"$ref": "#/definitions/MsgExecuteContract"
}
},
"name": {
"description": "Name of a new schedule. Needed to be able to `RemoveSchedule` and to log information about it",
"type": "string"
},
"period": {
"description": "period in blocks with which `msgs` will be executed",
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"description": "RemoveSchedule removes the schedule with a given `name`. [Permissioned - DAO or Security DAO only]",
"type": "object",
"required": [
"remove_schedule"
],
"properties": {
"remove_schedule": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"description": "Contractmanager message Resubmits failed acknowledgement. Acknowledgement failure is created when contract returns error or acknowledgement is out of gas. [Permissioned - only from contract that is initial caller of IBC transaction]",
"type": "object",
Expand Down

0 comments on commit 188ff67

Please sign in to comment.