Skip to content

Commit 52cc8e8

Browse files
committed
regenerated contract schema
1 parent 69806e2 commit 52cc8e8

File tree

68 files changed

+393
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+393
-209
lines changed

contracts/coconut-dkg/schema/nym-coconut-dkg.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,9 +1357,7 @@
13571357
},
13581358
"dealing_submission_status": {
13591359
"type": "object",
1360-
"additionalProperties": {
1361-
"$ref": "#/definitions/DealingStatus"
1362-
}
1360+
"additionalProperties": false
13631361
},
13641362
"epoch_id": {
13651363
"type": "integer",
@@ -1397,9 +1395,7 @@
13971395
"properties": {
13981396
"chunk_submission_status": {
13991397
"type": "object",
1400-
"additionalProperties": {
1401-
"$ref": "#/definitions/ChunkSubmissionStatus"
1402-
}
1398+
"additionalProperties": false
14031399
},
14041400
"fully_submitted": {
14051401
"type": "boolean"
@@ -1744,9 +1740,7 @@
17441740
"properties": {
17451741
"chunk_submission_status": {
17461742
"type": "object",
1747-
"additionalProperties": {
1748-
"$ref": "#/definitions/ChunkSubmissionStatus"
1749-
}
1743+
"additionalProperties": false
17501744
},
17511745
"fully_submitted": {
17521746
"type": "boolean"
@@ -1841,9 +1835,7 @@
18411835
},
18421836
"submitted_chunks": {
18431837
"type": "object",
1844-
"additionalProperties": {
1845-
"$ref": "#/definitions/SubmittedChunk"
1846-
}
1838+
"additionalProperties": false
18471839
}
18481840
},
18491841
"additionalProperties": false

contracts/coconut-dkg/schema/raw/response_to_get_dealer_dealings_status.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
},
1818
"dealing_submission_status": {
1919
"type": "object",
20-
"additionalProperties": {
21-
"$ref": "#/definitions/DealingStatus"
22-
}
20+
"additionalProperties": false
2321
},
2422
"epoch_id": {
2523
"type": "integer",
@@ -57,9 +55,7 @@
5755
"properties": {
5856
"chunk_submission_status": {
5957
"type": "object",
60-
"additionalProperties": {
61-
"$ref": "#/definitions/ChunkSubmissionStatus"
62-
}
58+
"additionalProperties": false
6359
},
6460
"fully_submitted": {
6561
"type": "boolean"

contracts/coconut-dkg/schema/raw/response_to_get_dealing_status.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@
5656
"properties": {
5757
"chunk_submission_status": {
5858
"type": "object",
59-
"additionalProperties": {
60-
"$ref": "#/definitions/ChunkSubmissionStatus"
61-
}
59+
"additionalProperties": false
6260
},
6361
"fully_submitted": {
6462
"type": "boolean"

contracts/coconut-dkg/schema/raw/response_to_get_dealings_metadata.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@
8080
},
8181
"submitted_chunks": {
8282
"type": "object",
83-
"additionalProperties": {
84-
"$ref": "#/definitions/SubmittedChunk"
85-
}
83+
"additionalProperties": false
8684
}
8785
},
8886
"additionalProperties": false

contracts/ecash/schema/nym-ecash.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"denom": {
4242
"type": "string"
4343
}
44-
}
44+
},
45+
"additionalProperties": false
4546
},
4647
"Uint128": {
4748
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",
@@ -230,7 +231,8 @@
230231
"denom": {
231232
"type": "string"
232233
}
233-
}
234+
},
235+
"additionalProperties": false
234236
},
235237
"Uint128": {
236238
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",
@@ -658,6 +660,7 @@
658660
"type": "string"
659661
}
660662
},
663+
"additionalProperties": false,
661664
"definitions": {
662665
"Uint128": {
663666
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",

contracts/ecash/schema/raw/execute.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@
179179
"denom": {
180180
"type": "string"
181181
}
182-
}
182+
},
183+
"additionalProperties": false
183184
},
184185
"Uint128": {
185186
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",

contracts/ecash/schema/raw/instantiate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"denom": {
3838
"type": "string"
3939
}
40-
}
40+
},
41+
"additionalProperties": false
4142
},
4243
"Uint128": {
4344
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",

contracts/ecash/schema/raw/response_to_get_required_deposit_amount.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"type": "string"
1515
}
1616
},
17+
"additionalProperties": false,
1718
"definitions": {
1819
"Uint128": {
1920
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 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 `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",

0 commit comments

Comments
 (0)