@agoric/solo 0.10.4-dev-754698c.0.754698c → 0.10.4-dev-1d67c2a.0.1d67c2a
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/package.json +17 -17
- package/solo-config.json +3 -0
- package/src/vat-spawner.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/solo",
|
|
3
|
-
"version": "0.10.4-dev-
|
|
3
|
+
"version": "0.10.4-dev-1d67c2a.0.1d67c2a",
|
|
4
4
|
"description": "Agoric's Solo vat runner",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"author": "Agoric",
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@agoric/access-token": "0.4.22-dev-
|
|
26
|
-
"@agoric/cache": "0.3.3-dev-
|
|
27
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
28
|
-
"@agoric/cosmic-swingset": "0.41.4-dev-
|
|
29
|
-
"@agoric/internal": "0.3.3-dev-
|
|
30
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
31
|
-
"@agoric/spawner": "0.6.9-dev-
|
|
32
|
-
"@agoric/store": "0.9.3-dev-
|
|
33
|
-
"@agoric/swing-store": "0.9.2-dev-
|
|
34
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
35
|
-
"@agoric/telemetry": "0.6.3-dev-
|
|
36
|
-
"@agoric/time": "0.3.3-dev-
|
|
37
|
-
"@agoric/vats": "0.15.2-dev-
|
|
38
|
-
"@agoric/wallet": "0.18.4-dev-
|
|
25
|
+
"@agoric/access-token": "0.4.22-dev-1d67c2a.0.1d67c2a",
|
|
26
|
+
"@agoric/cache": "0.3.3-dev-1d67c2a.0.1d67c2a",
|
|
27
|
+
"@agoric/cosmic-proto": "0.4.1-dev-1d67c2a.0.1d67c2a",
|
|
28
|
+
"@agoric/cosmic-swingset": "0.41.4-dev-1d67c2a.0.1d67c2a",
|
|
29
|
+
"@agoric/internal": "0.3.3-dev-1d67c2a.0.1d67c2a",
|
|
30
|
+
"@agoric/notifier": "0.6.3-dev-1d67c2a.0.1d67c2a",
|
|
31
|
+
"@agoric/spawner": "0.6.9-dev-1d67c2a.0.1d67c2a",
|
|
32
|
+
"@agoric/store": "0.9.3-dev-1d67c2a.0.1d67c2a",
|
|
33
|
+
"@agoric/swing-store": "0.9.2-dev-1d67c2a.0.1d67c2a",
|
|
34
|
+
"@agoric/swingset-vat": "0.32.3-dev-1d67c2a.0.1d67c2a",
|
|
35
|
+
"@agoric/telemetry": "0.6.3-dev-1d67c2a.0.1d67c2a",
|
|
36
|
+
"@agoric/time": "0.3.3-dev-1d67c2a.0.1d67c2a",
|
|
37
|
+
"@agoric/vats": "0.15.2-dev-1d67c2a.0.1d67c2a",
|
|
38
|
+
"@agoric/wallet": "0.18.4-dev-1d67c2a.0.1d67c2a",
|
|
39
39
|
"@endo/base64": "^1.0.12",
|
|
40
40
|
"@endo/captp": "^4.4.8",
|
|
41
41
|
"@endo/errors": "^1.2.13",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"ws": "^7.2.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
59
|
+
"@agoric/ertp": "0.16.3-dev-1d67c2a.0.1d67c2a",
|
|
60
60
|
"@endo/bundle-source": "^4.1.2",
|
|
61
61
|
"ava": "^6.4.1",
|
|
62
62
|
"c8": "^10.1.3"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"typeCoverage": {
|
|
80
80
|
"atLeast": 74.43
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "1d67c2a384e8486c7638ab8e424f46e15f4b321d"
|
|
83
83
|
}
|
package/solo-config.json
CHANGED
package/src/vat-spawner.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
// Copyright (C) 2018 Agoric, under Apache License 2.0
|
|
2
|
+
import { E } from '@endo/eventual-send';
|
|
2
3
|
import { Far } from '@endo/marshal';
|
|
3
4
|
import { makeSpawner } from '@agoric/spawner';
|
|
4
5
|
|
|
5
6
|
function buildRootObject() {
|
|
6
7
|
return Far('root', {
|
|
7
8
|
buildSpawner(vatAdminSvc) {
|
|
8
|
-
|
|
9
|
+
const spawnBundleCapP = E(vatAdminSvc).getNamedBundleCap('spawn');
|
|
10
|
+
return makeSpawner(vatAdminSvc, spawnBundleCapP);
|
|
9
11
|
},
|
|
10
12
|
});
|
|
11
13
|
}
|