@iconlake/client 0.3.0 → 0.4.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 +2062 -1961
- package/dist/index.umd.js +2 -2
- package/package.json +9 -13
- 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 +26 -26
- package/types/cosmos.feegrant.v1beta1/module.d.ts +10 -10
- package/types/cosmos.gov.v1/module.d.ts +22 -22
- package/types/cosmos.gov.v1beta1/module.d.ts +12 -12
- package/types/cosmos.group.v1/module.d.ts +65 -65
- package/types/cosmos.staking.v1beta1/module.d.ts +24 -24
- package/types/cosmos.vesting.v1beta1/module.d.ts +15 -15
- 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 +12 -1
- 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 +138 -130
- package/types.d.ts +0 -0
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
|
-
sendMsgSend({ value, fee, memo }: {
|
|
17
|
-
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
18
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
19
|
-
memo?: string;
|
|
20
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
21
16
|
sendMsgMultiSend({ value, fee, memo }: {
|
|
22
17
|
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
23
18
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
19
|
memo?: string;
|
|
25
20
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
26
|
-
|
|
21
|
+
sendMsgSend({ value, fee, memo }: {
|
|
27
22
|
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
28
|
-
|
|
23
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
|
+
memo?: string;
|
|
25
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
29
26
|
msgMultiSend({ value }: {
|
|
30
27
|
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
31
28
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
29
|
+
msgSend({ value }: {
|
|
30
|
+
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
31
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
32
32
|
};
|
|
33
33
|
structure: Record<string, unknown>;
|
|
34
34
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -38,8 +38,13 @@ 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
|
-
|
|
42
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
41
|
+
sendMsgCreateValidator({ value, fee, memo }: {
|
|
42
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
43
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
|
+
memo?: string;
|
|
45
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
46
|
+
sendMsgBeginRedelegate({ value, fee, memo }: {
|
|
47
|
+
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
43
48
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
49
|
memo?: string;
|
|
45
50
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -58,18 +63,16 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
58
63
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
59
64
|
memo?: string;
|
|
60
65
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
61
|
-
|
|
62
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
66
|
+
sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
|
|
67
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
63
68
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
64
69
|
memo?: string;
|
|
65
70
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
66
|
-
|
|
71
|
+
msgCreateValidator({ value }: {
|
|
67
72
|
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
msgCancelUnbondingDelegation({ value }: {
|
|
72
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
73
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
|
+
msgBeginRedelegate({ value }: {
|
|
75
|
+
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
73
76
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
77
|
msgDelegate({ value }: {
|
|
75
78
|
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
@@ -80,11 +83,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
80
83
|
msgUndelegate({ value }: {
|
|
81
84
|
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
82
85
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
83
|
-
|
|
84
|
-
value: import("./cosmos.staking.v1beta1/module").
|
|
85
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
-
msgCreateValidator({ value }: {
|
|
87
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
86
|
+
msgCancelUnbondingDelegation({ value }: {
|
|
87
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
88
88
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
89
89
|
};
|
|
90
90
|
structure: Record<string, unknown>;
|
|
@@ -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
|
+
sendMsgGrant({ value, fee, memo }: {
|
|
112
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
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
|
+
sendMsgExec({ value, fee, memo }: {
|
|
117
|
+
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
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
|
-
msgExec({ value }: {
|
|
125
|
-
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
126
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
124
|
msgGrant({ value }: {
|
|
128
125
|
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
129
126
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
|
+
msgExec({ value }: {
|
|
128
|
+
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
129
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
130
130
|
};
|
|
131
131
|
structure: Record<string, unknown>;
|
|
132
132
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -186,8 +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
|
+
sendMsgCommunityPoolSpend({ value, fee, memo }: {
|
|
190
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
191
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
|
+
memo?: string;
|
|
193
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
194
|
+
sendMsgWithdrawDelegatorReward({ value, fee, memo }: {
|
|
195
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
191
196
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
197
|
memo?: string;
|
|
193
198
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -196,8 +201,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
196
201
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
197
202
|
memo?: string;
|
|
198
203
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
199
|
-
|
|
200
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
204
|
+
sendMsgSetWithdrawAddress({ value, fee, memo }: {
|
|
205
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
201
206
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
202
207
|
memo?: string;
|
|
203
208
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -206,31 +211,26 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
206
211
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
207
212
|
memo?: string;
|
|
208
213
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
209
|
-
sendMsgWithdrawDelegatorReward({ value, fee, memo }: {
|
|
210
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
211
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
212
|
-
memo?: string;
|
|
213
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
214
214
|
sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
|
|
215
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
|
+
msgCommunityPoolSpend({ value }: {
|
|
220
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
221
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
|
+
msgWithdrawDelegatorReward({ value }: {
|
|
223
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
221
224
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
225
|
msgUpdateParams({ value }: {
|
|
223
226
|
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
224
227
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
225
|
-
|
|
226
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
228
|
+
msgSetWithdrawAddress({ value }: {
|
|
229
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
227
230
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
231
|
msgFundCommunityPool({ value }: {
|
|
229
232
|
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
230
233
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
231
|
-
msgWithdrawDelegatorReward({ value }: {
|
|
232
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
233
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
234
|
msgWithdrawValidatorCommission({ value }: {
|
|
235
235
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
236
236
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
@@ -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,8 +295,8 @@ 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
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
299
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
300
300
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
301
301
|
memo?: string;
|
|
302
302
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -305,25 +305,25 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
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
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
309
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
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").
|
|
319
|
+
msgUpdateParams({ value }: {
|
|
320
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
321
321
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
322
|
msgDeposit({ value }: {
|
|
323
323
|
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
324
324
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
|
-
|
|
326
|
-
value: import("./cosmos.gov.v1/module").
|
|
325
|
+
msgSubmitProposal({ value }: {
|
|
326
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
327
327
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
328
328
|
};
|
|
329
329
|
structure: Record<string, unknown>;
|
|
@@ -339,11 +339,6 @@ 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
|
-
sendMsgVoteWeighted({ value, fee, memo }: {
|
|
343
|
-
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
344
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
345
|
-
memo?: string;
|
|
346
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
347
342
|
sendMsgDeposit({ value, fee, memo }: {
|
|
348
343
|
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
349
344
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -354,18 +349,23 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
354
349
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
355
350
|
memo?: string;
|
|
356
351
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
352
|
+
sendMsgVoteWeighted({ value, fee, memo }: {
|
|
353
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
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
|
-
msgVoteWeighted({ value }: {
|
|
361
|
-
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
362
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
363
360
|
msgDeposit({ value }: {
|
|
364
361
|
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
365
362
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
363
|
msgVote({ value }: {
|
|
367
364
|
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
368
365
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
|
+
msgVoteWeighted({ value }: {
|
|
367
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
368
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
369
369
|
};
|
|
370
370
|
structure: Record<string, unknown>;
|
|
371
371
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -375,13 +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
|
+
sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
|
|
379
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
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
|
+
sendMsgWithdrawProposal({ value, fee, memo }: {
|
|
384
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
385
385
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
386
386
|
memo?: string;
|
|
387
387
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -395,61 +395,61 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
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
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
|
|
404
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
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
|
+
sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
|
|
409
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
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
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: {
|
|
414
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
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
|
+
sendMsgVote({ value, fee, memo }: {
|
|
419
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
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
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: {
|
|
424
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
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
|
+
sendMsgExec({ value, fee, memo }: {
|
|
429
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
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
|
+
sendMsgCreateGroup({ value, fee, memo }: {
|
|
434
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
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
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: {
|
|
439
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
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
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
|
|
444
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
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
|
+
msgUpdateGroupPolicyMetadata({ value }: {
|
|
449
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
450
450
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
451
|
-
|
|
452
|
-
value: import("./cosmos.group.v1/module").
|
|
451
|
+
msgWithdrawProposal({ value }: {
|
|
452
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
453
453
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
454
454
|
msgSubmitProposal({ value }: {
|
|
455
455
|
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
@@ -457,6 +457,21 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
457
457
|
msgLeaveGroup({ value }: {
|
|
458
458
|
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
459
459
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
|
+
msgUpdateGroupAdmin({ value }: {
|
|
461
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
462
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
463
|
+
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
464
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
465
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
466
|
+
msgCreateGroupWithPolicy({ value }: {
|
|
467
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
468
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
+
msgCreateGroupPolicy({ value }: {
|
|
470
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
471
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
|
+
msgVote({ value }: {
|
|
473
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
474
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
475
|
msgUpdateGroupMembers({ value }: {
|
|
461
476
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
462
477
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
@@ -466,27 +481,12 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
466
481
|
msgCreateGroup({ value }: {
|
|
467
482
|
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
468
483
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
-
msgVote({ value }: {
|
|
470
|
-
value: import("./cosmos.group.v1/module").MsgVote;
|
|
471
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
484
|
msgUpdateGroupMetadata({ value }: {
|
|
473
485
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
474
486
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
|
-
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
476
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
477
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
478
487
|
msgUpdateGroupPolicyAdmin({ value }: {
|
|
479
488
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
480
489
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
|
-
msgUpdateGroupPolicyMetadata({ value }: {
|
|
482
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
483
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
|
-
msgWithdrawProposal({ value }: {
|
|
485
|
-
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
486
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
-
msgCreateGroupWithPolicy({ value }: {
|
|
488
|
-
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
489
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
490
490
|
};
|
|
491
491
|
structure: Record<string, unknown>;
|
|
492
492
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -570,8 +570,8 @@ 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
|
-
|
|
574
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
573
|
+
sendMsgCreateVestingAccount({ value, fee, memo }: {
|
|
574
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
575
575
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
576
576
|
memo?: string;
|
|
577
577
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -580,19 +580,19 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
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
|
+
sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
|
|
584
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
585
585
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
586
586
|
memo?: string;
|
|
587
587
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
588
|
-
|
|
589
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
588
|
+
msgCreateVestingAccount({ value }: {
|
|
589
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
590
590
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
591
591
|
msgCreatePermanentLockedAccount({ value }: {
|
|
592
592
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
593
593
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
|
-
|
|
595
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
594
|
+
msgCreatePeriodicVestingAccount({ value }: {
|
|
595
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
596
596
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
597
597
|
};
|
|
598
598
|
structure: Record<string, unknown>;
|
|
@@ -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,6 +676,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
676
676
|
IconlakeIcon: {
|
|
677
677
|
query: import("./iconlake.icon/rest").Api<unknown>;
|
|
678
678
|
tx: {
|
|
679
|
+
sendMsgBurn({ value, fee, memo }: {
|
|
680
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
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;
|
|
@@ -686,6 +691,9 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
686
691
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
687
692
|
memo?: string;
|
|
688
693
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
694
|
+
msgBurn({ value }: {
|
|
695
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
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;
|
package/types.d.ts
CHANGED
|
File without changes
|