@iconlake/client 1.3.1 → 1.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.
Files changed (51) hide show
  1. package/dist/index.iife.js +4 -4
  2. package/dist/index.js +4 -4
  3. package/dist/index.mjs +35119 -30974
  4. package/dist/index.umd.js +4 -4
  5. package/package.json +2 -2
  6. package/types/amino.d.ts +90 -0
  7. package/types/client.d.ts +1 -0
  8. package/types/cosmos.authz.v1beta1/module.d.ts +15 -15
  9. package/types/cosmos.bank.v1beta1/module.d.ts +10 -10
  10. package/types/cosmos.distribution.v1beta1/module.d.ts +25 -25
  11. package/types/cosmos.feegrant.v1beta1/module.d.ts +10 -10
  12. package/types/cosmos.gov.v1/module.d.ts +21 -21
  13. package/types/cosmos.group.v1/module.d.ts +70 -70
  14. package/types/cosmos.staking.v1beta1/module.d.ts +29 -29
  15. package/types/cosmos.upgrade.v1beta1/module.d.ts +10 -10
  16. package/types/cosmos.vesting.v1beta1/module.d.ts +15 -15
  17. package/types/iconlake.drop/module.d.ts +11 -11
  18. package/types/iconlake.icon/module.d.ts +18 -18
  19. package/types/iconlake.icon/types/iconlake/icon/tx.d.ts +3 -3
  20. package/types/iconlake.lake/index.d.ts +5 -0
  21. package/types/iconlake.lake/module.d.ts +55 -0
  22. package/types/iconlake.lake/registry.d.ts +3 -0
  23. package/types/iconlake.lake/rest.d.ts +183 -0
  24. package/types/iconlake.lake/types/cosmos/base/query/v1beta1/pagination.d.ts +108 -0
  25. package/types/iconlake.lake/types/gogoproto/gogo.d.ts +1 -0
  26. package/types/iconlake.lake/types/google/api/annotations.d.ts +1 -0
  27. package/types/iconlake.lake/types/google/api/http.d.ts +1634 -0
  28. package/types/iconlake.lake/types/google/protobuf/descriptor.d.ts +50957 -0
  29. package/types/iconlake.lake/types/iconlake/lake/allowed_sender.d.ts +27 -0
  30. package/types/iconlake.lake/types/iconlake/lake/genesis.d.ts +43 -0
  31. package/types/iconlake.lake/types/iconlake/lake/params.d.ts +23 -0
  32. package/types/iconlake.lake/types/iconlake/lake/query.d.ts +162 -0
  33. package/types/iconlake.lake/types/iconlake/lake/tx.d.ts +103 -0
  34. package/types/iconlake.lake/types.d.ts +3 -0
  35. package/types/iconlake.license/index.d.ts +5 -0
  36. package/types/iconlake.license/module.d.ts +77 -0
  37. package/types/iconlake.license/registry.d.ts +3 -0
  38. package/types/iconlake.license/rest.d.ts +305 -0
  39. package/types/iconlake.license/types/cosmos/base/query/v1beta1/pagination.d.ts +108 -0
  40. package/types/iconlake.license/types/gogoproto/gogo.d.ts +1 -0
  41. package/types/iconlake.license/types/google/api/annotations.d.ts +1 -0
  42. package/types/iconlake.license/types/google/api/http.d.ts +1634 -0
  43. package/types/iconlake.license/types/google/protobuf/descriptor.d.ts +50957 -0
  44. package/types/iconlake.license/types/iconlake/license/genesis.d.ts +132 -0
  45. package/types/iconlake.license/types/iconlake/license/license_template.d.ts +48 -0
  46. package/types/iconlake.license/types/iconlake/license/params.d.ts +31 -0
  47. package/types/iconlake.license/types/iconlake/license/query.d.ts +581 -0
  48. package/types/iconlake.license/types/iconlake/license/tx.d.ts +246 -0
  49. package/types/iconlake.license/types/iconlake/license/user_license.d.ts +42 -0
  50. package/types/iconlake.license/types.d.ts +4 -0
  51. package/types/index.d.ts +215 -149
