@agoric/orchestration 0.1.1-dev-76b8d53.0 → 0.1.1-dev-b78d824.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 +14 -14
  2. package/src/types.d.ts +5 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/orchestration",
3
- "version": "0.1.1-dev-76b8d53.0+76b8d53",
3
+ "version": "0.1.1-dev-b78d824.0+b78d824",
4
4
  "description": "Chain abstraction for Agoric's orchestration clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,18 +29,18 @@
29
29
  },
30
30
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
31
31
  "dependencies": {
32
- "@agoric/assert": "0.6.1-dev-76b8d53.0+76b8d53",
33
- "@agoric/cosmic-proto": "0.4.1-dev-76b8d53.0+76b8d53",
34
- "@agoric/ertp": "0.16.3-dev-76b8d53.0+76b8d53",
35
- "@agoric/internal": "0.3.3-dev-76b8d53.0+76b8d53",
36
- "@agoric/network": "0.1.1-dev-76b8d53.0+76b8d53",
37
- "@agoric/notifier": "0.6.3-dev-76b8d53.0+76b8d53",
38
- "@agoric/store": "0.9.3-dev-76b8d53.0+76b8d53",
39
- "@agoric/time": "0.3.3-dev-76b8d53.0+76b8d53",
40
- "@agoric/vat-data": "0.5.3-dev-76b8d53.0+76b8d53",
41
- "@agoric/vats": "0.15.2-dev-76b8d53.0+76b8d53",
42
- "@agoric/zoe": "0.26.3-dev-76b8d53.0+76b8d53",
43
- "@agoric/zone": "0.2.3-dev-76b8d53.0+76b8d53",
32
+ "@agoric/assert": "0.6.1-dev-b78d824.0+b78d824",
33
+ "@agoric/cosmic-proto": "0.4.1-dev-b78d824.0+b78d824",
34
+ "@agoric/ertp": "0.16.3-dev-b78d824.0+b78d824",
35
+ "@agoric/internal": "0.3.3-dev-b78d824.0+b78d824",
36
+ "@agoric/network": "0.1.1-dev-b78d824.0+b78d824",
37
+ "@agoric/notifier": "0.6.3-dev-b78d824.0+b78d824",
38
+ "@agoric/store": "0.9.3-dev-b78d824.0+b78d824",
39
+ "@agoric/time": "0.3.3-dev-b78d824.0+b78d824",
40
+ "@agoric/vat-data": "0.5.3-dev-b78d824.0+b78d824",
41
+ "@agoric/vats": "0.15.2-dev-b78d824.0+b78d824",
42
+ "@agoric/zoe": "0.26.3-dev-b78d824.0+b78d824",
43
+ "@agoric/zone": "0.2.3-dev-b78d824.0+b78d824",
44
44
  "@endo/base64": "^1.0.4",
45
45
  "@endo/far": "^1.1.1",
46
46
  "@endo/marshal": "^1.4.1",
@@ -82,5 +82,5 @@
82
82
  "typeCoverage": {
83
83
  "atLeast": 96.39
84
84
  },
85
- "gitHead": "76b8d531fd9779664f767297a1a079ac500af731"
85
+ "gitHead": "b78d824f3866bd1bd2bc2726e65659d89ed3cfdb"
86
86
  }
package/src/types.d.ts CHANGED
@@ -3,7 +3,10 @@ import type { Timestamp } from '@agoric/time';
3
3
  import type { Invitation } from '@agoric/zoe/exported.js';
4
4
  import type { Any } from '@agoric/cosmic-proto/google/protobuf/any';
5
5
  import type { AnyJson } from '@agoric/cosmic-proto';
6
- import type { MsgUndelegateResponse } from '@agoric/cosmic-proto/cosmos/staking/v1beta1/tx.js';
6
+ import type {
7
+ MsgCancelUnbondingDelegation,
8
+ MsgUndelegateResponse,
9
+ } from '@agoric/cosmic-proto/cosmos/staking/v1beta1/tx.js';
7
10
  import type {
8
11
  Delegation,
9
12
  Redelegation,
@@ -255,8 +258,7 @@ export interface ChainAccount {
255
258
  }
256
259
 
257
260
  export interface Undelegation {
258
- // TODO return MsgCancelUnbondingDelegationResponse when that type is available
259
- cancel: () => Promise<void>;
261
+ cancel: () => Promise<MsgCancelUnbondingDelegation>;
260
262
  response: MsgUndelegateResponse;
261
263
  /**
262
264
  * Resolves when the undelegation is complete and the tokens are no longer bonded.