@iconlake/client 0.1.10 → 0.1.12
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/dist/index.iife.js +4 -4
- package/dist/index.js +4 -4
- package/dist/index.mjs +6461 -6369
- package/dist/index.umd.js +4 -4
- package/package.json +4 -4
- package/types/cosmos.authz.v1beta1/module.d.ts +11 -11
- package/types/cosmos.bank.v1beta1/module.d.ts +10 -10
- package/types/cosmos.distribution.v1beta1/module.d.ts +29 -29
- package/types/cosmos.feegrant.v1beta1/module.d.ts +10 -10
- package/types/cosmos.gov.v1/module.d.ts +26 -26
- package/types/cosmos.gov.v1beta1/module.d.ts +10 -10
- package/types/cosmos.group.v1/module.d.ts +74 -74
- package/types/cosmos.staking.v1beta1/module.d.ts +21 -21
- package/types/cosmos.upgrade.v1beta1/module.d.ts +10 -10
- package/types/cosmos.vesting.v1beta1/module.d.ts +11 -11
- package/types/iconlake.icon/module.d.ts +12 -1
- package/types/iconlake.icon/rest.d.ts +6 -4
- package/types/iconlake.icon/types/iconlake/icon/tx.d.ts +43 -0
- package/types/index.d.ts +144 -136
package/types/index.d.ts
CHANGED
|
@@ -13,22 +13,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
13
13
|
CosmosBankV1Beta1: {
|
|
14
14
|
query: import("./cosmos.bank.v1beta1/rest").Api<unknown>;
|
|
15
15
|
tx: {
|
|
16
|
-
sendMsgMultiSend({ value, fee, memo }: {
|
|
17
|
-
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
18
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
19
|
-
memo?: string;
|
|
20
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
21
16
|
sendMsgSend({ value, fee, memo }: {
|
|
22
17
|
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
23
18
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
19
|
memo?: string;
|
|
25
20
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
26
|
-
|
|
21
|
+
sendMsgMultiSend({ value, fee, memo }: {
|
|
27
22
|
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
28
|
-
|
|
23
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
|
+
memo?: string;
|
|
25
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
29
26
|
msgSend({ value }: {
|
|
30
27
|
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
31
28
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
29
|
+
msgMultiSend({ value }: {
|
|
30
|
+
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
31
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
32
32
|
};
|
|
33
33
|
structure: Record<string, unknown>;
|
|
34
34
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -38,11 +38,21 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
38
38
|
CosmosStakingV1Beta1: {
|
|
39
39
|
query: import("./cosmos.staking.v1beta1/rest").Api<unknown>;
|
|
40
40
|
tx: {
|
|
41
|
+
sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
|
|
42
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
43
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
|
+
memo?: string;
|
|
45
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
41
46
|
sendMsgDelegate({ value, fee, memo }: {
|
|
42
47
|
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
43
48
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
49
|
memo?: string;
|
|
45
50
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
51
|
+
sendMsgEditValidator({ value, fee, memo }: {
|
|
52
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
53
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
54
|
+
memo?: string;
|
|
55
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
46
56
|
sendMsgUndelegate({ value, fee, memo }: {
|
|
47
57
|
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
48
58
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -58,19 +68,15 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
58
68
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
59
69
|
memo?: string;
|
|
60
70
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
61
|
-
|
|
62
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
63
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
64
|
-
memo?: string;
|
|
65
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
66
|
-
sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
|
|
71
|
+
msgCancelUnbondingDelegation({ value }: {
|
|
67
72
|
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
68
|
-
|
|
69
|
-
memo?: string;
|
|
70
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
73
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
71
74
|
msgDelegate({ value }: {
|
|
72
75
|
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
73
76
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
77
|
+
msgEditValidator({ value }: {
|
|
78
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
79
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
80
|
msgUndelegate({ value }: {
|
|
75
81
|
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
76
82
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
@@ -80,12 +86,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
80
86
|
msgCreateValidator({ value }: {
|
|
81
87
|
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
82
88
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
83
|
-
msgEditValidator({ value }: {
|
|
84
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
85
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
-
msgCancelUnbondingDelegation({ value }: {
|
|
87
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
88
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
89
89
|
};
|
|
90
90
|
structure: Record<string, unknown>;
|
|
91
91
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -108,25 +108,25 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
108
108
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
109
109
|
memo?: string;
|
|
110
110
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
111
|
-
|
|
112
|
-
value: import("./cosmos.authz.v1beta1/module").
|
|
111
|
+
sendMsgExec({ value, fee, memo }: {
|
|
112
|
+
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
113
113
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
114
114
|
memo?: string;
|
|
115
115
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
116
|
-
|
|
117
|
-
value: import("./cosmos.authz.v1beta1/module").
|
|
116
|
+
sendMsgGrant({ value, fee, memo }: {
|
|
117
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
118
118
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
119
119
|
memo?: string;
|
|
120
120
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
121
121
|
msgRevoke({ value }: {
|
|
122
122
|
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
123
123
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
124
|
-
msgGrant({ value }: {
|
|
125
|
-
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
126
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
124
|
msgExec({ value }: {
|
|
128
125
|
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
129
126
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
|
+
msgGrant({ value }: {
|
|
128
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
129
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
130
130
|
};
|
|
131
131
|
structure: Record<string, unknown>;
|
|
132
132
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -186,13 +186,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
186
186
|
CosmosDistributionV1Beta1: {
|
|
187
187
|
query: import("./cosmos.distribution.v1beta1/rest").Api<unknown>;
|
|
188
188
|
tx: {
|
|
189
|
-
|
|
190
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
189
|
+
sendMsgSetWithdrawAddress({ value, fee, memo }: {
|
|
190
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
191
191
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
192
|
memo?: string;
|
|
193
193
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
194
|
-
|
|
195
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
194
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
195
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
196
196
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
197
197
|
memo?: string;
|
|
198
198
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -201,8 +201,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
201
201
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
202
202
|
memo?: string;
|
|
203
203
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
204
|
-
|
|
205
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
204
|
+
sendMsgFundCommunityPool({ value, fee, memo }: {
|
|
205
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
206
206
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
207
207
|
memo?: string;
|
|
208
208
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -211,28 +211,28 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
211
211
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
212
212
|
memo?: string;
|
|
213
213
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
214
|
-
|
|
215
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
214
|
+
sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
|
|
215
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
216
216
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
217
217
|
memo?: string;
|
|
218
218
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
219
|
-
|
|
220
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
219
|
+
msgSetWithdrawAddress({ value }: {
|
|
220
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
221
221
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
|
-
|
|
223
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
222
|
+
msgUpdateParams({ value }: {
|
|
223
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
224
224
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
225
225
|
msgCommunityPoolSpend({ value }: {
|
|
226
226
|
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
227
227
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
|
-
|
|
229
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
228
|
+
msgFundCommunityPool({ value }: {
|
|
229
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
230
230
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
231
231
|
msgWithdrawDelegatorReward({ value }: {
|
|
232
232
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
233
233
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
|
-
|
|
235
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
234
|
+
msgWithdrawValidatorCommission({ value }: {
|
|
235
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
236
236
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
237
237
|
};
|
|
238
238
|
structure: Record<string, unknown>;
|
|
@@ -260,22 +260,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
260
260
|
CosmosFeegrantV1Beta1: {
|
|
261
261
|
query: import("./cosmos.feegrant.v1beta1/rest").Api<unknown>;
|
|
262
262
|
tx: {
|
|
263
|
-
sendMsgRevokeAllowance({ value, fee, memo }: {
|
|
264
|
-
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
265
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
266
|
-
memo?: string;
|
|
267
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
268
263
|
sendMsgGrantAllowance({ value, fee, memo }: {
|
|
269
264
|
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
270
265
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
271
266
|
memo?: string;
|
|
272
267
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
273
|
-
|
|
268
|
+
sendMsgRevokeAllowance({ value, fee, memo }: {
|
|
274
269
|
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
275
|
-
|
|
270
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
271
|
+
memo?: string;
|
|
272
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
276
273
|
msgGrantAllowance({ value }: {
|
|
277
274
|
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
278
275
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
276
|
+
msgRevokeAllowance({ value }: {
|
|
277
|
+
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
278
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
279
279
|
};
|
|
280
280
|
structure: Record<string, unknown>;
|
|
281
281
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -285,8 +285,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
285
285
|
CosmosGovV1: {
|
|
286
286
|
query: import("./cosmos.gov.v1/rest").Api<unknown>;
|
|
287
287
|
tx: {
|
|
288
|
-
|
|
289
|
-
value: import("./cosmos.gov.v1/module").
|
|
288
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
289
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
290
290
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
291
291
|
memo?: string;
|
|
292
292
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -295,36 +295,36 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
295
295
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
296
296
|
memo?: string;
|
|
297
297
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
298
|
-
|
|
299
|
-
value: import("./cosmos.gov.v1/module").
|
|
298
|
+
sendMsgVote({ value, fee, memo }: {
|
|
299
|
+
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
300
300
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
301
301
|
memo?: string;
|
|
302
302
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
303
|
-
|
|
304
|
-
value: import("./cosmos.gov.v1/module").
|
|
303
|
+
sendMsgDeposit({ value, fee, memo }: {
|
|
304
|
+
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
305
305
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
306
306
|
memo?: string;
|
|
307
307
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
308
|
-
|
|
309
|
-
value: import("./cosmos.gov.v1/module").
|
|
308
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
309
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
310
310
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
311
311
|
memo?: string;
|
|
312
312
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
313
|
-
|
|
314
|
-
value: import("./cosmos.gov.v1/module").
|
|
313
|
+
msgSubmitProposal({ value }: {
|
|
314
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
315
315
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
316
316
|
msgVoteWeighted({ value }: {
|
|
317
317
|
value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
|
|
318
318
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
319
|
-
msgUpdateParams({ value }: {
|
|
320
|
-
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
321
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
|
-
msgSubmitProposal({ value }: {
|
|
323
|
-
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
324
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
319
|
msgVote({ value }: {
|
|
326
320
|
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
327
321
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
|
+
msgDeposit({ value }: {
|
|
323
|
+
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
324
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
|
+
msgUpdateParams({ value }: {
|
|
326
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
327
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
328
328
|
};
|
|
329
329
|
structure: Record<string, unknown>;
|
|
330
330
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -334,6 +334,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
334
334
|
CosmosGovV1Beta1: {
|
|
335
335
|
query: import("./cosmos.gov.v1beta1/rest").Api<unknown>;
|
|
336
336
|
tx: {
|
|
337
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
338
|
+
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
339
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
340
|
+
memo?: string;
|
|
341
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
337
342
|
sendMsgVoteWeighted({ value, fee, memo }: {
|
|
338
343
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
339
344
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -349,11 +354,9 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
349
354
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
350
355
|
memo?: string;
|
|
351
356
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
352
|
-
|
|
357
|
+
msgSubmitProposal({ value }: {
|
|
353
358
|
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
354
|
-
|
|
355
|
-
memo?: string;
|
|
356
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
359
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
357
360
|
msgVoteWeighted({ value }: {
|
|
358
361
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
359
362
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
@@ -363,9 +366,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
363
366
|
msgVote({ value }: {
|
|
364
367
|
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
365
368
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
|
-
msgSubmitProposal({ value }: {
|
|
367
|
-
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
368
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
369
369
|
};
|
|
370
370
|
structure: Record<string, unknown>;
|
|
371
371
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -375,8 +375,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
375
375
|
CosmosGroupV1: {
|
|
376
376
|
query: import("./cosmos.group.v1/rest").Api<unknown>;
|
|
377
377
|
tx: {
|
|
378
|
-
|
|
379
|
-
value: import("./cosmos.group.v1/module").
|
|
378
|
+
sendMsgUpdateGroupAdmin({ value, fee, memo }: {
|
|
379
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
380
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
381
|
+
memo?: string;
|
|
382
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
383
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: {
|
|
384
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
380
385
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
381
386
|
memo?: string;
|
|
382
387
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -390,38 +395,38 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
390
395
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
391
396
|
memo?: string;
|
|
392
397
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
393
|
-
|
|
394
|
-
value: import("./cosmos.group.v1/module").
|
|
398
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: {
|
|
399
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
395
400
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
396
401
|
memo?: string;
|
|
397
402
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
398
|
-
|
|
399
|
-
value: import("./cosmos.group.v1/module").
|
|
403
|
+
sendMsgExec({ value, fee, memo }: {
|
|
404
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
400
405
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
401
406
|
memo?: string;
|
|
402
407
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
403
|
-
|
|
404
|
-
value: import("./cosmos.group.v1/module").
|
|
408
|
+
sendMsgCreateGroup({ value, fee, memo }: {
|
|
409
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
405
410
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
406
411
|
memo?: string;
|
|
407
412
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
408
|
-
|
|
409
|
-
value: import("./cosmos.group.v1/module").
|
|
413
|
+
sendMsgVote({ value, fee, memo }: {
|
|
414
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
410
415
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
411
416
|
memo?: string;
|
|
412
417
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
413
|
-
|
|
414
|
-
value: import("./cosmos.group.v1/module").
|
|
418
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: {
|
|
419
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
415
420
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
416
421
|
memo?: string;
|
|
417
422
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
418
|
-
|
|
419
|
-
value: import("./cosmos.group.v1/module").
|
|
423
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
|
|
424
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
420
425
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
421
426
|
memo?: string;
|
|
422
427
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
423
|
-
|
|
424
|
-
value: import("./cosmos.group.v1/module").
|
|
428
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
|
|
429
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
425
430
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
426
431
|
memo?: string;
|
|
427
432
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -430,23 +435,21 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
430
435
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
431
436
|
memo?: string;
|
|
432
437
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
433
|
-
|
|
434
|
-
value: import("./cosmos.group.v1/module").
|
|
435
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
436
|
-
memo?: string;
|
|
437
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
438
|
-
sendMsgCreateGroup({ value, fee, memo }: {
|
|
439
|
-
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
438
|
+
sendMsgWithdrawProposal({ value, fee, memo }: {
|
|
439
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
440
440
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
441
441
|
memo?: string;
|
|
442
442
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
443
|
-
|
|
444
|
-
value: import("./cosmos.group.v1/module").
|
|
443
|
+
sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
|
|
444
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
445
445
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
446
446
|
memo?: string;
|
|
447
447
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
448
|
-
|
|
449
|
-
value: import("./cosmos.group.v1/module").
|
|
448
|
+
msgUpdateGroupAdmin({ value }: {
|
|
449
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
450
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
451
|
+
msgCreateGroupPolicy({ value }: {
|
|
452
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
450
453
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
451
454
|
msgSubmitProposal({ value }: {
|
|
452
455
|
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
@@ -454,38 +457,35 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
454
457
|
msgLeaveGroup({ value }: {
|
|
455
458
|
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
456
459
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
457
|
-
|
|
458
|
-
value: import("./cosmos.group.v1/module").
|
|
459
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
|
-
msgCreateGroupWithPolicy({ value }: {
|
|
461
|
-
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
462
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
463
|
-
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
464
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
460
|
+
msgUpdateGroupMembers({ value }: {
|
|
461
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
465
462
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
466
463
|
msgExec({ value }: {
|
|
467
464
|
value: import("./cosmos.group.v1/module").MsgExec;
|
|
468
465
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
-
|
|
470
|
-
value: import("./cosmos.group.v1/module").
|
|
466
|
+
msgCreateGroup({ value }: {
|
|
467
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
468
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
+
msgVote({ value }: {
|
|
470
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
471
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
|
+
msgUpdateGroupMetadata({ value }: {
|
|
473
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
474
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
|
+
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
476
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
471
477
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
478
|
msgUpdateGroupPolicyAdmin({ value }: {
|
|
473
479
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
474
480
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
|
-
msgWithdrawProposal({ value }: {
|
|
476
|
-
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
477
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
478
481
|
msgUpdateGroupPolicyMetadata({ value }: {
|
|
479
482
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
480
483
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
|
-
|
|
482
|
-
value: import("./cosmos.group.v1/module").
|
|
483
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
|
-
msgCreateGroup({ value }: {
|
|
485
|
-
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
484
|
+
msgWithdrawProposal({ value }: {
|
|
485
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
486
486
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
-
|
|
488
|
-
value: import("./cosmos.group.v1/module").
|
|
487
|
+
msgCreateGroupWithPolicy({ value }: {
|
|
488
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
489
489
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
490
490
|
};
|
|
491
491
|
structure: Record<string, unknown>;
|
|
@@ -545,22 +545,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
545
545
|
CosmosUpgradeV1Beta1: {
|
|
546
546
|
query: import("./cosmos.upgrade.v1beta1/rest").Api<unknown>;
|
|
547
547
|
tx: {
|
|
548
|
-
sendMsgSoftwareUpgrade({ value, fee, memo }: {
|
|
549
|
-
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
550
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
551
|
-
memo?: string;
|
|
552
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
553
548
|
sendMsgCancelUpgrade({ value, fee, memo }: {
|
|
554
549
|
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
555
550
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
551
|
memo?: string;
|
|
557
552
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
558
|
-
|
|
553
|
+
sendMsgSoftwareUpgrade({ value, fee, memo }: {
|
|
559
554
|
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
560
|
-
|
|
555
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
|
+
memo?: string;
|
|
557
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
561
558
|
msgCancelUpgrade({ value }: {
|
|
562
559
|
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
563
560
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
561
|
+
msgSoftwareUpgrade({ value }: {
|
|
562
|
+
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
563
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
564
564
|
};
|
|
565
565
|
structure: Record<string, unknown>;
|
|
566
566
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -575,25 +575,25 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
575
575
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
576
576
|
memo?: string;
|
|
577
577
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
578
|
-
|
|
579
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
578
|
+
sendMsgCreatePermanentLockedAccount({ value, fee, memo }: {
|
|
579
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
580
580
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
581
581
|
memo?: string;
|
|
582
582
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
583
|
-
|
|
584
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
583
|
+
sendMsgCreateVestingAccount({ value, fee, memo }: {
|
|
584
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
585
585
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
586
586
|
memo?: string;
|
|
587
587
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
588
588
|
msgCreatePeriodicVestingAccount({ value }: {
|
|
589
589
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
590
590
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
591
|
-
msgCreateVestingAccount({ value }: {
|
|
592
|
-
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
593
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
591
|
msgCreatePermanentLockedAccount({ value }: {
|
|
595
592
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
596
593
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
|
+
msgCreateVestingAccount({ value }: {
|
|
595
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
596
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
597
597
|
};
|
|
598
598
|
structure: Record<string, unknown>;
|
|
599
599
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -681,9 +681,17 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
681
681
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
682
682
|
memo?: string;
|
|
683
683
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
684
|
+
sendMsgUpdateClass({ value, fee, memo }: {
|
|
685
|
+
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
686
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
687
|
+
memo?: string;
|
|
688
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
684
689
|
msgMint({ value }: {
|
|
685
690
|
value: import("./iconlake.icon/module").MsgMint;
|
|
686
691
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
692
|
+
msgUpdateClass({ value }: {
|
|
693
|
+
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
694
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
687
695
|
};
|
|
688
696
|
structure: Record<string, unknown>;
|
|
689
697
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|