@iconlake/client 0.2.1 → 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.
@@ -23,6 +23,13 @@ export interface MsgUpdateClass {
23
23
  }
24
24
  export interface MsgUpdateClassResponse {
25
25
  }
26
+ export interface MsgBurn {
27
+ creator: string;
28
+ classId: string;
29
+ id: string;
30
+ }
31
+ export interface MsgBurnResponse {
32
+ }
26
33
  export declare const MsgMint: {
27
34
  encode(message: MsgMint, writer?: _m0.Writer): _m0.Writer;
28
35
  decode(input: _m0.Reader | Uint8Array, length?: number): MsgMint;
@@ -85,16 +92,40 @@ export declare const MsgUpdateClassResponse: {
85
92
  toJSON(_: MsgUpdateClassResponse): unknown;
86
93
  fromPartial<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(_: I): MsgUpdateClassResponse;
87
94
  };
95
+ export declare const MsgBurn: {
96
+ encode(message: MsgBurn, writer?: _m0.Writer): _m0.Writer;
97
+ decode(input: _m0.Reader | Uint8Array, length?: number): MsgBurn;
98
+ fromJSON(object: any): MsgBurn;
99
+ toJSON(message: MsgBurn): unknown;
100
+ fromPartial<I extends {
101
+ creator?: string;
102
+ classId?: string;
103
+ id?: string;
104
+ } & {
105
+ creator?: string;
106
+ classId?: string;
107
+ id?: string;
108
+ } & { [K in Exclude<keyof I, keyof MsgBurn>]: never; }>(object: I): MsgBurn;
109
+ };
110
+ export declare const MsgBurnResponse: {
111
+ encode(_: MsgBurnResponse, writer?: _m0.Writer): _m0.Writer;
112
+ decode(input: _m0.Reader | Uint8Array, length?: number): MsgBurnResponse;
113
+ fromJSON(_: any): MsgBurnResponse;
114
+ toJSON(_: MsgBurnResponse): unknown;
115
+ fromPartial<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(_: I): MsgBurnResponse;
116
+ };
88
117
  /** Msg defines the Msg service. */
89
118
  export interface Msg {
90
119
  Mint(request: MsgMint): Promise<MsgMintResponse>;
91
120
  UpdateClass(request: MsgUpdateClass): Promise<MsgUpdateClassResponse>;
121
+ Burn(request: MsgBurn): Promise<MsgBurnResponse>;
92
122
  }
93
123
  export declare class MsgClientImpl implements Msg {
94
124
  private readonly rpc;
95
125
  constructor(rpc: Rpc);
96
126
  Mint(request: MsgMint): Promise<MsgMintResponse>;
97
127
  UpdateClass(request: MsgUpdateClass): Promise<MsgUpdateClassResponse>;
128
+ Burn(request: MsgBurn): Promise<MsgBurnResponse>;
98
129
  }
99
130
  interface Rpc {
100
131
  request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
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
- msgSend({ value }: {
21
+ sendMsgSend({ value, fee, memo }: {
27
22
  value: import("./cosmos.bank.v1beta1/module").MsgSend;
28
- }): import("@cosmjs/proto-signing").EncodeObject;
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
- sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
42
- value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
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
- sendMsgBeginRedelegate({ value, fee, memo }: {
62
- value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
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
- sendMsgCreateValidator({ value, fee, memo }: {
71
+ msgCreateValidator({ value }: {
67
72
  value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
68
- fee?: import("@cosmjs/launchpad").StdFee;
69
- memo?: string;
70
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
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
- msgBeginRedelegate({ value }: {
84
- value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
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
- sendMsgExec({ value, fee, memo }: {
112
- value: import("./cosmos.authz.v1beta1/module").MsgExec;
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
- sendMsgGrant({ value, fee, memo }: {
117
- value: import("./cosmos.authz.v1beta1/module").MsgGrant;
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
- sendMsgSetWithdrawAddress({ value, fee, memo }: {
190
- value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
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
- sendMsgCommunityPoolSpend({ value, fee, memo }: {
200
- value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
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
- msgSetWithdrawAddress({ value }: {
220
- value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
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
- msgCommunityPoolSpend({ value }: {
226
- value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
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
- msgGrantAllowance({ value }: {
268
+ sendMsgGrantAllowance({ value, fee, memo }: {
274
269
  value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
275
- }): import("@cosmjs/proto-signing").EncodeObject;
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
- sendMsgSubmitProposal({ value, fee, memo }: {
289
- value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
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
- sendMsgVote({ value, fee, memo }: {
299
- value: import("./cosmos.gov.v1/module").MsgVote;
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
- sendMsgUpdateParams({ value, fee, memo }: {
309
- value: import("./cosmos.gov.v1/module").MsgUpdateParams;
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
- msgSubmitProposal({ value }: {
314
- value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
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
- msgVote({ value }: {
320
- value: import("./cosmos.gov.v1/module").MsgVote;
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
- msgUpdateParams({ value }: {
326
- value: import("./cosmos.gov.v1/module").MsgUpdateParams;
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
- sendMsgUpdateGroupAdmin({ value, fee, memo }: {
379
- value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
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
- sendMsgCreateGroupPolicy({ value, fee, memo }: {
384
- value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
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
- sendMsgUpdateGroupMembers({ value, fee, memo }: {
399
- value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
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
- sendMsgExec({ value, fee, memo }: {
404
- value: import("./cosmos.group.v1/module").MsgExec;
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
- sendMsgCreateGroup({ value, fee, memo }: {
409
- value: import("./cosmos.group.v1/module").MsgCreateGroup;
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
- sendMsgVote({ value, fee, memo }: {
414
- value: import("./cosmos.group.v1/module").MsgVote;
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
- sendMsgUpdateGroupMetadata({ value, fee, memo }: {
419
- value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
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
- sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
424
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
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
- sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
429
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
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
- sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
434
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
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
- sendMsgWithdrawProposal({ value, fee, memo }: {
439
- value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
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
- sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
444
- value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
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
- msgUpdateGroupAdmin({ value }: {
449
- value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
448
+ msgUpdateGroupPolicyMetadata({ value }: {
449
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
450
450
  }): import("@cosmjs/proto-signing").EncodeObject;
451
- msgCreateGroupPolicy({ value }: {
452
- value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
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
- sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
574
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
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
- sendMsgCreateVestingAccount({ value, fee, memo }: {
584
- value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
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
- msgCreatePeriodicVestingAccount({ value }: {
589
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
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
- msgCreateVestingAccount({ value }: {
595
- value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
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>;
@@ -676,8 +676,8 @@ 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;
679
+ sendMsgBurn({ value, fee, memo }: {
680
+ value: import("./iconlake.icon/module").MsgBurn;
681
681
  fee?: import("@cosmjs/launchpad").StdFee;
682
682
  memo?: string;
683
683
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -686,12 +686,20 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
686
686
  fee?: import("@cosmjs/launchpad").StdFee;
687
687
  memo?: string;
688
688
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
689
- msgMint({ value }: {
689
+ sendMsgMint({ value, fee, memo }: {
690
690
  value: import("./iconlake.icon/module").MsgMint;
691
+ fee?: import("@cosmjs/launchpad").StdFee;
692
+ memo?: string;
693
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
694
+ msgBurn({ value }: {
695
+ value: import("./iconlake.icon/module").MsgBurn;
691
696
  }): import("@cosmjs/proto-signing").EncodeObject;
692
697
  msgUpdateClass({ value }: {
693
698
  value: import("./iconlake.icon/module").MsgUpdateClass;
694
699
  }): import("@cosmjs/proto-signing").EncodeObject;
700
+ msgMint({ value }: {
701
+ value: import("./iconlake.icon/module").MsgMint;
702
+ }): import("@cosmjs/proto-signing").EncodeObject;
695
703
  };
696
704
  structure: Record<string, unknown>;
697
705
  registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
package/types.d.ts CHANGED
File without changes