@agoric/internal 0.3.3-dev-727699e.0 → 0.3.3-dev-baa7c08.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/internal",
3
- "version": "0.3.3-dev-727699e.0+727699e",
3
+ "version": "0.3.3-dev-baa7c08.0+baa7c08",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint:types": "tsc"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/base-zone": "0.1.1-dev-727699e.0+727699e",
23
+ "@agoric/base-zone": "0.1.1-dev-baa7c08.0+baa7c08",
24
24
  "@endo/common": "^1.2.9",
25
25
  "@endo/errors": "^1.2.9",
26
26
  "@endo/far": "^1.1.10",
@@ -34,7 +34,7 @@
34
34
  "jessie.js": "^0.3.4"
35
35
  },
36
36
  "devDependencies": {
37
- "@agoric/cosmic-proto": "0.4.1-dev-727699e.0+727699e",
37
+ "@agoric/cosmic-proto": "0.4.1-dev-baa7c08.0+baa7c08",
38
38
  "@endo/exo": "^1.5.8",
39
39
  "@endo/init": "^1.1.8",
40
40
  "@fast-check/ava": "^2.0.1",
@@ -59,7 +59,7 @@
59
59
  "access": "public"
60
60
  },
61
61
  "typeCoverage": {
62
- "atLeast": 93.04
62
+ "atLeast": 92.65
63
63
  },
64
- "gitHead": "727699e98ab06db2fc47fcc4dce7bbe3354b64c7"
64
+ "gitHead": "baa7c08ac81c53b4cf10a2bd76fe86baa7878c8a"
65
65
  }
package/src/config.d.ts CHANGED
@@ -14,10 +14,8 @@ export namespace BridgeId {
14
14
  let WALLET: "wallet";
15
15
  }
16
16
  export namespace CosmosInitKeyToBridgeId {
17
- import vbankPort = BANK;
18
- export { vbankPort };
19
- import vibcPort = DIBC;
20
- export { vibcPort };
17
+ let vbankPort: "bank";
18
+ let vibcPort: "dibc";
21
19
  }
22
20
  export namespace WalletName {
23
21
  let depositFacet: "depositFacet";
package/src/config.js CHANGED
@@ -31,10 +31,12 @@ export const BridgeId = /** @type {const} */ ({
31
31
  });
32
32
  harden(BridgeId);
33
33
 
34
+ /** @satisfies {Record<string, BridgeId>} */
34
35
  export const CosmosInitKeyToBridgeId = {
35
- vbankPort: BridgeId.BANK,
36
- vibcPort: BridgeId.DIBC,
36
+ vbankPort: 'bank',
37
+ vibcPort: 'dibc',
37
38
  };
39
+ harden(CosmosInitKeyToBridgeId);
38
40
 
39
41
  export const WalletName = /** @type {const} */ ({
40
42
  depositFacet: 'depositFacet',