@agoric/solo 0.10.4-dev-b2cdd8c.0.b2cdd8c → 0.10.4-dev-4a66092.0.4a66092

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/solo",
3
- "version": "0.10.4-dev-b2cdd8c.0.b2cdd8c",
3
+ "version": "0.10.4-dev-4a66092.0.4a66092",
4
4
  "description": "Agoric's Solo vat runner",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,20 +22,20 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/access-token": "0.4.22-dev-b2cdd8c.0.b2cdd8c",
26
- "@agoric/cache": "0.3.3-dev-b2cdd8c.0.b2cdd8c",
27
- "@agoric/cosmic-proto": "0.4.1-dev-b2cdd8c.0.b2cdd8c",
28
- "@agoric/cosmic-swingset": "0.41.4-dev-b2cdd8c.0.b2cdd8c",
29
- "@agoric/internal": "0.3.3-dev-b2cdd8c.0.b2cdd8c",
30
- "@agoric/notifier": "0.6.3-dev-b2cdd8c.0.b2cdd8c",
31
- "@agoric/spawner": "0.6.9-dev-b2cdd8c.0.b2cdd8c",
32
- "@agoric/store": "0.9.3-dev-b2cdd8c.0.b2cdd8c",
33
- "@agoric/swing-store": "0.9.2-dev-b2cdd8c.0.b2cdd8c",
34
- "@agoric/swingset-vat": "0.32.3-dev-b2cdd8c.0.b2cdd8c",
35
- "@agoric/telemetry": "0.6.3-dev-b2cdd8c.0.b2cdd8c",
36
- "@agoric/time": "0.3.3-dev-b2cdd8c.0.b2cdd8c",
37
- "@agoric/vats": "0.15.2-dev-b2cdd8c.0.b2cdd8c",
38
- "@agoric/wallet": "0.18.4-dev-b2cdd8c.0.b2cdd8c",
25
+ "@agoric/access-token": "0.4.22-dev-4a66092.0.4a66092",
26
+ "@agoric/cache": "0.3.3-dev-4a66092.0.4a66092",
27
+ "@agoric/cosmic-proto": "0.4.1-dev-4a66092.0.4a66092",
28
+ "@agoric/cosmic-swingset": "0.41.4-dev-4a66092.0.4a66092",
29
+ "@agoric/internal": "0.3.3-dev-4a66092.0.4a66092",
30
+ "@agoric/notifier": "0.6.3-dev-4a66092.0.4a66092",
31
+ "@agoric/spawner": "0.6.9-dev-4a66092.0.4a66092",
32
+ "@agoric/store": "0.9.3-dev-4a66092.0.4a66092",
33
+ "@agoric/swing-store": "0.9.2-dev-4a66092.0.4a66092",
34
+ "@agoric/swingset-vat": "0.32.3-dev-4a66092.0.4a66092",
35
+ "@agoric/telemetry": "0.6.3-dev-4a66092.0.4a66092",
36
+ "@agoric/time": "0.3.3-dev-4a66092.0.4a66092",
37
+ "@agoric/vats": "0.15.2-dev-4a66092.0.4a66092",
38
+ "@agoric/wallet": "0.18.4-dev-4a66092.0.4a66092",
39
39
  "@endo/base64": "^1.0.12",
40
40
  "@endo/captp": "^4.4.8",
41
41
  "@endo/errors": "^1.2.13",
@@ -56,7 +56,7 @@
56
56
  "ws": "^7.2.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@agoric/ertp": "0.16.3-dev-b2cdd8c.0.b2cdd8c",
59
+ "@agoric/ertp": "0.16.3-dev-4a66092.0.4a66092",
60
60
  "@endo/bundle-source": "^4.1.2",
61
61
  "ava": "^5.3.0",
62
62
  "c8": "^10.1.3"
@@ -80,5 +80,5 @@
80
80
  "typeCoverage": {
81
81
  "atLeast": 73.92
82
82
  },
83
- "gitHead": "b2cdd8c537972bacd601bc8ad8e094af6a99e40e"
83
+ "gitHead": "4a660927e7eafc2eabc8a6c5339c43177f168930"
84
84
  }
@@ -16,6 +16,7 @@ import {
16
16
  QueryDataRequest,
17
17
  QueryDataResponse,
18
18
  } from '@agoric/cosmic-proto/vstorage/query.js';
19
+ import { CodecHelper } from '@agoric/cosmic-proto';
19
20
 
20
21
  import { makeNotifierKit } from '@agoric/notifier';
21
22
  import {
@@ -360,7 +361,9 @@ export async function connectToChain(
360
361
  const txSubscriptionId = sendRPC('subscribe', { query: txQuery });
361
362
  const queryId = sendRPC('abci_query', {
362
363
  path: `/agoric.vstorage.Query/Data`,
363
- data: encodeHex(QueryDataRequest.toProto({ path: storagePath })),
364
+ data: encodeHex(
365
+ CodecHelper(QueryDataRequest).toProto({ path: storagePath }),
366
+ ),
364
367
  });
365
368
 
366
369
  const cleanup = () => {