@snapshot-labs/snapshot.js 0.11.9 → 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 +17 -0
- package/dist/schemas/index.d.ts +17 -0
- package/dist/snapshot.cjs.js +22 -0
- package/dist/snapshot.esm.js +22 -0
- package/dist/snapshot.min.js +1 -1
- package/package.json +1 -1
- package/src/schemas/space.json +17 -0
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
|
},
|
|
@@ -380,6 +384,19 @@
|
|
|
380
384
|
"items": {
|
|
381
385
|
"type": "string"
|
|
382
386
|
}
|
|
387
|
+
},
|
|
388
|
+
"boost": {
|
|
389
|
+
"type": "object",
|
|
390
|
+
"properties": {
|
|
391
|
+
"enabled": {
|
|
392
|
+
"type": "boolean"
|
|
393
|
+
},
|
|
394
|
+
"bribeEnabled": {
|
|
395
|
+
"type": "boolean"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"required": ["enabled", "bribeEnabled"],
|
|
399
|
+
"additionalProperties": false
|
|
383
400
|
}
|
|
384
401
|
},
|
|
385
402
|
"required": ["name", "network", "symbol", "strategies"],
|