@iconlake/client 0.3.0 → 0.5.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/dist/index.iife.js +2 -2
- package/dist/index.js +3 -3
- package/dist/index.mjs +2143 -2042
- package/dist/index.umd.js +2 -2
- package/package.json +9 -13
- package/types/cosmos.authz.v1beta1/module.d.ts +15 -15
- package/types/cosmos.distribution.v1beta1/module.d.ts +28 -28
- package/types/cosmos.feegrant.v1beta1/module.d.ts +10 -10
- package/types/cosmos.gov.v1/module.d.ts +25 -25
- package/types/cosmos.gov.v1beta1/module.d.ts +12 -12
- package/types/cosmos.group.v1/module.d.ts +84 -84
- package/types/cosmos.staking.v1beta1/module.d.ts +25 -25
- package/types/cosmos.upgrade.v1beta1/module.d.ts +10 -10
- package/types/cosmos.vesting.v1beta1/module.d.ts +10 -10
- package/types/iconlake.drop/module.d.ts +10 -10
- package/types/iconlake.drop/rest.d.ts +8 -1
- package/types/iconlake.drop/types/iconlake/drop/genesis.d.ts +14 -2
- package/types/iconlake.drop/types/iconlake/drop/params.d.ts +15 -4
- package/types/iconlake.drop/types/iconlake/drop/query.d.ts +14 -2
- package/types/iconlake.icon/module.d.ts +19 -8
- package/types/iconlake.icon/rest.d.ts +1 -0
- package/types/iconlake.icon/types/iconlake/icon/tx.d.ts +31 -0
- package/types/index.d.ts +158 -150
- package/types.d.ts +0 -0
package/types/index.d.ts
CHANGED
|
@@ -43,8 +43,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
43
43
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
44
|
memo?: string;
|
|
45
45
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
46
|
-
|
|
47
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
46
|
+
sendMsgCreateValidator({ value, fee, memo }: {
|
|
47
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
48
48
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
49
49
|
memo?: string;
|
|
50
50
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -53,38 +53,38 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
53
53
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
54
54
|
memo?: string;
|
|
55
55
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
56
|
-
|
|
57
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
56
|
+
sendMsgBeginRedelegate({ value, fee, memo }: {
|
|
57
|
+
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
58
58
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
59
59
|
memo?: string;
|
|
60
60
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
61
|
-
|
|
62
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
61
|
+
sendMsgDelegate({ value, fee, memo }: {
|
|
62
|
+
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
63
63
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
64
64
|
memo?: string;
|
|
65
65
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
66
|
-
|
|
67
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
66
|
+
sendMsgUndelegate({ value, fee, memo }: {
|
|
67
|
+
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
68
68
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
69
69
|
memo?: string;
|
|
70
70
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
71
71
|
msgCancelUnbondingDelegation({ value }: {
|
|
72
72
|
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
73
73
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
|
-
|
|
75
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
74
|
+
msgCreateValidator({ value }: {
|
|
75
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
76
76
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
77
77
|
msgEditValidator({ value }: {
|
|
78
78
|
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
79
79
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
80
|
-
msgUndelegate({ value }: {
|
|
81
|
-
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
82
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
83
80
|
msgBeginRedelegate({ value }: {
|
|
84
81
|
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
85
82
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
-
|
|
87
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
83
|
+
msgDelegate({ value }: {
|
|
84
|
+
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
85
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
+
msgUndelegate({ value }: {
|
|
87
|
+
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
88
88
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
89
89
|
};
|
|
90
90
|
structure: Record<string, unknown>;
|
|
@@ -103,8 +103,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
103
103
|
CosmosAuthzV1Beta1: {
|
|
104
104
|
query: import("./cosmos.authz.v1beta1/rest").Api<unknown>;
|
|
105
105
|
tx: {
|
|
106
|
-
|
|
107
|
-
value: import("./cosmos.authz.v1beta1/module").
|
|
106
|
+
sendMsgGrant({ value, fee, memo }: {
|
|
107
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
108
108
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
109
109
|
memo?: string;
|
|
110
110
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -113,19 +113,19 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
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
|
+
sendMsgRevoke({ value, fee, memo }: {
|
|
117
|
+
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
118
118
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
119
119
|
memo?: string;
|
|
120
120
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
121
|
-
|
|
122
|
-
value: import("./cosmos.authz.v1beta1/module").
|
|
121
|
+
msgGrant({ value }: {
|
|
122
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
123
123
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
124
124
|
msgExec({ value }: {
|
|
125
125
|
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
126
126
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
|
-
|
|
128
|
-
value: import("./cosmos.authz.v1beta1/module").
|
|
127
|
+
msgRevoke({ value }: {
|
|
128
|
+
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
129
129
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
130
130
|
};
|
|
131
131
|
structure: Record<string, unknown>;
|
|
@@ -186,13 +186,8 @@ 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").
|
|
191
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
|
-
memo?: string;
|
|
193
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
194
|
-
sendMsgUpdateParams({ value, fee, memo }: {
|
|
195
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
189
|
+
sendMsgFundCommunityPool({ value, fee, memo }: {
|
|
190
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
196
191
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
197
192
|
memo?: string;
|
|
198
193
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -201,11 +196,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
201
196
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
202
197
|
memo?: string;
|
|
203
198
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
204
|
-
sendMsgFundCommunityPool({ value, fee, memo }: {
|
|
205
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
206
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
207
|
-
memo?: string;
|
|
208
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
209
199
|
sendMsgWithdrawDelegatorReward({ value, fee, memo }: {
|
|
210
200
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
211
201
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -216,24 +206,34 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
216
206
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
217
207
|
memo?: string;
|
|
218
208
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
219
|
-
|
|
220
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
221
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
|
-
msgUpdateParams({ value }: {
|
|
209
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
223
210
|
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
211
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
212
|
+
memo?: string;
|
|
213
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
214
|
+
sendMsgSetWithdrawAddress({ value, fee, memo }: {
|
|
215
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
216
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
217
|
+
memo?: string;
|
|
218
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
219
|
+
msgFundCommunityPool({ value }: {
|
|
220
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
224
221
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
225
222
|
msgCommunityPoolSpend({ value }: {
|
|
226
223
|
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
227
224
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
|
-
msgFundCommunityPool({ value }: {
|
|
229
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
230
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
231
225
|
msgWithdrawDelegatorReward({ value }: {
|
|
232
226
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
233
227
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
228
|
msgWithdrawValidatorCommission({ value }: {
|
|
235
229
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
236
230
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
231
|
+
msgUpdateParams({ value }: {
|
|
232
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
233
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
|
+
msgSetWithdrawAddress({ value }: {
|
|
235
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
236
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
237
237
|
};
|
|
238
238
|
structure: Record<string, unknown>;
|
|
239
239
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -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
|
-
sendMsgGrantAllowance({ value, fee, memo }: {
|
|
264
|
-
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
265
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
266
|
-
memo?: string;
|
|
267
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
268
263
|
sendMsgRevokeAllowance({ value, fee, memo }: {
|
|
269
264
|
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
270
265
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
271
266
|
memo?: string;
|
|
272
267
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
273
|
-
|
|
268
|
+
sendMsgGrantAllowance({ value, fee, memo }: {
|
|
274
269
|
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
275
|
-
|
|
270
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
271
|
+
memo?: string;
|
|
272
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
276
273
|
msgRevokeAllowance({ value }: {
|
|
277
274
|
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
278
275
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
276
|
+
msgGrantAllowance({ value }: {
|
|
277
|
+
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
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
|
+
sendMsgVote({ value, fee, memo }: {
|
|
289
|
+
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
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
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
299
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
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
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
304
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
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
|
+
sendMsgDeposit({ value, fee, memo }: {
|
|
309
|
+
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
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
|
+
msgVote({ value }: {
|
|
314
|
+
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
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
|
-
|
|
320
|
-
value: import("./cosmos.gov.v1/module").
|
|
321
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
|
-
msgDeposit({ value }: {
|
|
323
|
-
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
319
|
+
msgSubmitProposal({ value }: {
|
|
320
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
324
321
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
322
|
msgUpdateParams({ value }: {
|
|
326
323
|
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
327
324
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
|
+
msgDeposit({ value }: {
|
|
326
|
+
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
327
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
328
328
|
};
|
|
329
329
|
structure: Record<string, unknown>;
|
|
330
330
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -339,6 +339,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
339
339
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
340
340
|
memo?: string;
|
|
341
341
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
342
|
+
sendMsgVote({ value, fee, memo }: {
|
|
343
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
344
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
345
|
+
memo?: string;
|
|
346
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
342
347
|
sendMsgVoteWeighted({ value, fee, memo }: {
|
|
343
348
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
344
349
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -349,23 +354,18 @@ 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
|
-
sendMsgVote({ value, fee, memo }: {
|
|
353
|
-
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
354
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
355
|
-
memo?: string;
|
|
356
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
357
357
|
msgSubmitProposal({ value }: {
|
|
358
358
|
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
359
359
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
360
|
+
msgVote({ value }: {
|
|
361
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
362
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
360
363
|
msgVoteWeighted({ value }: {
|
|
361
364
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
362
365
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
363
366
|
msgDeposit({ value }: {
|
|
364
367
|
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
365
368
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
|
-
msgVote({ value }: {
|
|
367
|
-
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
368
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
369
369
|
};
|
|
370
370
|
structure: Record<string, unknown>;
|
|
371
371
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -375,117 +375,117 @@ 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
|
+
sendMsgLeaveGroup({ value, fee, memo }: {
|
|
379
|
+
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
380
380
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
381
381
|
memo?: string;
|
|
382
382
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
383
|
-
|
|
384
|
-
value: import("./cosmos.group.v1/module").
|
|
383
|
+
sendMsgCreateGroup({ value, fee, memo }: {
|
|
384
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
385
385
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
386
386
|
memo?: string;
|
|
387
387
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
388
|
-
|
|
389
|
-
value: import("./cosmos.group.v1/module").
|
|
388
|
+
sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
|
|
389
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
390
390
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
391
391
|
memo?: string;
|
|
392
392
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
393
|
-
|
|
394
|
-
value: import("./cosmos.group.v1/module").
|
|
393
|
+
sendMsgExec({ value, fee, memo }: {
|
|
394
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
395
395
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
396
396
|
memo?: string;
|
|
397
397
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
398
|
-
|
|
399
|
-
value: import("./cosmos.group.v1/module").
|
|
398
|
+
sendMsgUpdateGroupAdmin({ value, fee, memo }: {
|
|
399
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
400
400
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
401
401
|
memo?: string;
|
|
402
402
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
403
|
-
|
|
404
|
-
value: import("./cosmos.group.v1/module").
|
|
403
|
+
sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
|
|
404
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
405
405
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
406
406
|
memo?: string;
|
|
407
407
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
408
|
-
|
|
409
|
-
value: import("./cosmos.group.v1/module").
|
|
408
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
|
|
409
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
410
410
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
411
411
|
memo?: string;
|
|
412
412
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
413
|
-
|
|
414
|
-
value: import("./cosmos.group.v1/module").
|
|
413
|
+
sendMsgWithdrawProposal({ value, fee, memo }: {
|
|
414
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
415
415
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
416
416
|
memo?: string;
|
|
417
417
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
418
|
-
|
|
419
|
-
value: import("./cosmos.group.v1/module").
|
|
418
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
|
|
419
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
420
420
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
421
421
|
memo?: string;
|
|
422
422
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
423
|
-
|
|
424
|
-
value: import("./cosmos.group.v1/module").
|
|
423
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: {
|
|
424
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
425
425
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
426
426
|
memo?: string;
|
|
427
427
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
428
|
-
|
|
429
|
-
value: import("./cosmos.group.v1/module").
|
|
428
|
+
sendMsgVote({ value, fee, memo }: {
|
|
429
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
430
430
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
431
431
|
memo?: string;
|
|
432
432
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
433
|
-
|
|
434
|
-
value: import("./cosmos.group.v1/module").
|
|
433
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
434
|
+
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
435
435
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
436
436
|
memo?: string;
|
|
437
437
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
438
|
-
|
|
439
|
-
value: import("./cosmos.group.v1/module").
|
|
438
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: {
|
|
439
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
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
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: {
|
|
444
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
445
445
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
446
446
|
memo?: string;
|
|
447
447
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
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;
|
|
453
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
454
|
-
msgSubmitProposal({ value }: {
|
|
455
|
-
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
456
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
457
448
|
msgLeaveGroup({ value }: {
|
|
458
449
|
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
459
450
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
|
-
|
|
461
|
-
value: import("./cosmos.group.v1/module").
|
|
451
|
+
msgCreateGroup({ value }: {
|
|
452
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
453
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
454
|
+
msgUpdateGroupPolicyMetadata({ value }: {
|
|
455
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
462
456
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
463
457
|
msgExec({ value }: {
|
|
464
458
|
value: import("./cosmos.group.v1/module").MsgExec;
|
|
465
459
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
466
|
-
|
|
467
|
-
value: import("./cosmos.group.v1/module").
|
|
460
|
+
msgUpdateGroupAdmin({ value }: {
|
|
461
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
468
462
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
-
|
|
470
|
-
value: import("./cosmos.group.v1/module").
|
|
463
|
+
msgCreateGroupWithPolicy({ value }: {
|
|
464
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
471
465
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
|
-
|
|
473
|
-
value: import("./cosmos.group.v1/module").
|
|
466
|
+
msgUpdateGroupPolicyAdmin({ value }: {
|
|
467
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
468
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
+
msgWithdrawProposal({ value }: {
|
|
470
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
474
471
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
472
|
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
476
473
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
477
474
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
478
|
-
|
|
479
|
-
value: import("./cosmos.group.v1/module").
|
|
475
|
+
msgUpdateGroupMetadata({ value }: {
|
|
476
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
480
477
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
|
-
|
|
482
|
-
value: import("./cosmos.group.v1/module").
|
|
478
|
+
msgVote({ value }: {
|
|
479
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
483
480
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
|
-
|
|
485
|
-
value: import("./cosmos.group.v1/module").
|
|
481
|
+
msgSubmitProposal({ value }: {
|
|
482
|
+
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
486
483
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
-
|
|
488
|
-
value: import("./cosmos.group.v1/module").
|
|
484
|
+
msgCreateGroupPolicy({ value }: {
|
|
485
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
486
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
+
msgUpdateGroupMembers({ value }: {
|
|
488
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
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
|
-
sendMsgCancelUpgrade({ value, fee, memo }: {
|
|
549
|
-
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
550
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
551
|
-
memo?: string;
|
|
552
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
553
548
|
sendMsgSoftwareUpgrade({ value, fee, memo }: {
|
|
554
549
|
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
555
550
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
551
|
memo?: string;
|
|
557
552
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
558
|
-
|
|
553
|
+
sendMsgCancelUpgrade({ value, fee, memo }: {
|
|
559
554
|
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
560
|
-
|
|
555
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
|
+
memo?: string;
|
|
557
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
561
558
|
msgSoftwareUpgrade({ value }: {
|
|
562
559
|
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
563
560
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
561
|
+
msgCancelUpgrade({ value }: {
|
|
562
|
+
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
563
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
564
564
|
};
|
|
565
565
|
structure: Record<string, unknown>;
|
|
566
566
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -570,6 +570,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
570
570
|
CosmosVestingV1Beta1: {
|
|
571
571
|
query: import("./cosmos.vesting.v1beta1/rest").Api<unknown>;
|
|
572
572
|
tx: {
|
|
573
|
+
sendMsgCreateVestingAccount({ value, fee, memo }: {
|
|
574
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
575
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
576
|
+
memo?: string;
|
|
577
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
573
578
|
sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
|
|
574
579
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
575
580
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -580,20 +585,15 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
580
585
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
581
586
|
memo?: string;
|
|
582
587
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
583
|
-
|
|
588
|
+
msgCreateVestingAccount({ value }: {
|
|
584
589
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
585
|
-
|
|
586
|
-
memo?: string;
|
|
587
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
590
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
588
591
|
msgCreatePeriodicVestingAccount({ value }: {
|
|
589
592
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
590
593
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
591
594
|
msgCreatePermanentLockedAccount({ value }: {
|
|
592
595
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
593
596
|
}): 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][];
|
|
@@ -651,22 +651,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
651
651
|
IconlakeDrop: {
|
|
652
652
|
query: import("./iconlake.drop/rest").Api<unknown>;
|
|
653
653
|
tx: {
|
|
654
|
-
sendMsgMint({ value, fee, memo }: {
|
|
655
|
-
value: import("./iconlake.drop/module").MsgMint;
|
|
656
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
657
|
-
memo?: string;
|
|
658
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
659
654
|
sendMsgInit({ value, fee, memo }: {
|
|
660
655
|
value: import("./iconlake.drop/module").MsgInit;
|
|
661
656
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
662
657
|
memo?: string;
|
|
663
658
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
664
|
-
|
|
659
|
+
sendMsgMint({ value, fee, memo }: {
|
|
665
660
|
value: import("./iconlake.drop/module").MsgMint;
|
|
666
|
-
|
|
661
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
662
|
+
memo?: string;
|
|
663
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
667
664
|
msgInit({ value }: {
|
|
668
665
|
value: import("./iconlake.drop/module").MsgInit;
|
|
669
666
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
667
|
+
msgMint({ value }: {
|
|
668
|
+
value: import("./iconlake.drop/module").MsgMint;
|
|
669
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
670
670
|
};
|
|
671
671
|
structure: Record<string, unknown>;
|
|
672
672
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -676,21 +676,29 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
676
676
|
IconlakeIcon: {
|
|
677
677
|
query: import("./iconlake.icon/rest").Api<unknown>;
|
|
678
678
|
tx: {
|
|
679
|
+
sendMsgMint({ value, fee, memo }: {
|
|
680
|
+
value: import("./iconlake.icon/module").MsgMint;
|
|
681
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
682
|
+
memo?: string;
|
|
683
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
679
684
|
sendMsgUpdateClass({ value, fee, memo }: {
|
|
680
685
|
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
681
686
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
682
687
|
memo?: string;
|
|
683
688
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
684
|
-
|
|
685
|
-
value: import("./iconlake.icon/module").
|
|
689
|
+
sendMsgBurn({ value, fee, memo }: {
|
|
690
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
686
691
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
687
692
|
memo?: string;
|
|
688
693
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
694
|
+
msgMint({ value }: {
|
|
695
|
+
value: import("./iconlake.icon/module").MsgMint;
|
|
696
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
689
697
|
msgUpdateClass({ value }: {
|
|
690
698
|
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
691
699
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
692
|
-
|
|
693
|
-
value: import("./iconlake.icon/module").
|
|
700
|
+
msgBurn({ value }: {
|
|
701
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
694
702
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
695
703
|
};
|
|
696
704
|
structure: Record<string, unknown>;
|
package/types.d.ts
CHANGED
|
File without changes
|