@agoric/solo 0.10.4-dev-98f94b3.0 → 0.10.4-dev-7332d8b.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.
Files changed (2) hide show
  1. package/package.json +16 -16
  2. package/src/start.js +2 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/solo",
3
- "version": "0.10.4-dev-98f94b3.0+98f94b3",
3
+ "version": "0.10.4-dev-7332d8b.0+7332d8b",
4
4
  "description": "Agoric's Solo vat runner",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,19 +22,19 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/access-token": "0.4.22-dev-98f94b3.0+98f94b3",
26
- "@agoric/cache": "0.3.3-dev-98f94b3.0+98f94b3",
27
- "@agoric/cosmic-swingset": "0.41.4-dev-98f94b3.0+98f94b3",
28
- "@agoric/internal": "0.3.3-dev-98f94b3.0+98f94b3",
29
- "@agoric/notifier": "0.6.3-dev-98f94b3.0+98f94b3",
30
- "@agoric/spawner": "0.6.9-dev-98f94b3.0+98f94b3",
31
- "@agoric/store": "0.9.3-dev-98f94b3.0+98f94b3",
32
- "@agoric/swing-store": "0.9.2-dev-98f94b3.0+98f94b3",
33
- "@agoric/swingset-vat": "0.32.3-dev-98f94b3.0+98f94b3",
34
- "@agoric/telemetry": "0.6.3-dev-98f94b3.0+98f94b3",
35
- "@agoric/time": "0.3.3-dev-98f94b3.0+98f94b3",
36
- "@agoric/vats": "0.15.2-dev-98f94b3.0+98f94b3",
37
- "@agoric/wallet": "0.18.4-dev-98f94b3.0+98f94b3",
25
+ "@agoric/access-token": "0.4.22-dev-7332d8b.0+7332d8b",
26
+ "@agoric/cache": "0.3.3-dev-7332d8b.0+7332d8b",
27
+ "@agoric/cosmic-swingset": "0.41.4-dev-7332d8b.0+7332d8b",
28
+ "@agoric/internal": "0.3.3-dev-7332d8b.0+7332d8b",
29
+ "@agoric/notifier": "0.6.3-dev-7332d8b.0+7332d8b",
30
+ "@agoric/spawner": "0.6.9-dev-7332d8b.0+7332d8b",
31
+ "@agoric/store": "0.9.3-dev-7332d8b.0+7332d8b",
32
+ "@agoric/swing-store": "0.9.2-dev-7332d8b.0+7332d8b",
33
+ "@agoric/swingset-vat": "0.32.3-dev-7332d8b.0+7332d8b",
34
+ "@agoric/telemetry": "0.6.3-dev-7332d8b.0+7332d8b",
35
+ "@agoric/time": "0.3.3-dev-7332d8b.0+7332d8b",
36
+ "@agoric/vats": "0.15.2-dev-7332d8b.0+7332d8b",
37
+ "@agoric/wallet": "0.18.4-dev-7332d8b.0+7332d8b",
38
38
  "@endo/captp": "^4.4.4",
39
39
  "@endo/errors": "^1.2.9",
40
40
  "@endo/eventual-send": "^1.3.0",
@@ -55,7 +55,7 @@
55
55
  "ws": "^7.2.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@agoric/ertp": "0.16.3-dev-98f94b3.0+98f94b3",
58
+ "@agoric/ertp": "0.16.3-dev-7332d8b.0+7332d8b",
59
59
  "@endo/bundle-source": "^3.5.1",
60
60
  "ava": "^5.3.0",
61
61
  "c8": "^10.1.2"
@@ -79,5 +79,5 @@
79
79
  "typeCoverage": {
80
80
  "atLeast": 74.02
81
81
  },
82
- "gitHead": "98f94b345cd8ddbcd5e80d77ed2703691635e3fc"
82
+ "gitHead": "7332d8bc8525e0b8d7723d9af9af6c1d97b98820"
83
83
  }
package/src/start.js CHANGED
@@ -36,6 +36,7 @@ import {
36
36
  makeEphemeralMailboxStorage,
37
37
  } from '@agoric/swingset-vat';
38
38
  import { openSwingStore } from '@agoric/swing-store';
39
+ import { unprefixedProperties } from '@agoric/internal/src/js-utils.js';
39
40
  import { makeWithQueue } from '@agoric/internal/src/queue.js';
40
41
  import { makeShutdown } from '@agoric/internal/src/node/shutdown.js';
41
42
  import {
@@ -167,14 +168,9 @@ const buildSwingset = async (
167
168
  plugin: { ...plugin.endowments },
168
169
  };
169
170
 
170
- const soloEnv = Object.fromEntries(
171
- Object.entries(process.env)
172
- .filter(([k]) => k.match(/^SOLO_/)) // narrow to SOLO_ prefixes. e.g. SOLO_SLOGFILE
173
- .map(([k, v]) => [k.replace(/^SOLO_/, ''), v]), // Replace SOLO_ controls with chain version.
174
- );
175
171
  const env = {
176
172
  ...process.env,
177
- ...soloEnv,
173
+ ...unprefixedProperties(process.env, 'SOLO_'),
178
174
  };
179
175
  const { metricsProvider = makeDefaultMeterProvider() } =
180
176
  getTelemetryProviders({