@agoric/cosmic-swingset 0.41.4-dev-f8d1b07.0 → 0.41.4-dev-e393fda.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/cosmic-swingset",
3
- "version": "0.41.4-dev-f8d1b07.0+f8d1b07",
3
+ "version": "0.41.4-dev-e393fda.0+e393fda",
4
4
  "description": "Agoric's Cosmos blockchain integration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,15 +22,15 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/builders": "0.1.1-dev-f8d1b07.0+f8d1b07",
26
- "@agoric/cosmos": "0.34.2-dev-f8d1b07.0+f8d1b07",
27
- "@agoric/deploy-script-support": "0.10.4-dev-f8d1b07.0+f8d1b07",
28
- "@agoric/internal": "0.3.3-dev-f8d1b07.0+f8d1b07",
29
- "@agoric/store": "0.9.3-dev-f8d1b07.0+f8d1b07",
30
- "@agoric/swing-store": "0.9.2-dev-f8d1b07.0+f8d1b07",
31
- "@agoric/swingset-vat": "0.32.3-dev-f8d1b07.0+f8d1b07",
32
- "@agoric/telemetry": "0.6.3-dev-f8d1b07.0+f8d1b07",
33
- "@agoric/vm-config": "0.1.1-dev-f8d1b07.0+f8d1b07",
25
+ "@agoric/builders": "0.1.1-dev-e393fda.0+e393fda",
26
+ "@agoric/cosmos": "0.34.2-dev-e393fda.0+e393fda",
27
+ "@agoric/deploy-script-support": "0.10.4-dev-e393fda.0+e393fda",
28
+ "@agoric/internal": "0.3.3-dev-e393fda.0+e393fda",
29
+ "@agoric/store": "0.9.3-dev-e393fda.0+e393fda",
30
+ "@agoric/swing-store": "0.9.2-dev-e393fda.0+e393fda",
31
+ "@agoric/swingset-vat": "0.32.3-dev-e393fda.0+e393fda",
32
+ "@agoric/telemetry": "0.6.3-dev-e393fda.0+e393fda",
33
+ "@agoric/vm-config": "0.1.1-dev-e393fda.0+e393fda",
34
34
  "@endo/bundle-source": "^3.5.1",
35
35
  "@endo/env-options": "^1.1.8",
36
36
  "@endo/errors": "^1.2.9",
@@ -47,7 +47,7 @@
47
47
  "@opentelemetry/sdk-metrics": "~1.30.1",
48
48
  "anylogger": "^0.21.0",
49
49
  "deterministic-json": "^1.0.5",
50
- "import-meta-resolve": "^2.2.1",
50
+ "import-meta-resolve": "^4.1.0",
51
51
  "ses": "^1.11.0",
52
52
  "tmp": "^0.2.1"
53
53
  },
@@ -73,5 +73,5 @@
73
73
  "typeCoverage": {
74
74
  "atLeast": 83.4
75
75
  },
76
- "gitHead": "f8d1b07718983b7429aad6823145272ed160541c"
76
+ "gitHead": "e393fda2039f1b32543bf529a846d626319233df"
77
77
  }
package/src/chain-main.js CHANGED
@@ -424,7 +424,7 @@ export const makeLaunchChain = (
424
424
  bootMsg: makeInitMsg(initAction),
425
425
  };
426
426
  const getVatConfig = async () => {
427
- const href = await importMetaResolve(
427
+ const href = importMetaResolve(
428
428
  env.CHAIN_BOOTSTRAP_VAT_CONFIG ||
429
429
  argv.bootMsg.params.bootstrap_vat_config,
430
430
  import.meta.url,
package/src/sim-chain.js CHANGED
@@ -83,7 +83,7 @@ export async function connectToFakeChain(basedir, GCI, delay, inbound) {
83
83
  };
84
84
 
85
85
  const getVatConfig = async () => {
86
- const href = await importMetaResolve(
86
+ const href = importMetaResolve(
87
87
  env.CHAIN_BOOTSTRAP_VAT_CONFIG ||
88
88
  argv.bootMsg.params.bootstrap_vat_config,
89
89
  import.meta.url,