coreum-js 2.5.5 → 2.5.7

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 (86) hide show
  1. package/README.md +1 -0
  2. package/dist/main/client/index.js +4 -4
  3. package/dist/main/coreum/asset/nft/v1/nft.d.ts +1 -1
  4. package/dist/main/coreum/asset/nft/v1/nft.js +2 -2
  5. package/dist/main/coreum/asset/nft/v1/query.d.ts +2 -2
  6. package/dist/main/coreum/asset/nft/v1/tx.d.ts +1 -1
  7. package/dist/main/coreum/asset/nft/v1/tx.js +2 -2
  8. package/dist/main/coreum/index.d.ts +2 -2
  9. package/dist/main/coreum/nft/v1beta1/genesis.d.ts +6 -6
  10. package/dist/main/coreum/nft/v1beta1/nft.d.ts +1 -1
  11. package/dist/main/coreum/nft/v1beta1/nft.js +2 -2
  12. package/dist/main/coreum/nft/v1beta1/query.d.ts +8 -8
  13. package/dist/main/cosmos/base/query/v1beta1/pagination.js +29 -11
  14. package/dist/main/{coreum/google → google}/api/annotations.js +1 -1
  15. package/dist/main/google/api/http.js +329 -0
  16. package/dist/main/google/protobuf/any.js +122 -0
  17. package/dist/main/types/core.d.ts +2 -0
  18. package/dist/main/types/core.js +1 -1
  19. package/dist/main/wasm/v1/authz.d.ts +570 -0
  20. package/dist/main/wasm/v1/authz.js +603 -0
  21. package/dist/main/wasm/v1/extensions/wasm.d.ts +17 -0
  22. package/dist/main/wasm/v1/extensions/wasm.js +48 -0
  23. package/dist/main/wasm/v1/genesis.d.ts +1059 -0
  24. package/dist/main/wasm/v1/genesis.js +427 -0
  25. package/dist/main/wasm/v1/ibc.d.ts +102 -0
  26. package/dist/main/wasm/v1/ibc.js +250 -0
  27. package/dist/main/wasm/v1/index.d.ts +308 -0
  28. package/dist/main/wasm/v1/index.js +87 -0
  29. package/dist/main/wasm/v1/pagination.d.ts +128 -0
  30. package/dist/main/wasm/v1/pagination.js +228 -0
  31. package/dist/main/wasm/v1/proposal.d.ts +1023 -0
  32. package/dist/main/wasm/v1/proposal.js +1638 -0
  33. package/dist/main/wasm/v1/query.d.ts +1443 -0
  34. package/dist/main/wasm/v1/query.js +1699 -0
  35. package/dist/main/wasm/v1/tx.d.ts +1167 -0
  36. package/dist/main/wasm/v1/tx.js +2088 -0
  37. package/dist/main/wasm/v1/types.d.ts +417 -0
  38. package/dist/main/wasm/v1/types.js +856 -0
  39. package/dist/module/client/index.js +4 -4
  40. package/dist/module/coreum/asset/nft/v1/nft.d.ts +1 -1
  41. package/dist/module/coreum/asset/nft/v1/nft.js +2 -2
  42. package/dist/module/coreum/asset/nft/v1/query.d.ts +2 -2
  43. package/dist/module/coreum/asset/nft/v1/tx.d.ts +1 -1
  44. package/dist/module/coreum/asset/nft/v1/tx.js +2 -2
  45. package/dist/module/coreum/index.d.ts +2 -2
  46. package/dist/module/coreum/nft/v1beta1/genesis.d.ts +6 -6
  47. package/dist/module/coreum/nft/v1beta1/nft.d.ts +1 -1
  48. package/dist/module/coreum/nft/v1beta1/nft.js +2 -2
  49. package/dist/module/coreum/nft/v1beta1/query.d.ts +8 -8
  50. package/dist/module/cosmos/base/query/v1beta1/pagination.js +29 -11
  51. package/dist/module/{coreum/google → google}/api/annotations.js +1 -1
  52. package/dist/module/google/api/http.js +320 -0
  53. package/dist/module/google/protobuf/any.js +115 -0
  54. package/dist/module/types/core.d.ts +2 -0
  55. package/dist/module/types/core.js +1 -1
  56. package/dist/module/wasm/v1/authz.d.ts +570 -0
  57. package/dist/module/wasm/v1/authz.js +589 -0
  58. package/dist/module/wasm/v1/extensions/wasm.d.ts +17 -0
  59. package/dist/module/wasm/v1/extensions/wasm.js +44 -0
  60. package/dist/module/wasm/v1/genesis.d.ts +1059 -0
  61. package/dist/module/wasm/v1/genesis.js +417 -0
  62. package/dist/module/wasm/v1/ibc.d.ts +102 -0
  63. package/dist/module/wasm/v1/ibc.js +241 -0
  64. package/dist/module/wasm/v1/index.d.ts +308 -0
  65. package/dist/module/wasm/v1/index.js +84 -0
  66. package/dist/module/wasm/v1/pagination.d.ts +128 -0
  67. package/dist/module/wasm/v1/pagination.js +220 -0
  68. package/dist/module/wasm/v1/proposal.d.ts +1023 -0
  69. package/dist/module/wasm/v1/proposal.js +1619 -0
  70. package/dist/module/wasm/v1/query.d.ts +1443 -0
  71. package/dist/module/wasm/v1/query.js +1675 -0
  72. package/dist/module/wasm/v1/tx.d.ts +1167 -0
  73. package/dist/module/wasm/v1/tx.js +2063 -0
  74. package/dist/module/wasm/v1/types.d.ts +417 -0
  75. package/dist/module/wasm/v1/types.js +838 -0
  76. package/package.json +2 -1
  77. package/dist/main/coreum/google/api/http.js +0 -329
  78. package/dist/main/coreum/google/protobuf/any.js +0 -122
  79. package/dist/module/coreum/google/api/http.js +0 -320
  80. package/dist/module/coreum/google/protobuf/any.js +0 -115
  81. /package/dist/main/{coreum/google → google}/api/annotations.d.ts +0 -0
  82. /package/dist/main/{coreum/google → google}/api/http.d.ts +0 -0
  83. /package/dist/main/{coreum/google → google}/protobuf/any.d.ts +0 -0
  84. /package/dist/module/{coreum/google → google}/api/annotations.d.ts +0 -0
  85. /package/dist/module/{coreum/google → google}/api/http.d.ts +0 -0
  86. /package/dist/module/{coreum/google → google}/protobuf/any.d.ts +0 -0
