@agoric/zoe 0.26.3-dev-9f8a76e.0 → 0.26.3-dev-3679b4c.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/zoe",
|
|
3
|
-
"version": "0.26.3-dev-
|
|
3
|
+
"version": "0.26.3-dev-3679b4c.0+3679b4c",
|
|
4
4
|
"description": "Zoe: the Smart Contract Framework for Offer Enforcement",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/zoeService/zoe.js",
|
|
@@ -43,14 +43,15 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@agoric/assert": "0.6.1-dev-
|
|
47
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
48
|
-
"@agoric/internal": "0.3.3-dev-
|
|
49
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
50
|
-
"@agoric/store": "0.9.3-dev-
|
|
51
|
-
"@agoric/swingset-
|
|
52
|
-
"@agoric/
|
|
53
|
-
"@agoric/
|
|
46
|
+
"@agoric/assert": "0.6.1-dev-3679b4c.0+3679b4c",
|
|
47
|
+
"@agoric/ertp": "0.16.3-dev-3679b4c.0+3679b4c",
|
|
48
|
+
"@agoric/internal": "0.3.3-dev-3679b4c.0+3679b4c",
|
|
49
|
+
"@agoric/notifier": "0.6.3-dev-3679b4c.0+3679b4c",
|
|
50
|
+
"@agoric/store": "0.9.3-dev-3679b4c.0+3679b4c",
|
|
51
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-3679b4c.0+3679b4c",
|
|
52
|
+
"@agoric/swingset-vat": "0.32.3-dev-3679b4c.0+3679b4c",
|
|
53
|
+
"@agoric/time": "0.3.3-dev-3679b4c.0+3679b4c",
|
|
54
|
+
"@agoric/vat-data": "0.5.3-dev-3679b4c.0+3679b4c",
|
|
54
55
|
"@endo/bundle-source": "^2.5.2",
|
|
55
56
|
"@endo/captp": "^3.1.2",
|
|
56
57
|
"@endo/eventual-send": "^0.17.3",
|
|
@@ -128,5 +129,5 @@
|
|
|
128
129
|
"publishConfig": {
|
|
129
130
|
"access": "public"
|
|
130
131
|
},
|
|
131
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "3679b4c27eb270d3655a9d9b6d74f4eb810035e8"
|
|
132
133
|
}
|
|
@@ -27,7 +27,7 @@ export function makeInstanceAdminStorage(baggage: MapStore<string, unknown>): {
|
|
|
27
27
|
deleteInstanceAdmin(instance: any): any;
|
|
28
28
|
};
|
|
29
29
|
}>;
|
|
30
|
-
export function makeInstanceAdminMaker(zoeBaggage: MapStore<string, unknown>, seatHandleToZoeSeatAdmin: WeakMapStore<SeatHandle, ZoeSeatAdmin>): (instanceHandle: any, zoeInstanceStorageManager: any, adminNode: any) => import("@agoric/
|
|
30
|
+
export function makeInstanceAdminMaker(zoeBaggage: MapStore<string, unknown>, seatHandleToZoeSeatAdmin: WeakMapStore<SeatHandle, ZoeSeatAdmin>): (instanceHandle: any, zoeInstanceStorageManager: any, adminNode: any) => import("@agoric/swingset-liveslots").KindFacet<{
|
|
31
31
|
getPublicFacet: ({ state }: {
|
|
32
32
|
state: any;
|
|
33
33
|
}) => any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Callable } from '@agoric/internal/src/utils.js';
|
|
2
|
-
import { VatUpgradeResults } from '@agoric/swingset-vat';
|
|
3
|
-
import { Baggage } from '@agoric/
|
|
2
|
+
import type { VatUpgradeResults } from '@agoric/swingset-vat';
|
|
3
|
+
import type { Baggage } from '@agoric/swingset-liveslots';
|
|
4
4
|
|
|
5
5
|
import type { IssuerKeywordRecord, Payment } from './types.js';
|
|
6
6
|
|