@agoric/deploy-script-support 0.10.4-dev-c833874.0 → 0.10.4-dev-745f2a8.0
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/README.md +7 -3
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -70,9 +70,10 @@ or an object whose keys identify child properties and whose corresponding values
|
|
|
70
70
|
are theirselves (recursive) permits. See `BootstrapManifiest` in
|
|
71
71
|
[lib-boot.js](../vats/src/core/lib-boot.js).
|
|
72
72
|
|
|
73
|
-
The object returned from a "getManifestCall" invocation may also
|
|
74
|
-
"installations" to register in `agoricNames
|
|
75
|
-
|
|
73
|
+
The manifest object returned from a "getManifestCall" invocation may also
|
|
74
|
+
include "installations" to register in `agoricNames` and/or "options" to be
|
|
75
|
+
provided as the "options" property of the second argument for each call of the
|
|
76
|
+
manifest's functions:
|
|
76
77
|
```js
|
|
77
78
|
/** @type {import('@agoric/vats/src/core/lib-boot').BootstrapManifest} */
|
|
78
79
|
const gameManifest = harden({
|
|
@@ -87,9 +88,12 @@ const gameManifest = harden({
|
|
|
87
88
|
export const getManifestForGame1 = ({ restoreRef }, { game1Ref }) => {
|
|
88
89
|
return harden({
|
|
89
90
|
manifest: gameManifest,
|
|
91
|
+
// a reference to the game1 bundle will be published in agoricNames as "game1"
|
|
90
92
|
installations: {
|
|
91
93
|
game1: restoreRef(game1Ref),
|
|
92
94
|
},
|
|
95
|
+
// the second argument of `startGameContract` will be `{ options: ["foo"] }`
|
|
96
|
+
options: ["foo"],
|
|
93
97
|
});
|
|
94
98
|
};
|
|
95
99
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/deploy-script-support",
|
|
3
|
-
"version": "0.10.4-dev-
|
|
3
|
+
"version": "0.10.4-dev-745f2a8.0+745f2a8",
|
|
4
4
|
"description": "Helpers and other support for writing deploy scripts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/helpers.js",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
38
|
-
"@agoric/import-manager": "0.3.12-dev-
|
|
39
|
-
"@agoric/internal": "0.3.3-dev-
|
|
40
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
41
|
-
"@agoric/store": "0.9.3-dev-
|
|
42
|
-
"@agoric/time": "0.3.3-dev-
|
|
43
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
37
|
+
"@agoric/ertp": "0.16.3-dev-745f2a8.0+745f2a8",
|
|
38
|
+
"@agoric/import-manager": "0.3.12-dev-745f2a8.0+745f2a8",
|
|
39
|
+
"@agoric/internal": "0.3.3-dev-745f2a8.0+745f2a8",
|
|
40
|
+
"@agoric/notifier": "0.6.3-dev-745f2a8.0+745f2a8",
|
|
41
|
+
"@agoric/store": "0.9.3-dev-745f2a8.0+745f2a8",
|
|
42
|
+
"@agoric/time": "0.3.3-dev-745f2a8.0+745f2a8",
|
|
43
|
+
"@agoric/zoe": "0.26.3-dev-745f2a8.0+745f2a8",
|
|
44
44
|
"@endo/base64": "^1.0.9",
|
|
45
45
|
"@endo/bundle-source": "^3.5.0",
|
|
46
46
|
"@endo/errors": "^1.2.8",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@endo/zip": "^1.0.9"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@agoric/vats": "0.15.2-dev-
|
|
54
|
+
"@agoric/vats": "0.15.2-dev-745f2a8.0+745f2a8",
|
|
55
55
|
"@endo/init": "^1.1.7",
|
|
56
56
|
"ava": "^5.3.0",
|
|
57
57
|
"import-meta-resolve": "^2.2.1"
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"typeCoverage": {
|
|
75
75
|
"atLeast": 83.71
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "745f2a82cc94e246f98dd1bd69cb679b608a7170"
|
|
78
78
|
}
|