@agoric/orchestration 0.1.1-dev-9883fcf.0 → 0.1.1-dev-dd37e03.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-9883fcf.0+9883fcf",
3
+ "version": "0.1.1-dev-dd37e03.0+dd37e03",
4
4
  "description": "Chain abstraction for Agoric's orchestration clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -33,19 +33,19 @@
33
33
  },
34
34
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
35
35
  "dependencies": {
36
- "@agoric/async-flow": "0.1.1-dev-9883fcf.0+9883fcf",
37
- "@agoric/cosmic-proto": "0.4.1-dev-9883fcf.0+9883fcf",
38
- "@agoric/ertp": "0.16.3-dev-9883fcf.0+9883fcf",
39
- "@agoric/internal": "0.3.3-dev-9883fcf.0+9883fcf",
40
- "@agoric/network": "0.1.1-dev-9883fcf.0+9883fcf",
41
- "@agoric/notifier": "0.6.3-dev-9883fcf.0+9883fcf",
42
- "@agoric/store": "0.9.3-dev-9883fcf.0+9883fcf",
43
- "@agoric/time": "0.3.3-dev-9883fcf.0+9883fcf",
44
- "@agoric/vat-data": "0.5.3-dev-9883fcf.0+9883fcf",
45
- "@agoric/vats": "0.15.2-dev-9883fcf.0+9883fcf",
46
- "@agoric/vow": "0.1.1-dev-9883fcf.0+9883fcf",
47
- "@agoric/zoe": "0.26.3-dev-9883fcf.0+9883fcf",
48
- "@agoric/zone": "0.2.3-dev-9883fcf.0+9883fcf",
36
+ "@agoric/async-flow": "0.1.1-dev-dd37e03.0+dd37e03",
37
+ "@agoric/cosmic-proto": "0.4.1-dev-dd37e03.0+dd37e03",
38
+ "@agoric/ertp": "0.16.3-dev-dd37e03.0+dd37e03",
39
+ "@agoric/internal": "0.3.3-dev-dd37e03.0+dd37e03",
40
+ "@agoric/network": "0.1.1-dev-dd37e03.0+dd37e03",
41
+ "@agoric/notifier": "0.6.3-dev-dd37e03.0+dd37e03",
42
+ "@agoric/store": "0.9.3-dev-dd37e03.0+dd37e03",
43
+ "@agoric/time": "0.3.3-dev-dd37e03.0+dd37e03",
44
+ "@agoric/vat-data": "0.5.3-dev-dd37e03.0+dd37e03",
45
+ "@agoric/vats": "0.15.2-dev-dd37e03.0+dd37e03",
46
+ "@agoric/vow": "0.1.1-dev-dd37e03.0+dd37e03",
47
+ "@agoric/zoe": "0.26.3-dev-dd37e03.0+dd37e03",
48
+ "@agoric/zone": "0.2.3-dev-dd37e03.0+dd37e03",
49
49
  "@endo/base64": "^1.0.8",
50
50
  "@endo/errors": "^1.2.6",
51
51
  "@endo/far": "^1.1.6",
@@ -54,7 +54,7 @@
54
54
  "@noble/hashes": "^1.5.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@agoric/swingset-liveslots": "0.10.3-dev-9883fcf.0+9883fcf",
57
+ "@agoric/swingset-liveslots": "0.10.3-dev-dd37e03.0+dd37e03",
58
58
  "@chain-registry/client": "^1.47.4",
59
59
  "@cosmjs/amino": "^0.32.3",
60
60
  "@cosmjs/proto-signing": "^0.32.3",
@@ -94,5 +94,5 @@
94
94
  "typeCoverage": {
95
95
  "atLeast": 97.3
96
96
  },
97
- "gitHead": "9883fcf452b71ffaf4fdf03998c1bc6a49cc4f7c"
97
+ "gitHead": "dd37e031ae967a86d806c32849e8878890b47dfc"
98
98
  }
@@ -18,7 +18,7 @@ export function start(zcf: ZCF, privateArgs: {
18
18
  delegate(validatorAddress: string, ertpAmount: Amount<"nat">): import("@agoric/vow").Vow<Record<unknown, unknown>>;
19
19
  undelegate(validatorAddress: string, ertpAmount: Amount<"nat">): import("@agoric/vow").Vow<void | import("@agoric/time").TimestampRecord>;
20
20
  deposit(payment: globalThis.Payment<"nat">): import("@agoric/vow").Vow<void>;
21
- withdraw(amount: import("@agoric/ertp/src/types.js").NatAmount): import("@agoric/vow").Vow<globalThis.Payment<"nat">>;
21
+ withdraw(amount: import("@agoric/ertp").NatAmount): import("@agoric/vow").Vow<globalThis.Payment<"nat">>;
22
22
  executeTx(messages: {
23
23
  '@type': string;
24
24
  }[]): import("@agoric/vow").Vow<{
@@ -174,7 +174,7 @@ export function prepareLocalOrchestrationAccountKit(zone: Zone, { makeRecorderKi
174
174
  /** @type {HostOf<LocalAccountMethods['deposit']>} */
175
175
  deposit(payment: globalThis.Payment<"nat">): Vow<void>;
176
176
  /** @type {HostOf<LocalAccountMethods['withdraw']>} */
177
- withdraw(amount: import("@agoric/ertp/src/types.js").NatAmount): Vow<globalThis.Payment<"nat">>;
177
+ withdraw(amount: import("@agoric/ertp").NatAmount): Vow<globalThis.Payment<"nat">>;
178
178
  /** @type {HostOf<LocalChainAccount['executeTx']>} */
179
179
  executeTx(messages: {
180
180
  '@type': string;
@@ -18,7 +18,7 @@ export function startStakeBld({ consume: { agoricNames: agoricNamesP, board, cha
18
18
  delegate(validatorAddress: string, ertpAmount: Amount<"nat">): import("@agoric/vow").Vow<Record<unknown, unknown>>;
19
19
  undelegate(validatorAddress: string, ertpAmount: Amount<"nat">): import("@agoric/vow").Vow<void | import("@agoric/time").TimestampRecord>;
20
20
  deposit(payment: globalThis.Payment<"nat">): import("@agoric/vow").Vow<void>;
21
- withdraw(amount: import("@agoric/ertp/src/types.js").NatAmount): import("@agoric/vow").Vow<globalThis.Payment<"nat">>;
21
+ withdraw(amount: import("@agoric/ertp").NatAmount): import("@agoric/vow").Vow<globalThis.Payment<"nat">>;
22
22
  executeTx(messages: {
23
23
  '@type': string;
24
24
  }[]): import("@agoric/vow").Vow<{
@@ -1 +1 @@
1
- export * from './types.js';
1
+ export type * from './types.js';