You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: contracts/cw-proposal-multiple/schema/config_response.json
+5
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,18 @@
4
4
"description": "The governance module's configuration.",
5
5
"type": "object",
6
6
"required": [
7
+
"allow_revoting",
7
8
"close_proposal_on_execution_failure",
8
9
"dao",
9
10
"max_voting_period",
10
11
"only_members_execute",
11
12
"voting_strategy"
12
13
],
13
14
"properties": {
15
+
"allow_revoting": {
16
+
"description": "Allows changing votes before the proposal expires. If this is enabled proposals will not be able to complete early as final vote information is not known until the time of proposal expiration.",
17
+
"type": "boolean"
18
+
},
14
19
"close_proposal_on_execution_failure": {
15
20
"description": "If set to true proposals will be closed if their execution fails. Otherwise, proposals will remain open after execution failure. For example, with this enabled a proposal to send 5 tokens out of a DAO's treasury with 4 tokens would be closed when it is executed. With this disabled, that same proposal would remain open until the DAO's treasury was large enough for it to be executed.",
Copy file name to clipboardexpand all lines: contracts/cw-proposal-multiple/schema/execute_msg.json
+5
Original file line number
Diff line number
Diff line change
@@ -129,13 +129,18 @@
129
129
"update_config": {
130
130
"type": "object",
131
131
"required": [
132
+
"allow_revoting",
132
133
"close_proposal_on_execution_failure",
133
134
"dao",
134
135
"max_voting_period",
135
136
"only_members_execute",
136
137
"voting_strategy"
137
138
],
138
139
"properties": {
140
+
"allow_revoting": {
141
+
"description": "Allows changing votes before the proposal expires. If this is enabled proposals will not be able to complete early as final vote information is not known until the time of proposal expiration.",
142
+
"type": "boolean"
143
+
},
139
144
"close_proposal_on_execution_failure": {
140
145
"description": "If set to true proposals will be closed if their execution fails. Otherwise, proposals will remain open after execution failure. For example, with this enabled a proposal to send 5 tokens out of a DAO's treasury with 4 tokens would be closed when it is executed. With this disabled, that same proposal would remain open until the DAO's treasury was large enough for it to be executed.",
Copy file name to clipboardexpand all lines: contracts/cw-proposal-multiple/schema/instantiate_msg.json
+5
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,17 @@
3
3
"title": "InstantiateMsg",
4
4
"type": "object",
5
5
"required": [
6
+
"allow_revoting",
6
7
"close_proposal_on_execution_failure",
7
8
"max_voting_period",
8
9
"only_members_execute",
9
10
"voting_strategy"
10
11
],
11
12
"properties": {
13
+
"allow_revoting": {
14
+
"description": "Allows changing votes before the proposal expires. If this is enabled proposals will not be able to complete early as final vote information is not known until the time of proposal expiration.",
15
+
"type": "boolean"
16
+
},
12
17
"close_proposal_on_execution_failure": {
13
18
"description": "If set to true proposals will be closed if their execution fails. Otherwise, proposals will remain open after execution failure. For example, with this enabled a proposal to send 5 tokens out of a DAO's treasury with 4 tokens would be closed when it is executed. With this disabled, that same proposal would remain open until the DAO's treasury was large enough for it to be executed.",
0 commit comments