package/types/index.d.ts CHANGED
@@ -13,8 +13,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
13
13
  CosmosAuthzV1Beta1: {
14
14
  query: import("./cosmos.authz.v1beta1/rest").Api<unknown>;
15
15
  tx: {
16
- sendMsgExec({ value, fee, memo }: {
17
- value: import("./cosmos.authz.v1beta1/module").MsgExec;
16
+ sendMsgGrant({ value, fee, memo }: {
17
+ value: import("./cosmos.authz.v1beta1/module").MsgGrant;
18
18
  fee?: import("@cosmjs/launchpad").StdFee;
19
19
  memo?: string;
20
20
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -23,19 +23,19 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
23
23
  fee?: import("@cosmjs/launchpad").StdFee;
24
24
  memo?: string;
25
25
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
26
- sendMsgGrant({ value, fee, memo }: {
27
- value: import("./cosmos.authz.v1beta1/module").MsgGrant;
26
+ sendMsgExec({ value, fee, memo }: {
27
+ value: import("./cosmos.authz.v1beta1/module").MsgExec;
28
28
  fee?: import("@cosmjs/launchpad").StdFee;
29
29
  memo?: string;
30
30
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
31
- msgExec({ value }: {
32
- value: import("./cosmos.authz.v1beta1/module").MsgExec;
31
+ msgGrant({ value }: {
32
+ value: import("./cosmos.authz.v1beta1/module").MsgGrant;
33
33
  }): import("@cosmjs/proto-signing").EncodeObject;
34
34
  msgRevoke({ value }: {
35
35
  value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
36
36
  }): import("@cosmjs/proto-signing").EncodeObject;
37
- msgGrant({ value }: {
38
- value: import("./cosmos.authz.v1beta1/module").MsgGrant;
37
+ msgExec({ value }: {
38
+ value: import("./cosmos.authz.v1beta1/module").MsgExec;
39
39
  }): import("@cosmjs/proto-signing").EncodeObject;
40
40
  };
41
41
  structure: Record<string, unknown>;
@@ -46,22 +46,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
46
46
  CosmosBankV1Beta1: {
47
47
  query: import("./cosmos.bank.v1beta1/rest").Api<unknown>;
48
48
  tx: {
49
- sendMsgMultiSend({ value, fee, memo }: {
50
- value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
51
- fee?: import("@cosmjs/launchpad").StdFee;
52
- memo?: string;
53
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
54
49
  sendMsgSend({ value, fee, memo }: {
55
50
  value: import("./cosmos.bank.v1beta1/module").MsgSend;
56
51
  fee?: import("@cosmjs/launchpad").StdFee;
57
52
  memo?: string;
58
53
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
59
- msgMultiSend({ value }: {
54
+ sendMsgMultiSend({ value, fee, memo }: {
60
55
  value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
61
- }): import("@cosmjs/proto-signing").EncodeObject;
56
+ fee?: import("@cosmjs/launchpad").StdFee;
57
+ memo?: string;
58
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
62
59
  msgSend({ value }: {
63
60
  value: import("./cosmos.bank.v1beta1/module").MsgSend;
64
61
  }): import("@cosmjs/proto-signing").EncodeObject;
62
+ msgMultiSend({ value }: {
63
+ value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
64
+ }): import("@cosmjs/proto-signing").EncodeObject;
65
65
  };
66
66
  structure: Record<string, unknown>;
67
67
  registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
@@ -129,6 +129,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
129
129
  CosmosDistributionV1Beta1: {
130
130
  query: import("./cosmos.distribution.v1beta1/rest").Api<unknown>;
131
131
  tx: {
132
+ sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
133
+ value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
134
+ fee?: import("@cosmjs/launchpad").StdFee;
135
+ memo?: string;
136
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
132
137
  sendMsgWithdrawDelegatorReward({ value, fee, memo }: {
133
138
  value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
134
139
  fee?: import("@cosmjs/launchpad").StdFee;
@@ -139,8 +144,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
139
144
  fee?: import("@cosmjs/launchpad").StdFee;
140
145
  memo?: string;
141
146
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
142
- sendMsgFundCommunityPool({ value, fee, memo }: {
143
- value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
147
+ sendMsgUpdateParams({ value, fee, memo }: {
148
+ value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
144
149
  fee?: import("@cosmjs/launchpad").StdFee;
145
150
  memo?: string;
146
151
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -149,33 +154,28 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
149
154
  fee?: import("@cosmjs/launchpad").StdFee;
150
155
  memo?: string;
151
156
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
152
- sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
153
- value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
154
- fee?: import("@cosmjs/launchpad").StdFee;
155
- memo?: string;
156
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
157
- sendMsgUpdateParams({ value, fee, memo }: {
158
- value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
157
+ sendMsgFundCommunityPool({ value, fee, memo }: {
158
+ value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
159
159
  fee?: import("@cosmjs/launchpad").StdFee;
160
160
  memo?: string;
161
161
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
162
+ msgWithdrawValidatorCommission({ value }: {
163
+ value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
164
+ }): import("@cosmjs/proto-signing").EncodeObject;
162
165
  msgWithdrawDelegatorReward({ value }: {
163
166
  value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
164
167
  }): import("@cosmjs/proto-signing").EncodeObject;
165
168
  msgCommunityPoolSpend({ value }: {
166
169
  value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
167
170
  }): import("@cosmjs/proto-signing").EncodeObject;
168
- msgFundCommunityPool({ value }: {
169
- value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
171
+ msgUpdateParams({ value }: {
172
+ value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
170
173
  }): import("@cosmjs/proto-signing").EncodeObject;
171
174
  msgSetWithdrawAddress({ value }: {
172
175
  value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
173
176
  }): import("@cosmjs/proto-signing").EncodeObject;
174
- msgWithdrawValidatorCommission({ value }: {
175
- value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
176
- }): import("@cosmjs/proto-signing").EncodeObject;
177
- msgUpdateParams({ value }: {
178
- value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
177
+ msgFundCommunityPool({ value }: {
178
+ value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
179
179
  }): import("@cosmjs/proto-signing").EncodeObject;
180
180
  };
181
181
  structure: Record<string, unknown>;
@@ -203,22 +203,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
203
203
  CosmosFeegrantV1Beta1: {
204
204
  query: import("./cosmos.feegrant.v1beta1/rest").Api<unknown>;
205
205
  tx: {
206
- sendMsgGrantAllowance({ value, fee, memo }: {
207
- value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
208
- fee?: import("@cosmjs/launchpad").StdFee;
209
- memo?: string;
210
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
211
206
  sendMsgRevokeAllowance({ value, fee, memo }: {
212
207
  value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
213
208
  fee?: import("@cosmjs/launchpad").StdFee;
214
209
  memo?: string;
215
210
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
216
- msgGrantAllowance({ value }: {
211
+ sendMsgGrantAllowance({ value, fee, memo }: {
217
212
  value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
218
- }): import("@cosmjs/proto-signing").EncodeObject;
213
+ fee?: import("@cosmjs/launchpad").StdFee;
214
+ memo?: string;
215
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
219
216
  msgRevokeAllowance({ value }: {
220
217
  value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
221
218
  }): import("@cosmjs/proto-signing").EncodeObject;
219
+ msgGrantAllowance({ value }: {
220
+ value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
221
+ }): import("@cosmjs/proto-signing").EncodeObject;
222
222
  };
223
223
  structure: Record<string, unknown>;
224
224
  registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
@@ -228,23 +228,23 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
228
228
  CosmosGovV1: {
229
229
  query: import("./cosmos.gov.v1/rest").Api<unknown>;
230
230
  tx: {
231
- sendMsgVote({ value, fee, memo }: {
232
- value: import("./cosmos.gov.v1/module").MsgVote;
231
+ sendMsgDeposit({ value, fee, memo }: {
232
+ value: import("./cosmos.gov.v1/module").MsgDeposit;
233
233
  fee?: import("@cosmjs/launchpad").StdFee;
234
234
  memo?: string;
235
235
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
236
- sendMsgUpdateParams({ value, fee, memo }: {
237
- value: import("./cosmos.gov.v1/module").MsgUpdateParams;
236
+ sendMsgVoteWeighted({ value, fee, memo }: {
237
+ value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
238
238
  fee?: import("@cosmjs/launchpad").StdFee;
239
239
  memo?: string;
240
240
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
241
- sendMsgDeposit({ value, fee, memo }: {
242
- value: import("./cosmos.gov.v1/module").MsgDeposit;
241
+ sendMsgVote({ value, fee, memo }: {
242
+ value: import("./cosmos.gov.v1/module").MsgVote;
243
243
  fee?: import("@cosmjs/launchpad").StdFee;
244
244
  memo?: string;
245
245
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
246
- sendMsgVoteWeighted({ value, fee, memo }: {
247
- value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
246
+ sendMsgUpdateParams({ value, fee, memo }: {
247
+ value: import("./cosmos.gov.v1/module").MsgUpdateParams;
248
248
  fee?: import("@cosmjs/launchpad").StdFee;
249
249
  memo?: string;
250
250
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -253,18 +253,18 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
253
253
  fee?: import("@cosmjs/launchpad").StdFee;
254
254
  memo?: string;
255
255
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
256
- msgVote({ value }: {
257
- value: import("./cosmos.gov.v1/module").MsgVote;
258
- }): import("@cosmjs/proto-signing").EncodeObject;
259
- msgUpdateParams({ value }: {
260
- value: import("./cosmos.gov.v1/module").MsgUpdateParams;
261
- }): import("@cosmjs/proto-signing").EncodeObject;
262
256
  msgDeposit({ value }: {
263
257
  value: import("./cosmos.gov.v1/module").MsgDeposit;
264
258
  }): import("@cosmjs/proto-signing").EncodeObject;
265
259
  msgVoteWeighted({ value }: {
266
260
  value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
267
261
  }): import("@cosmjs/proto-signing").EncodeObject;
262
+ msgVote({ value }: {
263
+ value: import("./cosmos.gov.v1/module").MsgVote;
264
+ }): import("@cosmjs/proto-signing").EncodeObject;
265
+ msgUpdateParams({ value }: {
266
+ value: import("./cosmos.gov.v1/module").MsgUpdateParams;
267
+ }): import("@cosmjs/proto-signing").EncodeObject;
268
268
  msgSubmitProposal({ value }: {
269
269
  value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
270
270
  }): import("@cosmjs/proto-signing").EncodeObject;
@@ -318,13 +318,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
318
318
  CosmosGroupV1: {
319
319
  query: import("./cosmos.group.v1/rest").Api<unknown>;
320
320
  tx: {
321
- sendMsgCreateGroupPolicy({ value, fee, memo }: {
322
- value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
321
+ sendMsgUpdateGroupMetadata({ value, fee, memo }: {
322
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
323
323
  fee?: import("@cosmjs/launchpad").StdFee;
324
324
  memo?: string;
325
325
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
326
- sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
327
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
326
+ sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
327
+ value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
328
328
  fee?: import("@cosmjs/launchpad").StdFee;
329
329
  memo?: string;
330
330
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -333,53 +333,53 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
333
333
  fee?: import("@cosmjs/launchpad").StdFee;
334
334
  memo?: string;
335
335
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
336
- sendMsgUpdateGroupMetadata({ value, fee, memo }: {
337
- value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
336
+ sendMsgVote({ value, fee, memo }: {
337
+ value: import("./cosmos.group.v1/module").MsgVote;
338
338
  fee?: import("@cosmjs/launchpad").StdFee;
339
339
  memo?: string;
340
340
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
341
- sendMsgUpdateGroupAdmin({ value, fee, memo }: {
342
- value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
341
+ sendMsgExec({ value, fee, memo }: {
342
+ value: import("./cosmos.group.v1/module").MsgExec;
343
343
  fee?: import("@cosmjs/launchpad").StdFee;
344
344
  memo?: string;
345
345
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
346
- sendMsgUpdateGroupMembers({ value, fee, memo }: {
347
- value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
346
+ sendMsgCreateGroupPolicy({ value, fee, memo }: {
347
+ value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
348
348
  fee?: import("@cosmjs/launchpad").StdFee;
349
349
  memo?: string;
350
350
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
351
- sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
352
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
351
+ sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
352
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
353
353
  fee?: import("@cosmjs/launchpad").StdFee;
354
354
  memo?: string;
355
355
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
356
- sendMsgCreateGroup({ value, fee, memo }: {
357
- value: import("./cosmos.group.v1/module").MsgCreateGroup;
356
+ sendMsgUpdateGroupAdmin({ value, fee, memo }: {
357
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
358
358
  fee?: import("@cosmjs/launchpad").StdFee;
359
359
  memo?: string;
360
360
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
361
- sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
362
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
361
+ sendMsgCreateGroup({ value, fee, memo }: {
362
+ value: import("./cosmos.group.v1/module").MsgCreateGroup;
363
363
  fee?: import("@cosmjs/launchpad").StdFee;
364
364
  memo?: string;
365
365
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
366
- sendMsgSubmitProposal({ value, fee, memo }: {
367
- value: import("./cosmos.group.v1/module").MsgSubmitProposal;
366
+ sendMsgUpdateGroupMembers({ value, fee, memo }: {
367
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
368
368
  fee?: import("@cosmjs/launchpad").StdFee;
369
369
  memo?: string;
370
370
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
371
- sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
372
- value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
371
+ sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
372
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
373
373
  fee?: import("@cosmjs/launchpad").StdFee;
374
374
  memo?: string;
375
375
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
376
- sendMsgExec({ value, fee, memo }: {
377
- value: import("./cosmos.group.v1/module").MsgExec;
376
+ sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
377
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
378
378
  fee?: import("@cosmjs/launchpad").StdFee;
379
379
  memo?: string;
380
380
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
381
- sendMsgVote({ value, fee, memo }: {
382
- value: import("./cosmos.group.v1/module").MsgVote;
381
+ sendMsgSubmitProposal({ value, fee, memo }: {
382
+ value: import("./cosmos.group.v1/module").MsgSubmitProposal;
383
383
  fee?: import("@cosmjs/launchpad").StdFee;
384
384
  memo?: string;
385
385
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -388,45 +388,45 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
388
388
  fee?: import("@cosmjs/launchpad").StdFee;
389
389
  memo?: string;
390
390
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
391
- msgCreateGroupPolicy({ value }: {
392
- value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
391
+ msgUpdateGroupMetadata({ value }: {
392
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
393
393
  }): import("@cosmjs/proto-signing").EncodeObject;
394
- msgUpdateGroupPolicyAdmin({ value }: {
395
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
394
+ msgCreateGroupWithPolicy({ value }: {
395
+ value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
396
396
  }): import("@cosmjs/proto-signing").EncodeObject;
397
397
  msgLeaveGroup({ value }: {
398
398
  value: import("./cosmos.group.v1/module").MsgLeaveGroup;
399
399
  }): import("@cosmjs/proto-signing").EncodeObject;
400
- msgUpdateGroupMetadata({ value }: {
401
- value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
400
+ msgVote({ value }: {
401
+ value: import("./cosmos.group.v1/module").MsgVote;
402
+ }): import("@cosmjs/proto-signing").EncodeObject;
403
+ msgExec({ value }: {
404
+ value: import("./cosmos.group.v1/module").MsgExec;
405
+ }): import("@cosmjs/proto-signing").EncodeObject;
406
+ msgCreateGroupPolicy({ value }: {
407
+ value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
408
+ }): import("@cosmjs/proto-signing").EncodeObject;
409
+ msgUpdateGroupPolicyMetadata({ value }: {
410
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
402
411
  }): import("@cosmjs/proto-signing").EncodeObject;
403
412
  msgUpdateGroupAdmin({ value }: {
404
413
  value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
405
414
  }): import("@cosmjs/proto-signing").EncodeObject;
415
+ msgCreateGroup({ value }: {
416
+ value: import("./cosmos.group.v1/module").MsgCreateGroup;
417
+ }): import("@cosmjs/proto-signing").EncodeObject;
406
418
  msgUpdateGroupMembers({ value }: {
407
419
  value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
408
420
  }): import("@cosmjs/proto-signing").EncodeObject;
421
+ msgUpdateGroupPolicyAdmin({ value }: {
422
+ value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
423
+ }): import("@cosmjs/proto-signing").EncodeObject;
409
424
  msgUpdateGroupPolicyDecisionPolicy({ value }: {
410
425
  value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
411
426
  }): import("@cosmjs/proto-signing").EncodeObject;
412
- msgCreateGroup({ value }: {
413
- value: import("./cosmos.group.v1/module").MsgCreateGroup;
414
- }): import("@cosmjs/proto-signing").EncodeObject;
415
- msgUpdateGroupPolicyMetadata({ value }: {
416
- value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
417
- }): import("@cosmjs/proto-signing").EncodeObject;
418
427
  msgSubmitProposal({ value }: {
419
428
  value: import("./cosmos.group.v1/module").MsgSubmitProposal;
420
429
  }): import("@cosmjs/proto-signing").EncodeObject;
421
- msgCreateGroupWithPolicy({ value }: {
422
- value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
423
- }): import("@cosmjs/proto-signing").EncodeObject;
424
- msgExec({ value }: {
425
- value: import("./cosmos.group.v1/module").MsgExec;
426
- }): import("@cosmjs/proto-signing").EncodeObject;
427
- msgVote({ value }: {
428
- value: import("./cosmos.group.v1/module").MsgVote;
429
- }): import("@cosmjs/proto-signing").EncodeObject;
430
430
  msgWithdrawProposal({ value }: {
431
431
  value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
432
432
  }): import("@cosmjs/proto-signing").EncodeObject;
@@ -480,18 +480,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
480
480
  CosmosStakingV1Beta1: {
481
481
  query: import("./cosmos.staking.v1beta1/rest").Api<unknown>;
482
482
  tx: {
483
- sendMsgDelegate({ value, fee, memo }: {
484
- value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
485
- fee?: import("@cosmjs/launchpad").StdFee;
486
- memo?: string;
487
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
488
- sendMsgBeginRedelegate({ value, fee, memo }: {
489
- value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
483
+ sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
484
+ value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
490
485
  fee?: import("@cosmjs/launchpad").StdFee;
491
486
  memo?: string;
492
487
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
493
- sendMsgEditValidator({ value, fee, memo }: {
494
- value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
488
+ sendMsgDelegate({ value, fee, memo }: {
489
+ value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
495
490
  fee?: import("@cosmjs/launchpad").StdFee;
496
491
  memo?: string;
497
492
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -500,8 +495,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
500
495
  fee?: import("@cosmjs/launchpad").StdFee;
501
496
  memo?: string;
502
497
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
503
- sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
504
- value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
498
+ sendMsgBeginRedelegate({ value, fee, memo }: {
499
+ value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
505
500
  fee?: import("@cosmjs/launchpad").StdFee;
506
501
  memo?: string;
507
502
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -510,24 +505,29 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
510
505
  fee?: import("@cosmjs/launchpad").StdFee;
511
506
  memo?: string;
512
507
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
508
+ sendMsgEditValidator({ value, fee, memo }: {
509
+ value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
510
+ fee?: import("@cosmjs/launchpad").StdFee;
511
+ memo?: string;
512
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
513
+ msgCancelUnbondingDelegation({ value }: {
514
+ value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
515
+ }): import("@cosmjs/proto-signing").EncodeObject;
513
516
  msgDelegate({ value }: {
514
517
  value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
515
518
  }): import("@cosmjs/proto-signing").EncodeObject;
516
- msgBeginRedelegate({ value }: {
517
- value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
518
- }): import("@cosmjs/proto-signing").EncodeObject;
519
- msgEditValidator({ value }: {
520
- value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
521
- }): import("@cosmjs/proto-signing").EncodeObject;
522
519
  msgUndelegate({ value }: {
523
520
  value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
524
521
  }): import("@cosmjs/proto-signing").EncodeObject;
525
- msgCancelUnbondingDelegation({ value }: {
526
- value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
522
+ msgBeginRedelegate({ value }: {
523
+ value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
527
524
  }): import("@cosmjs/proto-signing").EncodeObject;
528
525
  msgCreateValidator({ value }: {
529
526
  value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
530
527
  }): import("@cosmjs/proto-signing").EncodeObject;
528
+ msgEditValidator({ value }: {
529
+ value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
530
+ }): import("@cosmjs/proto-signing").EncodeObject;
531
531
  };
532
532
  structure: Record<string, unknown>;
533
533
  registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
@@ -545,22 +545,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
545
545
  CosmosUpgradeV1Beta1: {
546
546
  query: import("./cosmos.upgrade.v1beta1/rest").Api<unknown>;
547
547
  tx: {
548
- sendMsgSoftwareUpgrade({ value, fee, memo }: {
549
- value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
550
- fee?: import("@cosmjs/launchpad").StdFee;
551
- memo?: string;
552
- }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
553
548
  sendMsgCancelUpgrade({ value, fee, memo }: {
554
549
  value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
555
550
  fee?: import("@cosmjs/launchpad").StdFee;
556
551
  memo?: string;
557
552
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
558
- msgSoftwareUpgrade({ value }: {
553
+ sendMsgSoftwareUpgrade({ value, fee, memo }: {
559
554
  value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
560
- }): import("@cosmjs/proto-signing").EncodeObject;
555
+ fee?: import("@cosmjs/launchpad").StdFee;
556
+ memo?: string;
557
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
561
558
  msgCancelUpgrade({ value }: {
562
559
  value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
563
560
  }): import("@cosmjs/proto-signing").EncodeObject;
561
+ msgSoftwareUpgrade({ value }: {
562
+ value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
563
+ }): import("@cosmjs/proto-signing").EncodeObject;
564
564
  };
565
565
  structure: Record<string, unknown>;
566
566
  registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
@@ -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
- sendMsgCreatePermanentLockedAccount({ value, fee, memo }: {
574
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
573
+ sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
574
+ value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
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
- sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
584
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
583
+ sendMsgCreatePermanentLockedAccount({ value, fee, memo }: {
584
+ value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
585
585
  fee?: import("@cosmjs/launchpad").StdFee;
586
586
  memo?: string;
587
587
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
588
- msgCreatePermanentLockedAccount({ value }: {
589
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
588
+ msgCreatePeriodicVestingAccount({ value }: {
589
+ value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
590
590
  }): import("@cosmjs/proto-signing").EncodeObject;
591
591
  msgCreateVestingAccount({ value }: {
592
592
  value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
593
593
  }): import("@cosmjs/proto-signing").EncodeObject;
594
- msgCreatePeriodicVestingAccount({ value }: {
595
- value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
594
+ msgCreatePermanentLockedAccount({ value }: {
595
+ value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
596
596
  }): import("@cosmjs/proto-signing").EncodeObject;
597
597
  };
598
598
  structure: Record<string, unknown>;
@@ -651,13 +651,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
651
651
  IconlakeDrop: {
652
652
  query: import("./iconlake.drop/rest").Api<unknown>;
653
653
  tx: {
654
- sendMsgUpdateParams({ value, fee, memo }: {
655
- value: import("./iconlake.drop/module").MsgUpdateParams;
654
+ sendMsgInit({ value, fee, memo }: {
655
+ value: import("./iconlake.drop/module").MsgInit;
656
656
  fee?: import("@cosmjs/launchpad").StdFee;
657
657
  memo?: string;
658
658
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
659
- sendMsgInit({ value, fee, memo }: {
660
- value: import("./iconlake.drop/module").MsgInit;
659
+ sendMsgUpdateParams({ value, fee, memo }: {
660
+ value: import("./iconlake.drop/module").MsgUpdateParams;
661
661
  fee?: import("@cosmjs/launchpad").StdFee;
662
662
  memo?: string;
663
663
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -666,12 +666,12 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
666
666
  fee?: import("@cosmjs/launchpad").StdFee;
667
667
  memo?: string;
668
668
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
669
- msgUpdateParams({ value }: {
670
- value: import("./iconlake.drop/module").MsgUpdateParams;
671
- }): import("@cosmjs/proto-signing").EncodeObject;
672
669
  msgInit({ value }: {
673
670
  value: import("./iconlake.drop/module").MsgInit;
674
671
  }): import("@cosmjs/proto-signing").EncodeObject;
672
+ msgUpdateParams({ value }: {
673
+ value: import("./iconlake.drop/module").MsgUpdateParams;
674
+ }): import("@cosmjs/proto-signing").EncodeObject;
675
675
  msgMint({ value }: {
676
676
  value: import("./iconlake.drop/module").MsgMint;
677
677
  }): import("@cosmjs/proto-signing").EncodeObject;
@@ -689,13 +689,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
689
689
  fee?: import("@cosmjs/launchpad").StdFee;
690
690
  memo?: string;
691
691
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
692
- sendMsgUpdateCreator({ value, fee, memo }: {
693
- value: import("./iconlake.icon/module").MsgUpdateCreator;
692
+ sendMsgDeleteCreator({ value, fee, memo }: {
693
+ value: import("./iconlake.icon/module").MsgDeleteCreator;
694
694
  fee?: import("@cosmjs/launchpad").StdFee;
695
695
  memo?: string;
696
696
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
697
- sendMsgDeleteCreator({ value, fee, memo }: {
698
- value: import("./iconlake.icon/module").MsgDeleteCreator;
697
+ sendMsgMint({ value, fee, memo }: {
698
+ value: import("./iconlake.icon/module").MsgMint;
699
699
  fee?: import("@cosmjs/launchpad").StdFee;
700
700
  memo?: string;
701
701
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
@@ -704,25 +704,91 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
704
704
  fee?: import("@cosmjs/launchpad").StdFee;
705
705
  memo?: string;
706
706
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
707
- sendMsgMint({ value, fee, memo }: {
708
- value: import("./iconlake.icon/module").MsgMint;
707
+ sendMsgUpdateCreator({ value, fee, memo }: {
708
+ value: import("./iconlake.icon/module").MsgUpdateCreator;
709
709
  fee?: import("@cosmjs/launchpad").StdFee;
710
710
  memo?: string;
711
711
  }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
712
712
  msgUpdateClass({ value }: {
713
713
  value: import("./iconlake.icon/module").MsgUpdateClass;
714
714
  }): import("@cosmjs/proto-signing").EncodeObject;
715
- msgUpdateCreator({ value }: {
716
- value: import("./iconlake.icon/module").MsgUpdateCreator;
717
- }): import("@cosmjs/proto-signing").EncodeObject;
718
715
  msgDeleteCreator({ value }: {
719
716
  value: import("./iconlake.icon/module").MsgDeleteCreator;
720
717
  }): import("@cosmjs/proto-signing").EncodeObject;
718
+ msgMint({ value }: {
719
+ value: import("./iconlake.icon/module").MsgMint;
720
+ }): import("@cosmjs/proto-signing").EncodeObject;
721
721
  msgBurn({ value }: {
722
722
  value: import("./iconlake.icon/module").MsgBurn;
723
723
  }): import("@cosmjs/proto-signing").EncodeObject;
724
- msgMint({ value }: {
725
- value: import("./iconlake.icon/module").MsgMint;
724
+ msgUpdateCreator({ value }: {
725
+ value: import("./iconlake.icon/module").MsgUpdateCreator;
726
+ }): import("@cosmjs/proto-signing").EncodeObject;
727
+ };
728
+ structure: Record<string, unknown>;
729
+ registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
730
+ updateTX(client: IgniteClient): void;
731
+ };
732
+ } & {
733
+ IconlakeLake: {
734
+ query: import("./iconlake.lake/rest").Api<unknown>;
735
+ tx: {
736
+ sendMsgCreateAllowedSender({ value, fee, memo }: {
737
+ value: import("./iconlake.lake/module").MsgCreateAllowedSender;
738
+ fee?: import("@cosmjs/launchpad").StdFee;
739
+ memo?: string;
740
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
741
+ sendMsgDeleteAllowedSender({ value, fee, memo }: {
742
+ value: import("./iconlake.lake/module").MsgDeleteAllowedSender;
743
+ fee?: import("@cosmjs/launchpad").StdFee;
744
+ memo?: string;
745
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
746
+ msgCreateAllowedSender({ value }: {
747
+ value: import("./iconlake.lake/module").MsgCreateAllowedSender;
748
+ }): import("@cosmjs/proto-signing").EncodeObject;
749
+ msgDeleteAllowedSender({ value }: {
750
+ value: import("./iconlake.lake/module").MsgDeleteAllowedSender;
751
+ }): import("@cosmjs/proto-signing").EncodeObject;
752
+ };
753
+ structure: Record<string, unknown>;
754
+ registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
755
+ updateTX(client: IgniteClient): void;
756
+ };
757
+ } & {
758
+ IconlakeLicense: {
759
+ query: import("./iconlake.license/rest").Api<unknown>;
760
+ tx: {
761
+ sendMsgUpdateLicenseTemplate({ value, fee, memo }: {
762
+ value: import("./iconlake.license/module").MsgUpdateLicenseTemplate;
763
+ fee?: import("@cosmjs/launchpad").StdFee;
764
+ memo?: string;
765
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
766
+ sendMsgCreateLicenseTemplate({ value, fee, memo }: {
767
+ value: import("./iconlake.license/module").MsgCreateLicenseTemplate;
768
+ fee?: import("@cosmjs/launchpad").StdFee;
769
+ memo?: string;
770
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
771
+ sendMsgBuyLicense({ value, fee, memo }: {
772
+ value: import("./iconlake.license/module").MsgBuyLicense;
773
+ fee?: import("@cosmjs/launchpad").StdFee;
774
+ memo?: string;
775
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
776
+ sendMsgDeleteLicenseTemplate({ value, fee, memo }: {
777
+ value: import("./iconlake.license/module").MsgDeleteLicenseTemplate;
778
+ fee?: import("@cosmjs/launchpad").StdFee;
779
+ memo?: string;
780
+ }): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
781
+ msgUpdateLicenseTemplate({ value }: {
782
+ value: import("./iconlake.license/module").MsgUpdateLicenseTemplate;
783
+ }): import("@cosmjs/proto-signing").EncodeObject;
784
+ msgCreateLicenseTemplate({ value }: {
785
+ value: import("./iconlake.license/module").MsgCreateLicenseTemplate;
786
+ }): import("@cosmjs/proto-signing").EncodeObject;
787
+ msgBuyLicense({ value }: {
788
+ value: import("./iconlake.license/module").MsgBuyLicense;
789
+ }): import("@cosmjs/proto-signing").EncodeObject;
790
+ msgDeleteLicenseTemplate({ value }: {
791
+ value: import("./iconlake.license/module").MsgDeleteLicenseTemplate;
726
792
  }): import("@cosmjs/proto-signing").EncodeObject;
727
793
  };
728
794
  structure: Record<string, unknown>;