@snapshot-labs/snapshot.js 0.11.10 → 0.11.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -1
- package/dist/schemas/index.d.ts +6 -1
- package/dist/snapshot.cjs.js +11 -1
- package/dist/snapshot.esm.js +11 -1
- package/dist/snapshot.min.js +1 -1
- package/package.json +1 -1
- package/src/schemas/space.json +6 -1
package/package.json
CHANGED
package/src/schemas/space.json
CHANGED
|
@@ -304,6 +304,10 @@
|
|
|
304
304
|
"type": "number",
|
|
305
305
|
"minimum": 0
|
|
306
306
|
},
|
|
307
|
+
"quorumType": {
|
|
308
|
+
"type": "string",
|
|
309
|
+
"enum": ["optimistic"]
|
|
310
|
+
},
|
|
307
311
|
"blind": {
|
|
308
312
|
"type": "boolean"
|
|
309
313
|
},
|
|
@@ -384,13 +388,14 @@
|
|
|
384
388
|
"boost": {
|
|
385
389
|
"type": "object",
|
|
386
390
|
"properties": {
|
|
387
|
-
"
|
|
391
|
+
"enabled": {
|
|
388
392
|
"type": "boolean"
|
|
389
393
|
},
|
|
390
394
|
"bribeEnabled": {
|
|
391
395
|
"type": "boolean"
|
|
392
396
|
}
|
|
393
397
|
},
|
|
398
|
+
"required": ["enabled", "bribeEnabled"],
|
|
394
399
|
"additionalProperties": false
|
|
395
400
|
}
|
|
396
401
|
},
|