@agoric/orchestration 0.1.1-dev-16095c5.0 → 0.1.1-dev-b953651.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 +15 -15
- package/src/cosmos-api.d.ts +3 -3
- package/src/cosmos-api.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/orchestration",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-b953651.0+b953651",
|
|
4
4
|
"description": "Chain abstraction for Agoric's orchestration clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@agoric/assert": "0.6.1-dev-
|
|
35
|
-
"@agoric/cosmic-proto": "0.4.1-dev-
|
|
36
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
37
|
-
"@agoric/internal": "0.3.3-dev-
|
|
38
|
-
"@agoric/network": "0.1.1-dev-
|
|
39
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
40
|
-
"@agoric/store": "0.9.3-dev-
|
|
41
|
-
"@agoric/time": "0.3.3-dev-
|
|
42
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
43
|
-
"@agoric/vats": "0.15.2-dev-
|
|
44
|
-
"@agoric/vow": "0.1.1-dev-
|
|
45
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
46
|
-
"@agoric/zone": "0.2.3-dev-
|
|
34
|
+
"@agoric/assert": "0.6.1-dev-b953651.0+b953651",
|
|
35
|
+
"@agoric/cosmic-proto": "0.4.1-dev-b953651.0+b953651",
|
|
36
|
+
"@agoric/ertp": "0.16.3-dev-b953651.0+b953651",
|
|
37
|
+
"@agoric/internal": "0.3.3-dev-b953651.0+b953651",
|
|
38
|
+
"@agoric/network": "0.1.1-dev-b953651.0+b953651",
|
|
39
|
+
"@agoric/notifier": "0.6.3-dev-b953651.0+b953651",
|
|
40
|
+
"@agoric/store": "0.9.3-dev-b953651.0+b953651",
|
|
41
|
+
"@agoric/time": "0.3.3-dev-b953651.0+b953651",
|
|
42
|
+
"@agoric/vat-data": "0.5.3-dev-b953651.0+b953651",
|
|
43
|
+
"@agoric/vats": "0.15.2-dev-b953651.0+b953651",
|
|
44
|
+
"@agoric/vow": "0.1.1-dev-b953651.0+b953651",
|
|
45
|
+
"@agoric/zoe": "0.26.3-dev-b953651.0+b953651",
|
|
46
|
+
"@agoric/zone": "0.2.3-dev-b953651.0+b953651",
|
|
47
47
|
"@endo/base64": "^1.0.5",
|
|
48
48
|
"@endo/far": "^1.1.2",
|
|
49
49
|
"@endo/marshal": "^1.5.0",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"typeCoverage": {
|
|
86
86
|
"atLeast": 97.25
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "b95365108e7b1db73148bd742d46cae30890683b"
|
|
89
89
|
}
|
package/src/cosmos-api.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ export interface StakingAccountActions {
|
|
|
101
101
|
* Undelegate multiple delegations (concurrently). To delegate independently, pass an array with one item.
|
|
102
102
|
* Resolves when the undelegation is complete and the tokens are no longer bonded. Note it may take weeks.
|
|
103
103
|
* The unbonding time is padded by 10 minutes to account for clock skew.
|
|
104
|
-
* @param
|
|
104
|
+
* @param delegations - the delegation to undelegate
|
|
105
105
|
*/
|
|
106
106
|
undelegate: (delegations: Delegation[]) => Promise<void>;
|
|
107
107
|
/**
|
|
@@ -132,8 +132,8 @@ export interface IcaAccount {
|
|
|
132
132
|
executeTx: (msgs: Proto3JSONMsg[]) => Promise<string>;
|
|
133
133
|
/**
|
|
134
134
|
* Submit a transaction on behalf of the remote account for execution on the remote chain.
|
|
135
|
-
* @param
|
|
136
|
-
* @param
|
|
135
|
+
* @param msgs - records for the transaction
|
|
136
|
+
* @param [opts] - optional parameters for the Tx, like `timeoutHeight` and `memo`
|
|
137
137
|
* @returns acknowledgement string
|
|
138
138
|
*/
|
|
139
139
|
executeEncodedTx: (msgs: AnyJson[], opts?: Partial<Omit<TxBody, 'messages'>>) => Promise<string>;
|
package/src/cosmos-api.ts
CHANGED
|
@@ -133,7 +133,7 @@ export interface StakingAccountActions {
|
|
|
133
133
|
* Undelegate multiple delegations (concurrently). To delegate independently, pass an array with one item.
|
|
134
134
|
* Resolves when the undelegation is complete and the tokens are no longer bonded. Note it may take weeks.
|
|
135
135
|
* The unbonding time is padded by 10 minutes to account for clock skew.
|
|
136
|
-
* @param
|
|
136
|
+
* @param delegations - the delegation to undelegate
|
|
137
137
|
*/
|
|
138
138
|
undelegate: (delegations: Delegation[]) => Promise<void>;
|
|
139
139
|
|
|
@@ -168,8 +168,8 @@ export interface IcaAccount {
|
|
|
168
168
|
executeTx: (msgs: Proto3JSONMsg[]) => Promise<string>;
|
|
169
169
|
/**
|
|
170
170
|
* Submit a transaction on behalf of the remote account for execution on the remote chain.
|
|
171
|
-
* @param
|
|
172
|
-
* @param
|
|
171
|
+
* @param msgs - records for the transaction
|
|
172
|
+
* @param [opts] - optional parameters for the Tx, like `timeoutHeight` and `memo`
|
|
173
173
|
* @returns acknowledgement string
|
|
174
174
|
*/
|
|
175
175
|
executeEncodedTx: (
|