@@ -0,0 +1,570 @@
1
+ import _m0 from "protobufjs/minimal";
2
+ import { Coin } from "../../cosmos/base/v1beta1/coin";
3
+ import { Any } from "../../google/protobuf/any";
4
+ export declare const protobufPackage = "cosmwasm.wasm.v1";
5
+ /**
6
+ * ContractExecutionAuthorization defines authorization for wasm execute.
7
+ * Since: wasmd 0.30
8
+ */
9
+ export interface ContractExecutionAuthorization {
10
+ /** Grants for contract executions */
11
+ grants: ContractGrant[];
12
+ }
13
+ /**
14
+ * ContractMigrationAuthorization defines authorization for wasm contract
15
+ * migration. Since: wasmd 0.30
16
+ */
17
+ export interface ContractMigrationAuthorization {
18
+ /** Grants for contract migrations */
19
+ grants: ContractGrant[];
20
+ }
21
+ /**
22
+ * ContractGrant a granted permission for a single contract
23
+ * Since: wasmd 0.30
24
+ */
25
+ export interface ContractGrant {
26
+ /** Contract is the bech32 address of the smart contract */
27
+ contract: string;
28
+ /**
29
+ * Limit defines execution limits that are enforced and updated when the grant
30
+ * is applied. When the limit lapsed the grant is removed.
31
+ */
32
+ limit: Any | undefined;
33
+ /**
34
+ * Filter define more fine-grained control on the message payload passed
35
+ * to the contract in the operation. When no filter applies on execution, the
36
+ * operation is prohibited.
37
+ */
38
+ filter: Any | undefined;
39
+ }
40
+ /**
41
+ * MaxCallsLimit limited number of calls to the contract. No funds transferable.
42
+ * Since: wasmd 0.30
43
+ */
44
+ export interface MaxCallsLimit {
45
+ /** Remaining number that is decremented on each execution */
46
+ remaining: number;
47
+ }
48
+ /**
49
+ * MaxFundsLimit defines the maximal amounts that can be sent to the contract.
50
+ * Since: wasmd 0.30
51
+ */
52
+ export interface MaxFundsLimit {
53
+ /** Amounts is the maximal amount of tokens transferable to the contract. */
54
+ amounts: Coin[];
55
+ }
56
+ /**
57
+ * CombinedLimit defines the maximal amounts that can be sent to a contract and
58
+ * the maximal number of calls executable. Both need to remain >0 to be valid.
59
+ * Since: wasmd 0.30
60
+ */
61
+ export interface CombinedLimit {
62
+ /** Remaining number that is decremented on each execution */
63
+ callsRemaining: number;
64
+ /** Amounts is the maximal amount of tokens transferable to the contract. */
65
+ amounts: Coin[];
66
+ }
67
+ /**
68
+ * AllowAllMessagesFilter is a wildcard to allow any type of contract payload
69
+ * message.
70
+ * Since: wasmd 0.30
71
+ */
72
+ export interface AllowAllMessagesFilter {
73
+ }
74
+ /**
75
+ * AcceptedMessageKeysFilter accept only the specific contract message keys in
76
+ * the json object to be executed.
77
+ * Since: wasmd 0.30
78
+ */
79
+ export interface AcceptedMessageKeysFilter {
80
+ /** Messages is the list of unique keys */
81
+ keys: string[];
82
+ }
83
+ /**
84
+ * AcceptedMessagesFilter accept only the specific raw contract messages to be
85
+ * executed.
86
+ * Since: wasmd 0.30
87
+ */
88
+ export interface AcceptedMessagesFilter {
89
+ /** Messages is the list of raw contract messages */
90
+ messages: Uint8Array[];
91
+ }
92
+ export declare const ContractExecutionAuthorization: {
93
+ encode(message: ContractExecutionAuthorization, writer?: _m0.Writer): _m0.Writer;
94
+ decode(input: _m0.Reader | Uint8Array, length?: number): ContractExecutionAuthorization;
95
+ fromJSON(object: any): ContractExecutionAuthorization;
96
+ toJSON(message: ContractExecutionAuthorization): unknown;
97
+ create<I extends {
98
+ grants?: {
99
+ contract?: string;
100
+ limit?: {
101
+ typeUrl?: string;
102
+ value?: Uint8Array;
103
+ };
104
+ filter?: {
105
+ typeUrl?: string;
106
+ value?: Uint8Array;
107
+ };
108
+ }[];
109
+ } & {
110
+ grants?: {
111
+ contract?: string;
112
+ limit?: {
113
+ typeUrl?: string;
114
+ value?: Uint8Array;
115
+ };
116
+ filter?: {
117
+ typeUrl?: string;
118
+ value?: Uint8Array;
119
+ };
120
+ }[] & ({
121
+ contract?: string;
122
+ limit?: {
123
+ typeUrl?: string;
124
+ value?: Uint8Array;
125
+ };
126
+ filter?: {
127
+ typeUrl?: string;
128
+ value?: Uint8Array;
129
+ };
130
+ } & {
131
+ contract?: string;
132
+ limit?: {
133
+ typeUrl?: string;
134
+ value?: Uint8Array;
135
+ } & {
136
+ typeUrl?: string;
137
+ value?: Uint8Array;
138
+ } & { [K in Exclude<keyof I["grants"][number]["limit"], keyof Any>]: never; };
139
+ filter?: {
140
+ typeUrl?: string;
141
+ value?: Uint8Array;
142
+ } & {
143
+ typeUrl?: string;
144
+ value?: Uint8Array;
145
+ } & { [K_1 in Exclude<keyof I["grants"][number]["filter"], keyof Any>]: never; };
146
+ } & { [K_2 in Exclude<keyof I["grants"][number], keyof ContractGrant>]: never; })[] & { [K_3 in Exclude<keyof I["grants"], keyof {
147
+ contract?: string;
148
+ limit?: {
149
+ typeUrl?: string;
150
+ value?: Uint8Array;
151
+ };
152
+ filter?: {
153
+ typeUrl?: string;
154
+ value?: Uint8Array;
155
+ };
156
+ }[]>]: never; };
157
+ } & { [K_4 in Exclude<keyof I, "grants">]: never; }>(base?: I): ContractExecutionAuthorization;
158
+ fromPartial<I_1 extends {
159
+ grants?: {
160
+ contract?: string;
161
+ limit?: {
162
+ typeUrl?: string;
163
+ value?: Uint8Array;
164
+ };
165
+ filter?: {
166
+ typeUrl?: string;
167
+ value?: Uint8Array;
168
+ };
169
+ }[];
170
+ } & {
171
+ grants?: {
172
+ contract?: string;
173
+ limit?: {
174
+ typeUrl?: string;
175
+ value?: Uint8Array;
176
+ };
177
+ filter?: {
178
+ typeUrl?: string;
179
+ value?: Uint8Array;
180
+ };
181
+ }[] & ({
182
+ contract?: string;
183
+ limit?: {
184
+ typeUrl?: string;
185
+ value?: Uint8Array;
186
+ };
187
+ filter?: {
188
+ typeUrl?: string;
189
+ value?: Uint8Array;
190
+ };
191
+ } & {
192
+ contract?: string;
193
+ limit?: {
194
+ typeUrl?: string;
195
+ value?: Uint8Array;
196
+ } & {
197
+ typeUrl?: string;
198
+ value?: Uint8Array;
199
+ } & { [K_5 in Exclude<keyof I_1["grants"][number]["limit"], keyof Any>]: never; };
200
+ filter?: {
201
+ typeUrl?: string;
202
+ value?: Uint8Array;
203
+ } & {
204
+ typeUrl?: string;
205
+ value?: Uint8Array;
206
+ } & { [K_6 in Exclude<keyof I_1["grants"][number]["filter"], keyof Any>]: never; };
207
+ } & { [K_7 in Exclude<keyof I_1["grants"][number], keyof ContractGrant>]: never; })[] & { [K_8 in Exclude<keyof I_1["grants"], keyof {
208
+ contract?: string;
209
+ limit?: {
210
+ typeUrl?: string;
211
+ value?: Uint8Array;
212
+ };
213
+ filter?: {
214
+ typeUrl?: string;
215
+ value?: Uint8Array;
216
+ };
217
+ }[]>]: never; };
218
+ } & { [K_9 in Exclude<keyof I_1, "grants">]: never; }>(object: I_1): ContractExecutionAuthorization;
219
+ };
220
+ export declare const ContractMigrationAuthorization: {
221
+ encode(message: ContractMigrationAuthorization, writer?: _m0.Writer): _m0.Writer;
222
+ decode(input: _m0.Reader | Uint8Array, length?: number): ContractMigrationAuthorization;
223
+ fromJSON(object: any): ContractMigrationAuthorization;
224
+ toJSON(message: ContractMigrationAuthorization): unknown;
225
+ create<I extends {
226
+ grants?: {
227
+ contract?: string;
228
+ limit?: {
229
+ typeUrl?: string;
230
+ value?: Uint8Array;
231
+ };
232
+ filter?: {
233
+ typeUrl?: string;
234
+ value?: Uint8Array;
235
+ };
236
+ }[];
237
+ } & {
238
+ grants?: {
239
+ contract?: string;
240
+ limit?: {
241
+ typeUrl?: string;
242
+ value?: Uint8Array;
243
+ };
244
+ filter?: {
245
+ typeUrl?: string;
246
+ value?: Uint8Array;
247
+ };
248
+ }[] & ({
249
+ contract?: string;
250
+ limit?: {
251
+ typeUrl?: string;
252
+ value?: Uint8Array;
253
+ };
254
+ filter?: {
255
+ typeUrl?: string;
256
+ value?: Uint8Array;
257
+ };
258
+ } & {
259
+ contract?: string;
260
+ limit?: {
261
+ typeUrl?: string;
262
+ value?: Uint8Array;
263
+ } & {
264
+ typeUrl?: string;
265
+ value?: Uint8Array;
266
+ } & { [K in Exclude<keyof I["grants"][number]["limit"], keyof Any>]: never; };
267
+ filter?: {
268
+ typeUrl?: string;
269
+ value?: Uint8Array;
270
+ } & {
271
+ typeUrl?: string;
272
+ value?: Uint8Array;
273
+ } & { [K_1 in Exclude<keyof I["grants"][number]["filter"], keyof Any>]: never; };
274
+ } & { [K_2 in Exclude<keyof I["grants"][number], keyof ContractGrant>]: never; })[] & { [K_3 in Exclude<keyof I["grants"], keyof {
275
+ contract?: string;
276
+ limit?: {
277
+ typeUrl?: string;
278
+ value?: Uint8Array;
279
+ };
280
+ filter?: {
281
+ typeUrl?: string;
282
+ value?: Uint8Array;
283
+ };
284
+ }[]>]: never; };
285
+ } & { [K_4 in Exclude<keyof I, "grants">]: never; }>(base?: I): ContractMigrationAuthorization;
286
+ fromPartial<I_1 extends {
287
+ grants?: {
288
+ contract?: string;
289
+ limit?: {
290
+ typeUrl?: string;
291
+ value?: Uint8Array;
292
+ };
293
+ filter?: {
294
+ typeUrl?: string;
295
+ value?: Uint8Array;
296
+ };
297
+ }[];
298
+ } & {
299
+ grants?: {
300
+ contract?: string;
301
+ limit?: {
302
+ typeUrl?: string;
303
+ value?: Uint8Array;
304
+ };
305
+ filter?: {
306
+ typeUrl?: string;
307
+ value?: Uint8Array;
308
+ };
309
+ }[] & ({
310
+ contract?: string;
311
+ limit?: {
312
+ typeUrl?: string;
313
+ value?: Uint8Array;
314
+ };
315
+ filter?: {
316
+ typeUrl?: string;
317
+ value?: Uint8Array;
318
+ };
319
+ } & {
320
+ contract?: string;
321
+ limit?: {
322
+ typeUrl?: string;
323
+ value?: Uint8Array;
324
+ } & {
325
+ typeUrl?: string;
326
+ value?: Uint8Array;
327
+ } & { [K_5 in Exclude<keyof I_1["grants"][number]["limit"], keyof Any>]: never; };
328
+ filter?: {
329
+ typeUrl?: string;
330
+ value?: Uint8Array;
331
+ } & {
332
+ typeUrl?: string;
333
+ value?: Uint8Array;
334
+ } & { [K_6 in Exclude<keyof I_1["grants"][number]["filter"], keyof Any>]: never; };
335
+ } & { [K_7 in Exclude<keyof I_1["grants"][number], keyof ContractGrant>]: never; })[] & { [K_8 in Exclude<keyof I_1["grants"], keyof {
336
+ contract?: string;
337
+ limit?: {
338
+ typeUrl?: string;
339
+ value?: Uint8Array;
340
+ };
341
+ filter?: {
342
+ typeUrl?: string;
343
+ value?: Uint8Array;
344
+ };
345
+ }[]>]: never; };
346
+ } & { [K_9 in Exclude<keyof I_1, "grants">]: never; }>(object: I_1): ContractMigrationAuthorization;
347
+ };
348
+ export declare const ContractGrant: {
349
+ encode(message: ContractGrant, writer?: _m0.Writer): _m0.Writer;
350
+ decode(input: _m0.Reader | Uint8Array, length?: number): ContractGrant;
351
+ fromJSON(object: any): ContractGrant;
352
+ toJSON(message: ContractGrant): unknown;
353
+ create<I extends {
354
+ contract?: string;
355
+ limit?: {
356
+ typeUrl?: string;
357
+ value?: Uint8Array;
358
+ };
359
+ filter?: {
360
+ typeUrl?: string;
361
+ value?: Uint8Array;
362
+ };
363
+ } & {
364
+ contract?: string;
365
+ limit?: {
366
+ typeUrl?: string;
367
+ value?: Uint8Array;
368
+ } & {
369
+ typeUrl?: string;
370
+ value?: Uint8Array;
371
+ } & { [K in Exclude<keyof I["limit"], keyof Any>]: never; };
372
+ filter?: {
373
+ typeUrl?: string;
374
+ value?: Uint8Array;
375
+ } & {
376
+ typeUrl?: string;
377
+ value?: Uint8Array;
378
+ } & { [K_1 in Exclude<keyof I["filter"], keyof Any>]: never; };
379
+ } & { [K_2 in Exclude<keyof I, keyof ContractGrant>]: never; }>(base?: I): ContractGrant;
380
+ fromPartial<I_1 extends {
381
+ contract?: string;
382
+ limit?: {
383
+ typeUrl?: string;
384
+ value?: Uint8Array;
385
+ };
386
+ filter?: {
387
+ typeUrl?: string;
388
+ value?: Uint8Array;
389
+ };
390
+ } & {
391
+ contract?: string;
392
+ limit?: {
393
+ typeUrl?: string;
394
+ value?: Uint8Array;
395
+ } & {
396
+ typeUrl?: string;
397
+ value?: Uint8Array;
398
+ } & { [K_3 in Exclude<keyof I_1["limit"], keyof Any>]: never; };
399
+ filter?: {
400
+ typeUrl?: string;
401
+ value?: Uint8Array;
402
+ } & {
403
+ typeUrl?: string;
404
+ value?: Uint8Array;
405
+ } & { [K_4 in Exclude<keyof I_1["filter"], keyof Any>]: never; };
406
+ } & { [K_5 in Exclude<keyof I_1, keyof ContractGrant>]: never; }>(object: I_1): ContractGrant;
407
+ };
408
+ export declare const MaxCallsLimit: {
409
+ encode(message: MaxCallsLimit, writer?: _m0.Writer): _m0.Writer;
410
+ decode(input: _m0.Reader | Uint8Array, length?: number): MaxCallsLimit;
411
+ fromJSON(object: any): MaxCallsLimit;
412
+ toJSON(message: MaxCallsLimit): unknown;
413
+ create<I extends {
414
+ remaining?: number;
415
+ } & {
416
+ remaining?: number;
417
+ } & { [K in Exclude<keyof I, "remaining">]: never; }>(base?: I): MaxCallsLimit;
418
+ fromPartial<I_1 extends {
419
+ remaining?: number;
420
+ } & {
421
+ remaining?: number;
422
+ } & { [K_1 in Exclude<keyof I_1, "remaining">]: never; }>(object: I_1): MaxCallsLimit;
423
+ };
424
+ export declare const MaxFundsLimit: {
425
+ encode(message: MaxFundsLimit, writer?: _m0.Writer): _m0.Writer;
426
+ decode(input: _m0.Reader | Uint8Array, length?: number): MaxFundsLimit;
427
+ fromJSON(object: any): MaxFundsLimit;
428
+ toJSON(message: MaxFundsLimit): unknown;
429
+ create<I extends {
430
+ amounts?: {
431
+ denom?: string;
432
+ amount?: string;
433
+ }[];
434
+ } & {
435
+ amounts?: {
436
+ denom?: string;
437
+ amount?: string;
438
+ }[] & ({
439
+ denom?: string;
440
+ amount?: string;
441
+ } & {
442
+ denom?: string;
443
+ amount?: string;
444
+ } & { [K in Exclude<keyof I["amounts"][number], keyof Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amounts"], keyof {
445
+ denom?: string;
446
+ amount?: string;
447
+ }[]>]: never; };
448
+ } & { [K_2 in Exclude<keyof I, "amounts">]: never; }>(base?: I): MaxFundsLimit;
449
+ fromPartial<I_1 extends {
450
+ amounts?: {
451
+ denom?: string;
452
+ amount?: string;
453
+ }[];
454
+ } & {
455
+ amounts?: {
456
+ denom?: string;
457
+ amount?: string;
458
+ }[] & ({
459
+ denom?: string;
460
+ amount?: string;
461
+ } & {
462
+ denom?: string;
463
+ amount?: string;
464
+ } & { [K_3 in Exclude<keyof I_1["amounts"][number], keyof Coin>]: never; })[] & { [K_4 in Exclude<keyof I_1["amounts"], keyof {
465
+ denom?: string;
466
+ amount?: string;
467
+ }[]>]: never; };
468
+ } & { [K_5 in Exclude<keyof I_1, "amounts">]: never; }>(object: I_1): MaxFundsLimit;
469
+ };
470
+ export declare const CombinedLimit: {
471
+ encode(message: CombinedLimit, writer?: _m0.Writer): _m0.Writer;
472
+ decode(input: _m0.Reader | Uint8Array, length?: number): CombinedLimit;
473
+ fromJSON(object: any): CombinedLimit;
474
+ toJSON(message: CombinedLimit): unknown;
475
+ create<I extends {
476
+ callsRemaining?: number;
477
+ amounts?: {
478
+ denom?: string;
479
+ amount?: string;
480
+ }[];
481
+ } & {
482
+ callsRemaining?: number;
483
+ amounts?: {
484
+ denom?: string;
485
+ amount?: string;
486
+ }[] & ({
487
+ denom?: string;
488
+ amount?: string;
489
+ } & {
490
+ denom?: string;
491
+ amount?: string;
492
+ } & { [K in Exclude<keyof I["amounts"][number], keyof Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amounts"], keyof {
493
+ denom?: string;
494
+ amount?: string;
495
+ }[]>]: never; };
496
+ } & { [K_2 in Exclude<keyof I, keyof CombinedLimit>]: never; }>(base?: I): CombinedLimit;
497
+ fromPartial<I_1 extends {
498
+ callsRemaining?: number;
499
+ amounts?: {
500
+ denom?: string;
501
+ amount?: string;
502
+ }[];
503
+ } & {
504
+ callsRemaining?: number;
505
+ amounts?: {
506
+ denom?: string;
507
+ amount?: string;
508
+ }[] & ({
509
+ denom?: string;
510
+ amount?: string;
511
+ } & {
512
+ denom?: string;
513
+ amount?: string;
514
+ } & { [K_3 in Exclude<keyof I_1["amounts"][number], keyof Coin>]: never; })[] & { [K_4 in Exclude<keyof I_1["amounts"], keyof {
515
+ denom?: string;
516
+ amount?: string;
517
+ }[]>]: never; };
518
+ } & { [K_5 in Exclude<keyof I_1, keyof CombinedLimit>]: never; }>(object: I_1): CombinedLimit;
519
+ };
520
+ export declare const AllowAllMessagesFilter: {
521
+ encode(_: AllowAllMessagesFilter, writer?: _m0.Writer): _m0.Writer;
522
+ decode(input: _m0.Reader | Uint8Array, length?: number): AllowAllMessagesFilter;
523
+ fromJSON(_: any): AllowAllMessagesFilter;
524
+ toJSON(_: AllowAllMessagesFilter): unknown;
525
+ create<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(base?: I): AllowAllMessagesFilter;
526
+ fromPartial<I_1 extends {} & {} & { [K_1 in Exclude<keyof I_1, never>]: never; }>(_: I_1): AllowAllMessagesFilter;
527
+ };
528
+ export declare const AcceptedMessageKeysFilter: {
529
+ encode(message: AcceptedMessageKeysFilter, writer?: _m0.Writer): _m0.Writer;
530
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcceptedMessageKeysFilter;
531
+ fromJSON(object: any): AcceptedMessageKeysFilter;
532
+ toJSON(message: AcceptedMessageKeysFilter): unknown;
533
+ create<I extends {
534
+ keys?: string[];
535
+ } & {
536
+ keys?: string[] & string[] & { [K in Exclude<keyof I["keys"], keyof string[]>]: never; };
537
+ } & { [K_1 in Exclude<keyof I, "keys">]: never; }>(base?: I): AcceptedMessageKeysFilter;
538
+ fromPartial<I_1 extends {
539
+ keys?: string[];
540
+ } & {
541
+ keys?: string[] & string[] & { [K_2 in Exclude<keyof I_1["keys"], keyof string[]>]: never; };
542
+ } & { [K_3 in Exclude<keyof I_1, "keys">]: never; }>(object: I_1): AcceptedMessageKeysFilter;
543
+ };
544
+ export declare const AcceptedMessagesFilter: {
545
+ encode(message: AcceptedMessagesFilter, writer?: _m0.Writer): _m0.Writer;
546
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcceptedMessagesFilter;
547
+ fromJSON(object: any): AcceptedMessagesFilter;
548
+ toJSON(message: AcceptedMessagesFilter): unknown;
549
+ create<I extends {
550
+ messages?: Uint8Array[];
551
+ } & {
552
+ messages?: Uint8Array[] & Uint8Array[] & { [K in Exclude<keyof I["messages"], keyof Uint8Array[]>]: never; };
553
+ } & { [K_1 in Exclude<keyof I, "messages">]: never; }>(base?: I): AcceptedMessagesFilter;
554
+ fromPartial<I_1 extends {
555
+ messages?: Uint8Array[];
556
+ } & {
557
+ messages?: Uint8Array[] & Uint8Array[] & { [K_2 in Exclude<keyof I_1["messages"], keyof Uint8Array[]>]: never; };
558
+ } & { [K_3 in Exclude<keyof I_1, "messages">]: never; }>(object: I_1): AcceptedMessagesFilter;
559
+ };
560
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
561
+ export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
562
+ [K in keyof T]?: DeepPartial<T[K]>;
563
+ } : Partial<T>;
564
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
565
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
566
+ [K in keyof P]: Exact<P[K], I[K]>;
567
+ } & {
568
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
569
+ };
570
+ export {};