@agoric/vats 0.15.2-dev-e87ca23.0.e87ca23 → 0.15.2-dev-a06b4b8.0.a06b4b8

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/vats",
3
- "version": "0.15.2-dev-e87ca23.0.e87ca23",
3
+ "version": "0.15.2-dev-a06b4b8.0.a06b4b8",
4
4
  "description": "Agoric's Vat library",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -22,19 +22,19 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/cosmic-proto": "0.4.1-dev-e87ca23.0.e87ca23",
26
- "@agoric/ertp": "0.16.3-dev-e87ca23.0.e87ca23",
27
- "@agoric/governance": "0.10.4-dev-e87ca23.0.e87ca23",
28
- "@agoric/internal": "0.3.3-dev-e87ca23.0.e87ca23",
29
- "@agoric/network": "0.1.1-dev-e87ca23.0.e87ca23",
30
- "@agoric/notifier": "0.6.3-dev-e87ca23.0.e87ca23",
31
- "@agoric/store": "0.9.3-dev-e87ca23.0.e87ca23",
32
- "@agoric/swingset-vat": "0.32.3-dev-e87ca23.0.e87ca23",
33
- "@agoric/time": "0.3.3-dev-e87ca23.0.e87ca23",
34
- "@agoric/vat-data": "0.5.3-dev-e87ca23.0.e87ca23",
35
- "@agoric/vow": "0.1.1-dev-e87ca23.0.e87ca23",
36
- "@agoric/zoe": "0.26.3-dev-e87ca23.0.e87ca23",
37
- "@agoric/zone": "0.2.3-dev-e87ca23.0.e87ca23",
25
+ "@agoric/cosmic-proto": "0.4.1-dev-a06b4b8.0.a06b4b8",
26
+ "@agoric/ertp": "0.16.3-dev-a06b4b8.0.a06b4b8",
27
+ "@agoric/governance": "0.10.4-dev-a06b4b8.0.a06b4b8",
28
+ "@agoric/internal": "0.3.3-dev-a06b4b8.0.a06b4b8",
29
+ "@agoric/network": "0.1.1-dev-a06b4b8.0.a06b4b8",
30
+ "@agoric/notifier": "0.6.3-dev-a06b4b8.0.a06b4b8",
31
+ "@agoric/store": "0.9.3-dev-a06b4b8.0.a06b4b8",
32
+ "@agoric/swingset-vat": "0.32.3-dev-a06b4b8.0.a06b4b8",
33
+ "@agoric/time": "0.3.3-dev-a06b4b8.0.a06b4b8",
34
+ "@agoric/vat-data": "0.5.3-dev-a06b4b8.0.a06b4b8",
35
+ "@agoric/vow": "0.1.1-dev-a06b4b8.0.a06b4b8",
36
+ "@agoric/zoe": "0.26.3-dev-a06b4b8.0.a06b4b8",
37
+ "@agoric/zone": "0.2.3-dev-a06b4b8.0.a06b4b8",
38
38
  "@endo/errors": "^1.2.13",
39
39
  "@endo/far": "^1.1.14",
40
40
  "@endo/import-bundle": "^1.5.2",
@@ -47,7 +47,7 @@
47
47
  "jessie.js": "^0.3.4"
48
48
  },
49
49
  "devDependencies": {
50
- "@agoric/swingset-liveslots": "0.10.3-dev-e87ca23.0.e87ca23",
50
+ "@agoric/swingset-liveslots": "0.10.3-dev-a06b4b8.0.a06b4b8",
51
51
  "@endo/bundle-source": "^4.1.2",
52
52
  "@endo/init": "^1.1.12",
53
53
  "ava": "^5.3.0",
@@ -79,5 +79,5 @@
79
79
  "typeCoverage": {
80
80
  "atLeast": 90.22
81
81
  },
82
- "gitHead": "e87ca231a5d69ff2c5de914250079e9c0dc80bac"
82
+ "gitHead": "a06b4b8c33322b656fc99ae95610c55639a15375"
83
83
  }
@@ -1,5 +1,11 @@
1
- export namespace PowerFlags {
2
- let SMART_WALLET: "SMART_WALLET";
3
- let REMOTE_WALLET: "REMOTE_WALLET";
4
- }
1
+ /**
2
+ * non-exhaustive list of powerFlags REMOTE_WALLET is currently a default.
3
+ *
4
+ * See also MsgProvision in golang/cosmos/proto/agoric/swingset/msgs.proto
5
+ */
6
+ export const PowerFlags: import("@agoric/internal").KeyMirrorResult<{
7
+ SMART_WALLET: null;
8
+ /** The ag-solo wallet is remote. */
9
+ REMOTE_WALLET: null;
10
+ }>;
5
11
  //# sourceMappingURL=walletFlags.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"walletFlags.d.ts","sourceRoot":"","sources":["walletFlags.js"],"names":[],"mappings":""}
1
+ {"version":3,"file":"walletFlags.d.ts","sourceRoot":"","sources":["walletFlags.js"],"names":[],"mappings":"AAGA;;;;GAIG;AACH;;IAEE,oCAAoC;;GAEnC"}
@@ -1,11 +1,13 @@
1
1
  // XXX domain of @agoric/cosmic-proto
2
+ import { keyMirror } from '@agoric/internal';
3
+
2
4
  /**
3
5
  * non-exhaustive list of powerFlags REMOTE_WALLET is currently a default.
4
6
  *
5
7
  * See also MsgProvision in golang/cosmos/proto/agoric/swingset/msgs.proto
6
8
  */
7
- export const PowerFlags = /** @type {const} */ ({
8
- SMART_WALLET: 'SMART_WALLET',
9
+ export const PowerFlags = keyMirror({
10
+ SMART_WALLET: null,
9
11
  /** The ag-solo wallet is remote. */
10
- REMOTE_WALLET: 'REMOTE_WALLET',
12
+ REMOTE_WALLET: null,
11
13
  });