@agoric/orchestration 0.1.1-dev-727e4af.0 → 0.1.1-dev-96c9ff5.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/orchestration",
3
- "version": "0.1.1-dev-727e4af.0+727e4af",
3
+ "version": "0.1.1-dev-96c9ff5.0+96c9ff5",
4
4
  "description": "Chain abstraction for Agoric's orchestration clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,28 +29,28 @@
29
29
  },
30
30
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
31
31
  "dependencies": {
32
- "@agoric/assert": "0.6.1-dev-727e4af.0+727e4af",
33
- "@agoric/cosmic-proto": "0.4.1-dev-727e4af.0+727e4af",
34
- "@agoric/ertp": "0.16.3-dev-727e4af.0+727e4af",
35
- "@agoric/internal": "0.3.3-dev-727e4af.0+727e4af",
36
- "@agoric/network": "0.1.1-dev-727e4af.0+727e4af",
37
- "@agoric/notifier": "0.6.3-dev-727e4af.0+727e4af",
38
- "@agoric/store": "0.9.3-dev-727e4af.0+727e4af",
39
- "@agoric/time": "0.3.3-dev-727e4af.0+727e4af",
40
- "@agoric/vat-data": "0.5.3-dev-727e4af.0+727e4af",
41
- "@agoric/vats": "0.15.2-dev-727e4af.0+727e4af",
42
- "@agoric/vow": "0.1.1-dev-727e4af.0+727e4af",
43
- "@agoric/zoe": "0.26.3-dev-727e4af.0+727e4af",
44
- "@agoric/zone": "0.2.3-dev-727e4af.0+727e4af",
45
- "@endo/base64": "^1.0.4",
46
- "@endo/far": "^1.1.1",
47
- "@endo/marshal": "^1.4.1",
48
- "@endo/patterns": "^1.3.1"
32
+ "@agoric/assert": "0.6.1-dev-96c9ff5.0+96c9ff5",
33
+ "@agoric/cosmic-proto": "0.4.1-dev-96c9ff5.0+96c9ff5",
34
+ "@agoric/ertp": "0.16.3-dev-96c9ff5.0+96c9ff5",
35
+ "@agoric/internal": "0.3.3-dev-96c9ff5.0+96c9ff5",
36
+ "@agoric/network": "0.1.1-dev-96c9ff5.0+96c9ff5",
37
+ "@agoric/notifier": "0.6.3-dev-96c9ff5.0+96c9ff5",
38
+ "@agoric/store": "0.9.3-dev-96c9ff5.0+96c9ff5",
39
+ "@agoric/time": "0.3.3-dev-96c9ff5.0+96c9ff5",
40
+ "@agoric/vat-data": "0.5.3-dev-96c9ff5.0+96c9ff5",
41
+ "@agoric/vats": "0.15.2-dev-96c9ff5.0+96c9ff5",
42
+ "@agoric/vow": "0.1.1-dev-96c9ff5.0+96c9ff5",
43
+ "@agoric/zoe": "0.26.3-dev-96c9ff5.0+96c9ff5",
44
+ "@agoric/zone": "0.2.3-dev-96c9ff5.0+96c9ff5",
45
+ "@endo/base64": "^1.0.5",
46
+ "@endo/far": "^1.1.2",
47
+ "@endo/marshal": "^1.5.0",
48
+ "@endo/patterns": "^1.4.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@cosmjs/amino": "^0.32.3",
52
52
  "@cosmjs/proto-signing": "^0.32.3",
53
- "@endo/ses-ava": "^1.2.1",
53
+ "@endo/ses-ava": "^1.2.2",
54
54
  "ava": "^5.3.1"
55
55
  },
56
56
  "ava": {
@@ -81,7 +81,7 @@
81
81
  "access": "public"
82
82
  },
83
83
  "typeCoverage": {
84
- "atLeast": 96.39
84
+ "atLeast": 96.18
85
85
  },
86
- "gitHead": "727e4af514a8e92f400dd1671a788c5d3cbe1b8a"
86
+ "gitHead": "96c9ff577fe14cebeb5a38543ba7f8598ffcd0c7"
87
87
  }
@@ -61,6 +61,7 @@ export const prepareLocalchainAccountKit = (baggage, makeRecorderKit, zcf) => {
61
61
  */
62
62
  (account, storageNode) => {
63
63
  // must be the fully synchronous maker because the kit is held in durable state
64
+ // @ts-expect-error XXX Patterns
64
65
  const topicKit = makeRecorderKit(storageNode, PUBLIC_TOPICS.account[1]);
65
66
 
66
67
  return { account, topicKit };
@@ -117,6 +117,7 @@ export const prepareStakingAccountKit = (baggage, makeRecorderKit, zcf) => {
117
117
  */
118
118
  (account, storageNode, chainAddress, icqConnection, bondDenom) => {
119
119
  // must be the fully synchronous maker because the kit is held in durable state
120
+ // @ts-expect-error XXX Patterns
120
121
  const topicKit = makeRecorderKit(storageNode, PUBLIC_TOPICS.account[1]);
121
122
 
122
123
  return { account, chainAddress, topicKit, icqConnection, bondDenom };