juno-network 0.2.1 → 0.2.2

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 (72) hide show
  1. package/main/codegen/cosmos/base/query/v1beta1/pagination.js +190 -0
  2. package/main/codegen/cosmos/base/v1beta1/coin.js +268 -0
  3. package/main/codegen/cosmos/bundle.js +4 -4
  4. package/main/codegen/cosmwasm/bundle.js +4 -4
  5. package/main/codegen/ibc/bundle.js +25 -15
  6. package/main/codegen/ibc/client.js +6 -2
  7. package/main/codegen/ibc/core/client/v1/client.js +585 -0
  8. package/main/codegen/ibc/core/client/v1/genesis.js +367 -0
  9. package/main/codegen/ibc/core/client/v1/query.js +1047 -0
  10. package/main/codegen/ibc/core/client/v1/query.lcd.js +381 -0
  11. package/main/codegen/ibc/core/client/v1/query.rpc.query.js +125 -0
  12. package/main/codegen/ibc/core/client/v1/tx.amino.js +149 -0
  13. package/main/codegen/ibc/core/client/v1/tx.js +538 -0
  14. package/main/codegen/ibc/core/client/v1/tx.registry.js +160 -0
  15. package/main/codegen/ibc/core/client/v1/tx.rpc.msg.js +81 -0
  16. package/main/codegen/ibc/lcd.js +21 -6
  17. package/main/codegen/ibc/rpc.query.js +19 -6
  18. package/main/codegen/ibc/rpc.tx.js +19 -6
  19. package/main/codegen/juno/bundle.js +6 -6
  20. package/module/codegen/cosmos/base/query/v1beta1/pagination.js +189 -0
  21. package/module/codegen/cosmos/base/v1beta1/coin.js +268 -0
  22. package/module/codegen/cosmos/bundle.js +4 -4
  23. package/module/codegen/cosmwasm/bundle.js +4 -4
  24. package/module/codegen/ibc/bundle.js +20 -15
  25. package/module/codegen/ibc/client.js +4 -2
  26. package/module/codegen/ibc/core/client/v1/client.js +549 -0
  27. package/module/codegen/ibc/core/client/v1/genesis.js +287 -0
  28. package/module/codegen/ibc/core/client/v1/query.js +1029 -0
  29. package/module/codegen/ibc/core/client/v1/query.lcd.js +128 -0
  30. package/module/codegen/ibc/core/client/v1/query.rpc.query.js +69 -0
  31. package/module/codegen/ibc/core/client/v1/tx.amino.js +150 -0
  32. package/module/codegen/ibc/core/client/v1/tx.js +544 -0
  33. package/module/codegen/ibc/core/client/v1/tx.registry.js +159 -0
  34. package/module/codegen/ibc/core/client/v1/tx.rpc.msg.js +41 -0
  35. package/module/codegen/ibc/lcd.js +5 -0
  36. package/module/codegen/ibc/rpc.query.js +3 -0
  37. package/module/codegen/ibc/rpc.tx.js +3 -0
  38. package/module/codegen/juno/bundle.js +6 -6
  39. package/package.json +3 -2
  40. package/types/codegen/JunoSwap.client.d.ts +1 -1
  41. package/types/codegen/JunoSwap.react-query.d.ts +11 -11
  42. package/types/codegen/JunoSwap.types.d.ts +1 -1
  43. package/types/codegen/contracts.d.ts +5 -5
  44. package/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +3 -3
  45. package/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts +79 -0
  46. package/types/codegen/cosmos/base/v1beta1/coin.d.ts +58 -0
  47. package/types/codegen/cosmos/bundle.d.ts +758 -153
  48. package/types/codegen/cosmos/client.d.ts +6 -2
  49. package/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +2 -2
  50. package/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +2 -2
  51. package/types/codegen/cosmwasm/bundle.d.ts +87 -18
  52. package/types/codegen/cosmwasm/client.d.ts +8 -2
  53. package/types/codegen/cosmwasm/wasm/v1/query.lcd.d.ts +2 -2
  54. package/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts +2 -2
  55. package/types/codegen/ibc/bundle.d.ts +878 -64
  56. package/types/codegen/ibc/client.d.ts +8 -2
  57. package/types/codegen/ibc/core/channel/v1/query.lcd.d.ts +1 -1
  58. package/types/codegen/ibc/core/client/v1/client.d.ts +143 -0
  59. package/types/codegen/ibc/core/client/v1/genesis.d.ts +56 -0
  60. package/types/codegen/ibc/core/client/v1/query.d.ts +263 -0
  61. package/types/codegen/ibc/core/client/v1/query.lcd.d.ts +15 -0
  62. package/types/codegen/ibc/core/client/v1/query.rpc.query.d.ts +25 -0
  63. package/types/codegen/ibc/core/client/v1/tx.amino.d.ts +77 -0
  64. package/types/codegen/ibc/core/client/v1/tx.d.ts +131 -0
  65. package/types/codegen/ibc/core/client/v1/tx.registry.d.ts +96 -0
  66. package/types/codegen/ibc/core/client/v1/tx.rpc.msg.d.ts +17 -0
  67. package/types/codegen/ibc/lcd.d.ts +3 -0
  68. package/types/codegen/ibc/rpc.query.d.ts +3 -0
  69. package/types/codegen/ibc/rpc.tx.d.ts +3 -0
  70. package/types/codegen/index.d.ts +1 -1
  71. package/types/codegen/juno/bundle.d.ts +6 -6
  72. package/types/codegen/juno/mint/query.lcd.d.ts +3 -3
@@ -3,7 +3,9 @@ import * as _14 from "./bank/v1beta1/bank";
3
3
  import * as _15 from "./bank/v1beta1/genesis";
4
4
  import * as _16 from "./bank/v1beta1/query";
5
5
  import * as _17 from "./bank/v1beta1/tx";
6
+ import * as _20 from "./base/query/v1beta1/pagination";
6
7
  import * as _22 from "./base/reflection/v2alpha1/reflection";
8
+ import * as _27 from "./base/v1beta1/coin";
7
9
  import * as _28 from "./capability/v1beta1/capability";
8
10
  import * as _29 from "./capability/v1beta1/genesis";
9
11
  import * as _32 from "./crypto/ed25519/keys";
@@ -190,7 +192,10 @@ export declare namespace cosmos {
190
192
  fromPartial(object: {
191
193
  fromAddress?: string;
192
194
  toAddress?: string;
193
- amount?: any[];
195
+ amount?: {
196
+ denom?: string;
197
+ amount?: string;
198
+ }[];
194
199
  }): _17.MsgSend;
195
200
  };
196
201
  MsgSendResponse: {
@@ -208,11 +213,17 @@ export declare namespace cosmos {
208
213
  fromPartial(object: {
209
214
  inputs?: {
210
215
  address?: string;
211
- coins?: any[];
216
+ coins?: {
217
+ denom?: string;
218
+ amount?: string;
219
+ }[];
212
220
  }[];
213
221
  outputs?: {
214
222
  address?: string;
215
- coins?: any[];
223
+ coins?: {
224
+ denom?: string;
225
+ amount?: string;
226
+ }[];
216
227
  }[];
217
228
  }): _17.MsgMultiSend;
218
229
  };
@@ -239,7 +250,10 @@ export declare namespace cosmos {
239
250
  fromJSON(object: any): _16.QueryBalanceResponse;
240
251
  toJSON(message: _16.QueryBalanceResponse): unknown;
241
252
  fromPartial(object: {
242
- balance?: any;
253
+ balance?: {
254
+ denom?: string;
255
+ amount?: string;
256
+ };
243
257
  }): _16.QueryBalanceResponse;
244
258
  };
245
259
  QueryAllBalancesRequest: {
@@ -249,7 +263,13 @@ export declare namespace cosmos {
249
263
  toJSON(message: _16.QueryAllBalancesRequest): unknown;
250
264
  fromPartial(object: {
251
265
  address?: string;
252
- pagination?: any;
266
+ pagination?: {
267
+ key?: Uint8Array;
268
+ offset?: any;
269
+ limit?: any;
270
+ countTotal?: boolean;
271
+ reverse?: boolean;
272
+ };
253
273
  }): _16.QueryAllBalancesRequest;
254
274
  };
255
275
  QueryAllBalancesResponse: {
@@ -258,8 +278,14 @@ export declare namespace cosmos {
258
278
  fromJSON(object: any): _16.QueryAllBalancesResponse;
259
279
  toJSON(message: _16.QueryAllBalancesResponse): unknown;
260
280
  fromPartial(object: {
261
- balances?: any[];
262
- pagination?: any;
281
+ balances?: {
282
+ denom?: string;
283
+ amount?: string;
284
+ }[];
285
+ pagination?: {
286
+ nextKey?: Uint8Array;
287
+ total?: any;
288
+ };
263
289
  }): _16.QueryAllBalancesResponse;
264
290
  };
265
291
  QuerySpendableBalancesRequest: {
@@ -269,7 +295,13 @@ export declare namespace cosmos {
269
295
  toJSON(message: _16.QuerySpendableBalancesRequest): unknown;
270
296
  fromPartial(object: {
271
297
  address?: string;
272
- pagination?: any;
298
+ pagination?: {
299
+ key?: Uint8Array;
300
+ offset?: any;
301
+ limit?: any;
302
+ countTotal?: boolean;
303
+ reverse?: boolean;
304
+ };
273
305
  }): _16.QuerySpendableBalancesRequest;
274
306
  };
275
307
  QuerySpendableBalancesResponse: {
@@ -278,8 +310,14 @@ export declare namespace cosmos {
278
310
  fromJSON(object: any): _16.QuerySpendableBalancesResponse;
279
311
  toJSON(message: _16.QuerySpendableBalancesResponse): unknown;
280
312
  fromPartial(object: {
281
- balances?: any[];
282
- pagination?: any;
313
+ balances?: {
314
+ denom?: string;
315
+ amount?: string;
316
+ }[];
317
+ pagination?: {
318
+ nextKey?: Uint8Array;
319
+ total?: any;
320
+ };
283
321
  }): _16.QuerySpendableBalancesResponse;
284
322
  };
285
323
  QueryTotalSupplyRequest: {
@@ -288,7 +326,13 @@ export declare namespace cosmos {
288
326
  fromJSON(object: any): _16.QueryTotalSupplyRequest;
289
327
  toJSON(message: _16.QueryTotalSupplyRequest): unknown;
290
328
  fromPartial(object: {
291
- pagination?: any;
329
+ pagination?: {
330
+ key?: Uint8Array;
331
+ offset?: any;
332
+ limit?: any;
333
+ countTotal?: boolean;
334
+ reverse?: boolean;
335
+ };
292
336
  }): _16.QueryTotalSupplyRequest;
293
337
  };
294
338
  QueryTotalSupplyResponse: {
@@ -297,8 +341,14 @@ export declare namespace cosmos {
297
341
  fromJSON(object: any): _16.QueryTotalSupplyResponse;
298
342
  toJSON(message: _16.QueryTotalSupplyResponse): unknown;
299
343
  fromPartial(object: {
300
- supply?: any[];
301
- pagination?: any;
344
+ supply?: {
345
+ denom?: string;
346
+ amount?: string;
347
+ }[];
348
+ pagination?: {
349
+ nextKey?: Uint8Array;
350
+ total?: any;
351
+ };
302
352
  }): _16.QueryTotalSupplyResponse;
303
353
  };
304
354
  QuerySupplyOfRequest: {
@@ -316,7 +366,10 @@ export declare namespace cosmos {
316
366
  fromJSON(object: any): _16.QuerySupplyOfResponse;
317
367
  toJSON(message: _16.QuerySupplyOfResponse): unknown;
318
368
  fromPartial(object: {
319
- amount?: any;
369
+ amount?: {
370
+ denom?: string;
371
+ amount?: string;
372
+ };
320
373
  }): _16.QuerySupplyOfResponse;
321
374
  };
322
375
  QueryParamsRequest: {
@@ -347,7 +400,13 @@ export declare namespace cosmos {
347
400
  fromJSON(object: any): _16.QueryDenomsMetadataRequest;
348
401
  toJSON(message: _16.QueryDenomsMetadataRequest): unknown;
349
402
  fromPartial(object: {
350
- pagination?: any;
403
+ pagination?: {
404
+ key?: Uint8Array;
405
+ offset?: any;
406
+ limit?: any;
407
+ countTotal?: boolean;
408
+ reverse?: boolean;
409
+ };
351
410
  }): _16.QueryDenomsMetadataRequest;
352
411
  };
353
412
  QueryDenomsMetadataResponse: {
@@ -370,7 +429,10 @@ export declare namespace cosmos {
370
429
  uri?: string;
371
430
  uriHash?: string;
372
431
  }[];
373
- pagination?: any;
432
+ pagination?: {
433
+ nextKey?: Uint8Array;
434
+ total?: any;
435
+ };
374
436
  }): _16.QueryDenomsMetadataResponse;
375
437
  };
376
438
  QueryDenomMetadataRequest: {
@@ -411,7 +473,13 @@ export declare namespace cosmos {
411
473
  toJSON(message: _16.QueryDenomOwnersRequest): unknown;
412
474
  fromPartial(object: {
413
475
  denom?: string;
414
- pagination?: any;
476
+ pagination?: {
477
+ key?: Uint8Array;
478
+ offset?: any;
479
+ limit?: any;
480
+ countTotal?: boolean;
481
+ reverse?: boolean;
482
+ };
415
483
  }): _16.QueryDenomOwnersRequest;
416
484
  };
417
485
  DenomOwner: {
@@ -421,7 +489,10 @@ export declare namespace cosmos {
421
489
  toJSON(message: _16.DenomOwner): unknown;
422
490
  fromPartial(object: {
423
491
  address?: string;
424
- balance?: any;
492
+ balance?: {
493
+ denom?: string;
494
+ amount?: string;
495
+ };
425
496
  }): _16.DenomOwner;
426
497
  };
427
498
  QueryDenomOwnersResponse: {
@@ -432,9 +503,15 @@ export declare namespace cosmos {
432
503
  fromPartial(object: {
433
504
  denomOwners?: {
434
505
  address?: string;
435
- balance?: any;
506
+ balance?: {
507
+ denom?: string;
508
+ amount?: string;
509
+ };
436
510
  }[];
437
- pagination?: any;
511
+ pagination?: {
512
+ nextKey?: Uint8Array;
513
+ total?: any;
514
+ };
438
515
  }): _16.QueryDenomOwnersResponse;
439
516
  };
440
517
  GenesisState: {
@@ -452,9 +529,15 @@ export declare namespace cosmos {
452
529
  };
453
530
  balances?: {
454
531
  address?: string;
455
- coins?: any[];
532
+ coins?: {
533
+ denom?: string;
534
+ amount?: string;
535
+ }[];
536
+ }[];
537
+ supply?: {
538
+ denom?: string;
539
+ amount?: string;
456
540
  }[];
457
- supply?: any[];
458
541
  denomMetadata?: {
459
542
  description?: string;
460
543
  denomUnits?: {
@@ -478,7 +561,10 @@ export declare namespace cosmos {
478
561
  toJSON(message: _15.Balance): unknown;
479
562
  fromPartial(object: {
480
563
  address?: string;
481
- coins?: any[];
564
+ coins?: {
565
+ denom?: string;
566
+ amount?: string;
567
+ }[];
482
568
  }): _15.Balance;
483
569
  };
484
570
  Params: {
@@ -511,7 +597,10 @@ export declare namespace cosmos {
511
597
  toJSON(message: _14.Input): unknown;
512
598
  fromPartial(object: {
513
599
  address?: string;
514
- coins?: any[];
600
+ coins?: {
601
+ denom?: string;
602
+ amount?: string;
603
+ }[];
515
604
  }): _14.Input;
516
605
  };
517
606
  Output: {
@@ -521,7 +610,10 @@ export declare namespace cosmos {
521
610
  toJSON(message: _14.Output): unknown;
522
611
  fromPartial(object: {
523
612
  address?: string;
524
- coins?: any[];
613
+ coins?: {
614
+ denom?: string;
615
+ amount?: string;
616
+ }[];
525
617
  }): _14.Output;
526
618
  };
527
619
  Supply: {
@@ -530,7 +622,10 @@ export declare namespace cosmos {
530
622
  fromJSON(object: any): _14.Supply;
531
623
  toJSON(message: _14.Supply): unknown;
532
624
  fromPartial(object: {
533
- total?: any[];
625
+ total?: {
626
+ denom?: string;
627
+ amount?: string;
628
+ }[];
534
629
  }): _14.Supply;
535
630
  };
536
631
  DenomUnit: {
@@ -570,7 +665,10 @@ export declare namespace cosmos {
570
665
  fromJSON(object: any): _13.SendAuthorization;
571
666
  toJSON(message: _13.SendAuthorization): unknown;
572
667
  fromPartial(object: {
573
- spendLimit?: any[];
668
+ spendLimit?: {
669
+ denom?: string;
670
+ amount?: string;
671
+ }[];
574
672
  }): _13.SendAuthorization;
575
673
  };
576
674
  };
@@ -583,7 +681,31 @@ export declare namespace cosmos {
583
681
  const v1beta1: any;
584
682
  }
585
683
  namespace query {
586
- const v1beta1: any;
684
+ const v1beta1: {
685
+ PageRequest: {
686
+ encode(message: _20.PageRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
687
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _20.PageRequest;
688
+ fromJSON(object: any): _20.PageRequest;
689
+ toJSON(message: _20.PageRequest): unknown;
690
+ fromPartial(object: {
691
+ key?: Uint8Array;
692
+ offset?: any;
693
+ limit?: any;
694
+ countTotal?: boolean;
695
+ reverse?: boolean;
696
+ }): _20.PageRequest;
697
+ };
698
+ PageResponse: {
699
+ encode(message: _20.PageResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
700
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _20.PageResponse;
701
+ fromJSON(object: any): _20.PageResponse;
702
+ toJSON(message: _20.PageResponse): unknown;
703
+ fromPartial(object: {
704
+ nextKey?: Uint8Array;
705
+ total?: any;
706
+ }): _20.PageResponse;
707
+ };
708
+ };
587
709
  }
588
710
  namespace reflection {
589
711
  const v1beta1: any;
@@ -940,7 +1062,46 @@ export declare namespace cosmos {
940
1062
  namespace tendermint {
941
1063
  const v1beta1: any;
942
1064
  }
943
- const v1beta1: any;
1065
+ const v1beta1: {
1066
+ Coin: {
1067
+ encode(message: _27.Coin, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1068
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _27.Coin;
1069
+ fromJSON(object: any): _27.Coin;
1070
+ toJSON(message: _27.Coin): unknown;
1071
+ fromPartial(object: {
1072
+ denom?: string;
1073
+ amount?: string;
1074
+ }): _27.Coin;
1075
+ };
1076
+ DecCoin: {
1077
+ encode(message: _27.DecCoin, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1078
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _27.DecCoin;
1079
+ fromJSON(object: any): _27.DecCoin;
1080
+ toJSON(message: _27.DecCoin): unknown;
1081
+ fromPartial(object: {
1082
+ denom?: string;
1083
+ amount?: string;
1084
+ }): _27.DecCoin;
1085
+ };
1086
+ IntProto: {
1087
+ encode(message: _27.IntProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1088
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _27.IntProto;
1089
+ fromJSON(object: any): _27.IntProto;
1090
+ toJSON(message: _27.IntProto): unknown;
1091
+ fromPartial(object: {
1092
+ int?: string;
1093
+ }): _27.IntProto;
1094
+ };
1095
+ DecProto: {
1096
+ encode(message: _27.DecProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1097
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _27.DecProto;
1098
+ fromJSON(object: any): _27.DecProto;
1099
+ toJSON(message: _27.DecProto): unknown;
1100
+ fromPartial(object: {
1101
+ dec?: string;
1102
+ }): _27.DecProto;
1103
+ };
1104
+ };
944
1105
  }
945
1106
  namespace capability {
946
1107
  const v1beta1: {
@@ -1366,7 +1527,10 @@ export declare namespace cosmos {
1366
1527
  fromJSON(object: any): _41.MsgWithdrawDelegatorRewardResponse;
1367
1528
  toJSON(message: _41.MsgWithdrawDelegatorRewardResponse): unknown;
1368
1529
  fromPartial(object: {
1369
- amount?: any[];
1530
+ amount?: {
1531
+ denom?: string;
1532
+ amount?: string;
1533
+ }[];
1370
1534
  }): _41.MsgWithdrawDelegatorRewardResponse;
1371
1535
  };
1372
1536
  MsgWithdrawValidatorCommission: {
@@ -1384,7 +1548,10 @@ export declare namespace cosmos {
1384
1548
  fromJSON(object: any): _41.MsgWithdrawValidatorCommissionResponse;
1385
1549
  toJSON(message: _41.MsgWithdrawValidatorCommissionResponse): unknown;
1386
1550
  fromPartial(object: {
1387
- amount?: any[];
1551
+ amount?: {
1552
+ denom?: string;
1553
+ amount?: string;
1554
+ }[];
1388
1555
  }): _41.MsgWithdrawValidatorCommissionResponse;
1389
1556
  };
1390
1557
  MsgFundCommunityPool: {
@@ -1393,7 +1560,10 @@ export declare namespace cosmos {
1393
1560
  fromJSON(object: any): _41.MsgFundCommunityPool;
1394
1561
  toJSON(message: _41.MsgFundCommunityPool): unknown;
1395
1562
  fromPartial(object: {
1396
- amount?: any[];
1563
+ amount?: {
1564
+ denom?: string;
1565
+ amount?: string;
1566
+ }[];
1397
1567
  depositor?: string;
1398
1568
  }): _41.MsgFundCommunityPool;
1399
1569
  };
@@ -1441,7 +1611,10 @@ export declare namespace cosmos {
1441
1611
  toJSON(message: _40.QueryValidatorOutstandingRewardsResponse): unknown;
1442
1612
  fromPartial(object: {
1443
1613
  rewards?: {
1444
- rewards?: any[];
1614
+ rewards?: {
1615
+ denom?: string;
1616
+ amount?: string;
1617
+ }[];
1445
1618
  };
1446
1619
  }): _40.QueryValidatorOutstandingRewardsResponse;
1447
1620
  };
@@ -1461,7 +1634,10 @@ export declare namespace cosmos {
1461
1634
  toJSON(message: _40.QueryValidatorCommissionResponse): unknown;
1462
1635
  fromPartial(object: {
1463
1636
  commission?: {
1464
- commission?: any[];
1637
+ commission?: {
1638
+ denom?: string;
1639
+ amount?: string;
1640
+ }[];
1465
1641
  };
1466
1642
  }): _40.QueryValidatorCommissionResponse;
1467
1643
  };
@@ -1474,7 +1650,13 @@ export declare namespace cosmos {
1474
1650
  validatorAddress?: string;
1475
1651
  startingHeight?: any;
1476
1652
  endingHeight?: any;
1477
- pagination?: any;
1653
+ pagination?: {
1654
+ key?: Uint8Array;
1655
+ offset?: any;
1656
+ limit?: any;
1657
+ countTotal?: boolean;
1658
+ reverse?: boolean;
1659
+ };
1478
1660
  }): _40.QueryValidatorSlashesRequest;
1479
1661
  };
1480
1662
  QueryValidatorSlashesResponse: {
@@ -1487,7 +1669,10 @@ export declare namespace cosmos {
1487
1669
  validatorPeriod?: any;
1488
1670
  fraction?: string;
1489
1671
  }[];
1490
- pagination?: any;
1672
+ pagination?: {
1673
+ nextKey?: Uint8Array;
1674
+ total?: any;
1675
+ };
1491
1676
  }): _40.QueryValidatorSlashesResponse;
1492
1677
  };
1493
1678
  QueryDelegationRewardsRequest: {
@@ -1506,7 +1691,10 @@ export declare namespace cosmos {
1506
1691
  fromJSON(object: any): _40.QueryDelegationRewardsResponse;
1507
1692
  toJSON(message: _40.QueryDelegationRewardsResponse): unknown;
1508
1693
  fromPartial(object: {
1509
- rewards?: any[];
1694
+ rewards?: {
1695
+ denom?: string;
1696
+ amount?: string;
1697
+ }[];
1510
1698
  }): _40.QueryDelegationRewardsResponse;
1511
1699
  };
1512
1700
  QueryDelegationTotalRewardsRequest: {
@@ -1526,9 +1714,15 @@ export declare namespace cosmos {
1526
1714
  fromPartial(object: {
1527
1715
  rewards?: {
1528
1716
  validatorAddress?: string;
1529
- reward?: any[];
1717
+ reward?: {
1718
+ denom?: string;
1719
+ amount?: string;
1720
+ }[];
1721
+ }[];
1722
+ total?: {
1723
+ denom?: string;
1724
+ amount?: string;
1530
1725
  }[];
1531
- total?: any[];
1532
1726
  }): _40.QueryDelegationTotalRewardsResponse;
1533
1727
  };
1534
1728
  QueryDelegatorValidatorsRequest: {
@@ -1580,7 +1774,10 @@ export declare namespace cosmos {
1580
1774
  fromJSON(object: any): _40.QueryCommunityPoolResponse;
1581
1775
  toJSON(message: _40.QueryCommunityPoolResponse): unknown;
1582
1776
  fromPartial(object: {
1583
- pool?: any[];
1777
+ pool?: {
1778
+ denom?: string;
1779
+ amount?: string;
1780
+ }[];
1584
1781
  }): _40.QueryCommunityPoolResponse;
1585
1782
  };
1586
1783
  DelegatorWithdrawInfo: {
@@ -1600,7 +1797,10 @@ export declare namespace cosmos {
1600
1797
  toJSON(message: _39.ValidatorOutstandingRewardsRecord): unknown;
1601
1798
  fromPartial(object: {
1602
1799
  validatorAddress?: string;
1603
- outstandingRewards?: any[];
1800
+ outstandingRewards?: {
1801
+ denom?: string;
1802
+ amount?: string;
1803
+ }[];
1604
1804
  }): _39.ValidatorOutstandingRewardsRecord;
1605
1805
  };
1606
1806
  ValidatorAccumulatedCommissionRecord: {
@@ -1611,7 +1811,10 @@ export declare namespace cosmos {
1611
1811
  fromPartial(object: {
1612
1812
  validatorAddress?: string;
1613
1813
  accumulated?: {
1614
- commission?: any[];
1814
+ commission?: {
1815
+ denom?: string;
1816
+ amount?: string;
1817
+ }[];
1615
1818
  };
1616
1819
  }): _39.ValidatorAccumulatedCommissionRecord;
1617
1820
  };
@@ -1624,7 +1827,10 @@ export declare namespace cosmos {
1624
1827
  validatorAddress?: string;
1625
1828
  period?: any;
1626
1829
  rewards?: {
1627
- cumulativeRewardRatio?: any[];
1830
+ cumulativeRewardRatio?: {
1831
+ denom?: string;
1832
+ amount?: string;
1833
+ }[];
1628
1834
  referenceCount?: number;
1629
1835
  };
1630
1836
  }): _39.ValidatorHistoricalRewardsRecord;
@@ -1637,7 +1843,10 @@ export declare namespace cosmos {
1637
1843
  fromPartial(object: {
1638
1844
  validatorAddress?: string;
1639
1845
  rewards?: {
1640
- rewards?: any[];
1846
+ rewards?: {
1847
+ denom?: string;
1848
+ amount?: string;
1849
+ }[];
1641
1850
  period?: any;
1642
1851
  };
1643
1852
  }): _39.ValidatorCurrentRewardsRecord;
@@ -1685,7 +1894,10 @@ export declare namespace cosmos {
1685
1894
  withdrawAddrEnabled?: boolean;
1686
1895
  };
1687
1896
  feePool?: {
1688
- communityPool?: any[];
1897
+ communityPool?: {
1898
+ denom?: string;
1899
+ amount?: string;
1900
+ }[];
1689
1901
  };
1690
1902
  delegatorWithdrawInfos?: {
1691
1903
  delegatorAddress?: string;
@@ -1694,26 +1906,38 @@ export declare namespace cosmos {
1694
1906
  previousProposer?: string;
1695
1907
  outstandingRewards?: {
1696
1908
  validatorAddress?: string;
1697
- outstandingRewards?: any[];
1909
+ outstandingRewards?: {
1910
+ denom?: string;
1911
+ amount?: string;
1912
+ }[];
1698
1913
  }[];
1699
1914
  validatorAccumulatedCommissions?: {
1700
1915
  validatorAddress?: string;
1701
1916
  accumulated?: {
1702
- commission?: any[];
1917
+ commission?: {
1918
+ denom?: string;
1919
+ amount?: string;
1920
+ }[];
1703
1921
  };
1704
1922
  }[];
1705
1923
  validatorHistoricalRewards?: {
1706
1924
  validatorAddress?: string;
1707
1925
  period?: any;
1708
1926
  rewards?: {
1709
- cumulativeRewardRatio?: any[];
1927
+ cumulativeRewardRatio?: {
1928
+ denom?: string;
1929
+ amount?: string;
1930
+ }[];
1710
1931
  referenceCount?: number;
1711
1932
  };
1712
1933
  }[];
1713
1934
  validatorCurrentRewards?: {
1714
1935
  validatorAddress?: string;
1715
1936
  rewards?: {
1716
- rewards?: any[];
1937
+ rewards?: {
1938
+ denom?: string;
1939
+ amount?: string;
1940
+ }[];
1717
1941
  period?: any;
1718
1942
  };
1719
1943
  }[];
@@ -1755,7 +1979,10 @@ export declare namespace cosmos {
1755
1979
  fromJSON(object: any): _38.ValidatorHistoricalRewards;
1756
1980
  toJSON(message: _38.ValidatorHistoricalRewards): unknown;
1757
1981
  fromPartial(object: {
1758
- cumulativeRewardRatio?: any[];
1982
+ cumulativeRewardRatio?: {
1983
+ denom?: string;
1984
+ amount?: string;
1985
+ }[];
1759
1986
  referenceCount?: number;
1760
1987
  }): _38.ValidatorHistoricalRewards;
1761
1988
  };
@@ -1765,7 +1992,10 @@ export declare namespace cosmos {
1765
1992
  fromJSON(object: any): _38.ValidatorCurrentRewards;
1766
1993
  toJSON(message: _38.ValidatorCurrentRewards): unknown;
1767
1994
  fromPartial(object: {
1768
- rewards?: any[];
1995
+ rewards?: {
1996
+ denom?: string;
1997
+ amount?: string;
1998
+ }[];
1769
1999
  period?: any;
1770
2000
  }): _38.ValidatorCurrentRewards;
1771
2001
  };
@@ -1775,7 +2005,10 @@ export declare namespace cosmos {
1775
2005
  fromJSON(object: any): _38.ValidatorAccumulatedCommission;
1776
2006
  toJSON(message: _38.ValidatorAccumulatedCommission): unknown;
1777
2007
  fromPartial(object: {
1778
- commission?: any[];
2008
+ commission?: {
2009
+ denom?: string;
2010
+ amount?: string;
2011
+ }[];
1779
2012
  }): _38.ValidatorAccumulatedCommission;
1780
2013
  };
1781
2014
  ValidatorOutstandingRewards: {
@@ -1784,7 +2017,10 @@ export declare namespace cosmos {
1784
2017
  fromJSON(object: any): _38.ValidatorOutstandingRewards;
1785
2018
  toJSON(message: _38.ValidatorOutstandingRewards): unknown;
1786
2019
  fromPartial(object: {
1787
- rewards?: any[];
2020
+ rewards?: {
2021
+ denom?: string;
2022
+ amount?: string;
2023
+ }[];
1788
2024
  }): _38.ValidatorOutstandingRewards;
1789
2025
  };
1790
2026
  ValidatorSlashEvent: {
@@ -1815,7 +2051,10 @@ export declare namespace cosmos {
1815
2051
  fromJSON(object: any): _38.FeePool;
1816
2052
  toJSON(message: _38.FeePool): unknown;
1817
2053
  fromPartial(object: {
1818
- communityPool?: any[];
2054
+ communityPool?: {
2055
+ denom?: string;
2056
+ amount?: string;
2057
+ }[];
1819
2058
  }): _38.FeePool;
1820
2059
  };
1821
2060
  CommunityPoolSpendProposal: {
@@ -1827,7 +2066,10 @@ export declare namespace cosmos {
1827
2066
  title?: string;
1828
2067
  description?: string;
1829
2068
  recipient?: string;
1830
- amount?: any[];
2069
+ amount?: {
2070
+ denom?: string;
2071
+ amount?: string;
2072
+ }[];
1831
2073
  }): _38.CommunityPoolSpendProposal;
1832
2074
  };
1833
2075
  DelegatorStartingInfo: {
@@ -1848,7 +2090,10 @@ export declare namespace cosmos {
1848
2090
  toJSON(message: _38.DelegationDelegatorReward): unknown;
1849
2091
  fromPartial(object: {
1850
2092
  validatorAddress?: string;
1851
- reward?: any[];
2093
+ reward?: {
2094
+ denom?: string;
2095
+ amount?: string;
2096
+ }[];
1852
2097
  }): _38.DelegationDelegatorReward;
1853
2098
  };
1854
2099
  CommunityPoolSpendProposalWithDeposit: {
@@ -2105,7 +2350,10 @@ export declare namespace cosmos {
2105
2350
  typeUrl?: string;
2106
2351
  value?: Uint8Array;
2107
2352
  }[];
2108
- initialDeposit?: any[];
2353
+ initialDeposit?: {
2354
+ denom?: string;
2355
+ amount?: string;
2356
+ }[];
2109
2357
  proposer?: string;
2110
2358
  metadata?: string;
2111
2359
  }): _54.MsgSubmitProposal;
@@ -2188,7 +2436,10 @@ export declare namespace cosmos {
2188
2436
  fromPartial(object: {
2189
2437
  proposalId?: any;
2190
2438
  depositor?: string;
2191
- amount?: any[];
2439
+ amount?: {
2440
+ denom?: string;
2441
+ amount?: string;
2442
+ }[];
2192
2443
  }): _54.MsgDeposit;
2193
2444
  };
2194
2445
  MsgDepositResponse: {
@@ -2228,7 +2479,10 @@ export declare namespace cosmos {
2228
2479
  };
2229
2480
  submitTime?: Date;
2230
2481
  depositEndTime?: Date;
2231
- totalDeposit?: any[];
2482
+ totalDeposit?: {
2483
+ denom?: string;
2484
+ amount?: string;
2485
+ }[];
2232
2486
  votingStartTime?: Date;
2233
2487
  votingEndTime?: Date;
2234
2488
  metadata?: string;
@@ -2244,7 +2498,13 @@ export declare namespace cosmos {
2244
2498
  proposalStatus?: _52.ProposalStatus;
2245
2499
  voter?: string;
2246
2500
  depositor?: string;
2247
- pagination?: any;
2501
+ pagination?: {
2502
+ key?: Uint8Array;
2503
+ offset?: any;
2504
+ limit?: any;
2505
+ countTotal?: boolean;
2506
+ reverse?: boolean;
2507
+ };
2248
2508
  }): _53.QueryProposalsRequest;
2249
2509
  };
2250
2510
  QueryProposalsResponse: {
@@ -2268,12 +2528,18 @@ export declare namespace cosmos {
2268
2528
  };
2269
2529
  submitTime?: Date;
2270
2530
  depositEndTime?: Date;
2271
- totalDeposit?: any[];
2531
+ totalDeposit?: {
2532
+ denom?: string;
2533
+ amount?: string;
2534
+ }[];
2272
2535
  votingStartTime?: Date;
2273
2536
  votingEndTime?: Date;
2274
2537
  metadata?: string;
2275
2538
  }[];
2276
- pagination?: any;
2539
+ pagination?: {
2540
+ nextKey?: Uint8Array;
2541
+ total?: any;
2542
+ };
2277
2543
  }): _53.QueryProposalsResponse;
2278
2544
  };
2279
2545
  QueryVoteRequest: {
@@ -2310,7 +2576,13 @@ export declare namespace cosmos {
2310
2576
  toJSON(message: _53.QueryVotesRequest): unknown;
2311
2577
  fromPartial(object: {
2312
2578
  proposalId?: any;
2313
- pagination?: any;
2579
+ pagination?: {
2580
+ key?: Uint8Array;
2581
+ offset?: any;
2582
+ limit?: any;
2583
+ countTotal?: boolean;
2584
+ reverse?: boolean;
2585
+ };
2314
2586
  }): _53.QueryVotesRequest;
2315
2587
  };
2316
2588
  QueryVotesResponse: {
@@ -2328,7 +2600,10 @@ export declare namespace cosmos {
2328
2600
  }[];
2329
2601
  metadata?: string;
2330
2602
  }[];
2331
- pagination?: any;
2603
+ pagination?: {
2604
+ nextKey?: Uint8Array;
2605
+ total?: any;
2606
+ };
2332
2607
  }): _53.QueryVotesResponse;
2333
2608
  };
2334
2609
  QueryParamsRequest: {
@@ -2353,7 +2628,10 @@ export declare namespace cosmos {
2353
2628
  };
2354
2629
  };
2355
2630
  depositParams?: {
2356
- minDeposit?: any[];
2631
+ minDeposit?: {
2632
+ denom?: string;
2633
+ amount?: string;
2634
+ }[];
2357
2635
  maxDepositPeriod?: {
2358
2636
  seconds?: any;
2359
2637
  nanos?: number;
@@ -2385,7 +2663,10 @@ export declare namespace cosmos {
2385
2663
  deposit?: {
2386
2664
  proposalId?: any;
2387
2665
  depositor?: string;
2388
- amount?: any[];
2666
+ amount?: {
2667
+ denom?: string;
2668
+ amount?: string;
2669
+ }[];
2389
2670
  };
2390
2671
  }): _53.QueryDepositResponse;
2391
2672
  };
@@ -2396,7 +2677,13 @@ export declare namespace cosmos {
2396
2677
  toJSON(message: _53.QueryDepositsRequest): unknown;
2397
2678
  fromPartial(object: {
2398
2679
  proposalId?: any;
2399
- pagination?: any;
2680
+ pagination?: {
2681
+ key?: Uint8Array;
2682
+ offset?: any;
2683
+ limit?: any;
2684
+ countTotal?: boolean;
2685
+ reverse?: boolean;
2686
+ };
2400
2687
  }): _53.QueryDepositsRequest;
2401
2688
  };
2402
2689
  QueryDepositsResponse: {
@@ -2408,9 +2695,15 @@ export declare namespace cosmos {
2408
2695
  deposits?: {
2409
2696
  proposalId?: any;
2410
2697
  depositor?: string;
2411
- amount?: any[];
2698
+ amount?: {
2699
+ denom?: string;
2700
+ amount?: string;
2701
+ }[];
2412
2702
  }[];
2413
- pagination?: any;
2703
+ pagination?: {
2704
+ nextKey?: Uint8Array;
2705
+ total?: any;
2706
+ };
2414
2707
  }): _53.QueryDepositsResponse;
2415
2708
  };
2416
2709
  QueryTallyResultRequest: {
@@ -2460,7 +2753,10 @@ export declare namespace cosmos {
2460
2753
  fromPartial(object: {
2461
2754
  proposalId?: any;
2462
2755
  depositor?: string;
2463
- amount?: any[];
2756
+ amount?: {
2757
+ denom?: string;
2758
+ amount?: string;
2759
+ }[];
2464
2760
  }): _52.Deposit;
2465
2761
  };
2466
2762
  Proposal: {
@@ -2483,7 +2779,10 @@ export declare namespace cosmos {
2483
2779
  };
2484
2780
  submitTime?: Date;
2485
2781
  depositEndTime?: Date;
2486
- totalDeposit?: any[];
2782
+ totalDeposit?: {
2783
+ denom?: string;
2784
+ amount?: string;
2785
+ }[];
2487
2786
  votingStartTime?: Date;
2488
2787
  votingEndTime?: Date;
2489
2788
  metadata?: string;
@@ -2522,7 +2821,10 @@ export declare namespace cosmos {
2522
2821
  fromJSON(object: any): _52.DepositParams;
2523
2822
  toJSON(message: _52.DepositParams): unknown;
2524
2823
  fromPartial(object: {
2525
- minDeposit?: any[];
2824
+ minDeposit?: {
2825
+ denom?: string;
2826
+ amount?: string;
2827
+ }[];
2526
2828
  maxDepositPeriod?: {
2527
2829
  seconds?: any;
2528
2830
  nanos?: number;
@@ -2562,7 +2864,10 @@ export declare namespace cosmos {
2562
2864
  deposits?: {
2563
2865
  proposalId?: any;
2564
2866
  depositor?: string;
2565
- amount?: any[];
2867
+ amount?: {
2868
+ denom?: string;
2869
+ amount?: string;
2870
+ }[];
2566
2871
  }[];
2567
2872
  votes?: {
2568
2873
  proposalId?: any;
@@ -2588,13 +2893,19 @@ export declare namespace cosmos {
2588
2893
  };
2589
2894
  submitTime?: Date;
2590
2895
  depositEndTime?: Date;
2591
- totalDeposit?: any[];
2896
+ totalDeposit?: {
2897
+ denom?: string;
2898
+ amount?: string;
2899
+ }[];
2592
2900
  votingStartTime?: Date;
2593
2901
  votingEndTime?: Date;
2594
2902
  metadata?: string;
2595
2903
  }[];
2596
2904
  depositParams?: {
2597
- minDeposit?: any[];
2905
+ minDeposit?: {
2906
+ denom?: string;
2907
+ amount?: string;
2908
+ }[];
2598
2909
  maxDepositPeriod?: {
2599
2910
  seconds?: any;
2600
2911
  nanos?: number;
@@ -2800,7 +3111,10 @@ export declare namespace cosmos {
2800
3111
  typeUrl?: string;
2801
3112
  value?: Uint8Array;
2802
3113
  };
2803
- initialDeposit?: any[];
3114
+ initialDeposit?: {
3115
+ denom?: string;
3116
+ amount?: string;
3117
+ }[];
2804
3118
  proposer?: string;
2805
3119
  }): _58.MsgSubmitProposal;
2806
3120
  };
@@ -2860,7 +3174,10 @@ export declare namespace cosmos {
2860
3174
  fromPartial(object: {
2861
3175
  proposalId?: any;
2862
3176
  depositor?: string;
2863
- amount?: any[];
3177
+ amount?: {
3178
+ denom?: string;
3179
+ amount?: string;
3180
+ }[];
2864
3181
  }): _58.MsgDeposit;
2865
3182
  };
2866
3183
  MsgDepositResponse: {
@@ -2900,7 +3217,10 @@ export declare namespace cosmos {
2900
3217
  };
2901
3218
  submitTime?: Date;
2902
3219
  depositEndTime?: Date;
2903
- totalDeposit?: any[];
3220
+ totalDeposit?: {
3221
+ denom?: string;
3222
+ amount?: string;
3223
+ }[];
2904
3224
  votingStartTime?: Date;
2905
3225
  votingEndTime?: Date;
2906
3226
  };
@@ -2915,7 +3235,13 @@ export declare namespace cosmos {
2915
3235
  proposalStatus?: _56.ProposalStatus;
2916
3236
  voter?: string;
2917
3237
  depositor?: string;
2918
- pagination?: any;
3238
+ pagination?: {
3239
+ key?: Uint8Array;
3240
+ offset?: any;
3241
+ limit?: any;
3242
+ countTotal?: boolean;
3243
+ reverse?: boolean;
3244
+ };
2919
3245
  }): _57.QueryProposalsRequest;
2920
3246
  };
2921
3247
  QueryProposalsResponse: {
@@ -2939,11 +3265,17 @@ export declare namespace cosmos {
2939
3265
  };
2940
3266
  submitTime?: Date;
2941
3267
  depositEndTime?: Date;
2942
- totalDeposit?: any[];
3268
+ totalDeposit?: {
3269
+ denom?: string;
3270
+ amount?: string;
3271
+ }[];
2943
3272
  votingStartTime?: Date;
2944
3273
  votingEndTime?: Date;
2945
3274
  }[];
2946
- pagination?: any;
3275
+ pagination?: {
3276
+ nextKey?: Uint8Array;
3277
+ total?: any;
3278
+ };
2947
3279
  }): _57.QueryProposalsResponse;
2948
3280
  };
2949
3281
  QueryVoteRequest: {
@@ -2980,7 +3312,13 @@ export declare namespace cosmos {
2980
3312
  toJSON(message: _57.QueryVotesRequest): unknown;
2981
3313
  fromPartial(object: {
2982
3314
  proposalId?: any;
2983
- pagination?: any;
3315
+ pagination?: {
3316
+ key?: Uint8Array;
3317
+ offset?: any;
3318
+ limit?: any;
3319
+ countTotal?: boolean;
3320
+ reverse?: boolean;
3321
+ };
2984
3322
  }): _57.QueryVotesRequest;
2985
3323
  };
2986
3324
  QueryVotesResponse: {
@@ -2998,7 +3336,10 @@ export declare namespace cosmos {
2998
3336
  weight?: string;
2999
3337
  }[];
3000
3338
  }[];
3001
- pagination?: any;
3339
+ pagination?: {
3340
+ nextKey?: Uint8Array;
3341
+ total?: any;
3342
+ };
3002
3343
  }): _57.QueryVotesResponse;
3003
3344
  };
3004
3345
  QueryParamsRequest: {
@@ -3023,7 +3364,10 @@ export declare namespace cosmos {
3023
3364
  };
3024
3365
  };
3025
3366
  depositParams?: {
3026
- minDeposit?: any[];
3367
+ minDeposit?: {
3368
+ denom?: string;
3369
+ amount?: string;
3370
+ }[];
3027
3371
  maxDepositPeriod?: {
3028
3372
  seconds?: any;
3029
3373
  nanos?: number;
@@ -3055,7 +3399,10 @@ export declare namespace cosmos {
3055
3399
  deposit?: {
3056
3400
  proposalId?: any;
3057
3401
  depositor?: string;
3058
- amount?: any[];
3402
+ amount?: {
3403
+ denom?: string;
3404
+ amount?: string;
3405
+ }[];
3059
3406
  };
3060
3407
  }): _57.QueryDepositResponse;
3061
3408
  };
@@ -3066,7 +3413,13 @@ export declare namespace cosmos {
3066
3413
  toJSON(message: _57.QueryDepositsRequest): unknown;
3067
3414
  fromPartial(object: {
3068
3415
  proposalId?: any;
3069
- pagination?: any;
3416
+ pagination?: {
3417
+ key?: Uint8Array;
3418
+ offset?: any;
3419
+ limit?: any;
3420
+ countTotal?: boolean;
3421
+ reverse?: boolean;
3422
+ };
3070
3423
  }): _57.QueryDepositsRequest;
3071
3424
  };
3072
3425
  QueryDepositsResponse: {
@@ -3078,9 +3431,15 @@ export declare namespace cosmos {
3078
3431
  deposits?: {
3079
3432
  proposalId?: any;
3080
3433
  depositor?: string;
3081
- amount?: any[];
3434
+ amount?: {
3435
+ denom?: string;
3436
+ amount?: string;
3437
+ }[];
3082
3438
  }[];
3083
- pagination?: any;
3439
+ pagination?: {
3440
+ nextKey?: Uint8Array;
3441
+ total?: any;
3442
+ };
3084
3443
  }): _57.QueryDepositsResponse;
3085
3444
  };
3086
3445
  QueryTallyResultRequest: {
@@ -3140,7 +3499,10 @@ export declare namespace cosmos {
3140
3499
  fromPartial(object: {
3141
3500
  proposalId?: any;
3142
3501
  depositor?: string;
3143
- amount?: any[];
3502
+ amount?: {
3503
+ denom?: string;
3504
+ amount?: string;
3505
+ }[];
3144
3506
  }): _56.Deposit;
3145
3507
  };
3146
3508
  Proposal: {
@@ -3163,7 +3525,10 @@ export declare namespace cosmos {
3163
3525
  };
3164
3526
  submitTime?: Date;
3165
3527
  depositEndTime?: Date;
3166
- totalDeposit?: any[];
3528
+ totalDeposit?: {
3529
+ denom?: string;
3530
+ amount?: string;
3531
+ }[];
3167
3532
  votingStartTime?: Date;
3168
3533
  votingEndTime?: Date;
3169
3534
  }): _56.Proposal;
@@ -3201,7 +3566,10 @@ export declare namespace cosmos {
3201
3566
  fromJSON(object: any): _56.DepositParams;
3202
3567
  toJSON(message: _56.DepositParams): unknown;
3203
3568
  fromPartial(object: {
3204
- minDeposit?: any[];
3569
+ minDeposit?: {
3570
+ denom?: string;
3571
+ amount?: string;
3572
+ }[];
3205
3573
  maxDepositPeriod?: {
3206
3574
  seconds?: any;
3207
3575
  nanos?: number;
@@ -3241,7 +3609,10 @@ export declare namespace cosmos {
3241
3609
  deposits?: {
3242
3610
  proposalId?: any;
3243
3611
  depositor?: string;
3244
- amount?: any[];
3612
+ amount?: {
3613
+ denom?: string;
3614
+ amount?: string;
3615
+ }[];
3245
3616
  }[];
3246
3617
  votes?: {
3247
3618
  proposalId?: any;
@@ -3267,12 +3638,18 @@ export declare namespace cosmos {
3267
3638
  };
3268
3639
  submitTime?: Date;
3269
3640
  depositEndTime?: Date;
3270
- totalDeposit?: any[];
3641
+ totalDeposit?: {
3642
+ denom?: string;
3643
+ amount?: string;
3644
+ }[];
3271
3645
  votingStartTime?: Date;
3272
3646
  votingEndTime?: Date;
3273
3647
  }[];
3274
3648
  depositParams?: {
3275
- minDeposit?: any[];
3649
+ minDeposit?: {
3650
+ denom?: string;
3651
+ amount?: string;
3652
+ }[];
3276
3653
  maxDepositPeriod?: {
3277
3654
  seconds?: any;
3278
3655
  nanos?: number;
@@ -4408,7 +4785,13 @@ export declare namespace cosmos {
4408
4785
  toJSON(message: _61.QueryGroupMembersRequest): unknown;
4409
4786
  fromPartial(object: {
4410
4787
  groupId?: any;
4411
- pagination?: any;
4788
+ pagination?: {
4789
+ key?: Uint8Array;
4790
+ offset?: any;
4791
+ limit?: any;
4792
+ countTotal?: boolean;
4793
+ reverse?: boolean;
4794
+ };
4412
4795
  }): _61.QueryGroupMembersRequest;
4413
4796
  };
4414
4797
  QueryGroupMembersResponse: {
@@ -4426,7 +4809,10 @@ export declare namespace cosmos {
4426
4809
  addedAt?: Date;
4427
4810
  };
4428
4811
  }[];
4429
- pagination?: any;
4812
+ pagination?: {
4813
+ nextKey?: Uint8Array;
4814
+ total?: any;
4815
+ };
4430
4816
  }): _61.QueryGroupMembersResponse;
4431
4817
  };
4432
4818
  QueryGroupsByAdminRequest: {
@@ -4436,7 +4822,13 @@ export declare namespace cosmos {
4436
4822
  toJSON(message: _61.QueryGroupsByAdminRequest): unknown;
4437
4823
  fromPartial(object: {
4438
4824
  admin?: string;
4439
- pagination?: any;
4825
+ pagination?: {
4826
+ key?: Uint8Array;
4827
+ offset?: any;
4828
+ limit?: any;
4829
+ countTotal?: boolean;
4830
+ reverse?: boolean;
4831
+ };
4440
4832
  }): _61.QueryGroupsByAdminRequest;
4441
4833
  };
4442
4834
  QueryGroupsByAdminResponse: {
@@ -4453,7 +4845,10 @@ export declare namespace cosmos {
4453
4845
  totalWeight?: string;
4454
4846
  createdAt?: Date;
4455
4847
  }[];
4456
- pagination?: any;
4848
+ pagination?: {
4849
+ nextKey?: Uint8Array;
4850
+ total?: any;
4851
+ };
4457
4852
  }): _61.QueryGroupsByAdminResponse;
4458
4853
  };
4459
4854
  QueryGroupPoliciesByGroupRequest: {
@@ -4463,7 +4858,13 @@ export declare namespace cosmos {
4463
4858
  toJSON(message: _61.QueryGroupPoliciesByGroupRequest): unknown;
4464
4859
  fromPartial(object: {
4465
4860
  groupId?: any;
4466
- pagination?: any;
4861
+ pagination?: {
4862
+ key?: Uint8Array;
4863
+ offset?: any;
4864
+ limit?: any;
4865
+ countTotal?: boolean;
4866
+ reverse?: boolean;
4867
+ };
4467
4868
  }): _61.QueryGroupPoliciesByGroupRequest;
4468
4869
  };
4469
4870
  QueryGroupPoliciesByGroupResponse: {
@@ -4484,7 +4885,10 @@ export declare namespace cosmos {
4484
4885
  };
4485
4886
  createdAt?: Date;
4486
4887
  }[];
4487
- pagination?: any;
4888
+ pagination?: {
4889
+ nextKey?: Uint8Array;
4890
+ total?: any;
4891
+ };
4488
4892
  }): _61.QueryGroupPoliciesByGroupResponse;
4489
4893
  };
4490
4894
  QueryGroupPoliciesByAdminRequest: {
@@ -4494,7 +4898,13 @@ export declare namespace cosmos {
4494
4898
  toJSON(message: _61.QueryGroupPoliciesByAdminRequest): unknown;
4495
4899
  fromPartial(object: {
4496
4900
  admin?: string;
4497
- pagination?: any;
4901
+ pagination?: {
4902
+ key?: Uint8Array;
4903
+ offset?: any;
4904
+ limit?: any;
4905
+ countTotal?: boolean;
4906
+ reverse?: boolean;
4907
+ };
4498
4908
  }): _61.QueryGroupPoliciesByAdminRequest;
4499
4909
  };
4500
4910
  QueryGroupPoliciesByAdminResponse: {
@@ -4515,7 +4925,10 @@ export declare namespace cosmos {
4515
4925
  };
4516
4926
  createdAt?: Date;
4517
4927
  }[];
4518
- pagination?: any;
4928
+ pagination?: {
4929
+ nextKey?: Uint8Array;
4930
+ total?: any;
4931
+ };
4519
4932
  }): _61.QueryGroupPoliciesByAdminResponse;
4520
4933
  };
4521
4934
  QueryProposalRequest: {
@@ -4565,7 +4978,13 @@ export declare namespace cosmos {
4565
4978
  toJSON(message: _61.QueryProposalsByGroupPolicyRequest): unknown;
4566
4979
  fromPartial(object: {
4567
4980
  address?: string;
4568
- pagination?: any;
4981
+ pagination?: {
4982
+ key?: Uint8Array;
4983
+ offset?: any;
4984
+ limit?: any;
4985
+ countTotal?: boolean;
4986
+ reverse?: boolean;
4987
+ };
4569
4988
  }): _61.QueryProposalsByGroupPolicyRequest;
4570
4989
  };
4571
4990
  QueryProposalsByGroupPolicyResponse: {
@@ -4597,7 +5016,10 @@ export declare namespace cosmos {
4597
5016
  value?: Uint8Array;
4598
5017
  }[];
4599
5018
  }[];
4600
- pagination?: any;
5019
+ pagination?: {
5020
+ nextKey?: Uint8Array;
5021
+ total?: any;
5022
+ };
4601
5023
  }): _61.QueryProposalsByGroupPolicyResponse;
4602
5024
  };
4603
5025
  QueryVoteByProposalVoterRequest: {
@@ -4632,7 +5054,13 @@ export declare namespace cosmos {
4632
5054
  toJSON(message: _61.QueryVotesByProposalRequest): unknown;
4633
5055
  fromPartial(object: {
4634
5056
  proposalId?: any;
4635
- pagination?: any;
5057
+ pagination?: {
5058
+ key?: Uint8Array;
5059
+ offset?: any;
5060
+ limit?: any;
5061
+ countTotal?: boolean;
5062
+ reverse?: boolean;
5063
+ };
4636
5064
  }): _61.QueryVotesByProposalRequest;
4637
5065
  };
4638
5066
  QueryVotesByProposalResponse: {
@@ -4648,7 +5076,10 @@ export declare namespace cosmos {
4648
5076
  metadata?: string;
4649
5077
  submitTime?: Date;
4650
5078
  }[];
4651
- pagination?: any;
5079
+ pagination?: {
5080
+ nextKey?: Uint8Array;
5081
+ total?: any;
5082
+ };
4652
5083
  }): _61.QueryVotesByProposalResponse;
4653
5084
  };
4654
5085
  QueryVotesByVoterRequest: {
@@ -4658,7 +5089,13 @@ export declare namespace cosmos {
4658
5089
  toJSON(message: _61.QueryVotesByVoterRequest): unknown;
4659
5090
  fromPartial(object: {
4660
5091
  voter?: string;
4661
- pagination?: any;
5092
+ pagination?: {
5093
+ key?: Uint8Array;
5094
+ offset?: any;
5095
+ limit?: any;
5096
+ countTotal?: boolean;
5097
+ reverse?: boolean;
5098
+ };
4662
5099
  }): _61.QueryVotesByVoterRequest;
4663
5100
  };
4664
5101
  QueryVotesByVoterResponse: {
@@ -4674,7 +5111,10 @@ export declare namespace cosmos {
4674
5111
  metadata?: string;
4675
5112
  submitTime?: Date;
4676
5113
  }[];
4677
- pagination?: any;
5114
+ pagination?: {
5115
+ nextKey?: Uint8Array;
5116
+ total?: any;
5117
+ };
4678
5118
  }): _61.QueryVotesByVoterResponse;
4679
5119
  };
4680
5120
  QueryGroupsByMemberRequest: {
@@ -4684,7 +5124,13 @@ export declare namespace cosmos {
4684
5124
  toJSON(message: _61.QueryGroupsByMemberRequest): unknown;
4685
5125
  fromPartial(object: {
4686
5126
  address?: string;
4687
- pagination?: any;
5127
+ pagination?: {
5128
+ key?: Uint8Array;
5129
+ offset?: any;
5130
+ limit?: any;
5131
+ countTotal?: boolean;
5132
+ reverse?: boolean;
5133
+ };
4688
5134
  }): _61.QueryGroupsByMemberRequest;
4689
5135
  };
4690
5136
  QueryGroupsByMemberResponse: {
@@ -4701,7 +5147,10 @@ export declare namespace cosmos {
4701
5147
  totalWeight?: string;
4702
5148
  createdAt?: Date;
4703
5149
  }[];
4704
- pagination?: any;
5150
+ pagination?: {
5151
+ nextKey?: Uint8Array;
5152
+ total?: any;
5153
+ };
4705
5154
  }): _61.QueryGroupsByMemberResponse;
4706
5155
  };
4707
5156
  QueryTallyResultRequest: {
@@ -5215,7 +5664,10 @@ export declare namespace cosmos {
5215
5664
  typeUrl?: string;
5216
5665
  value?: Uint8Array;
5217
5666
  };
5218
- value?: any;
5667
+ value?: {
5668
+ denom?: string;
5669
+ amount?: string;
5670
+ };
5219
5671
  }): _85.MsgCreateValidator;
5220
5672
  };
5221
5673
  MsgCreateValidatorResponse: {
@@ -5258,7 +5710,10 @@ export declare namespace cosmos {
5258
5710
  fromPartial(object: {
5259
5711
  delegatorAddress?: string;
5260
5712
  validatorAddress?: string;
5261
- amount?: any;
5713
+ amount?: {
5714
+ denom?: string;
5715
+ amount?: string;
5716
+ };
5262
5717
  }): _85.MsgDelegate;
5263
5718
  };
5264
5719
  MsgDelegateResponse: {
@@ -5277,7 +5732,10 @@ export declare namespace cosmos {
5277
5732
  delegatorAddress?: string;
5278
5733
  validatorSrcAddress?: string;
5279
5734
  validatorDstAddress?: string;
5280
- amount?: any;
5735
+ amount?: {
5736
+ denom?: string;
5737
+ amount?: string;
5738
+ };
5281
5739
  }): _85.MsgBeginRedelegate;
5282
5740
  };
5283
5741
  MsgBeginRedelegateResponse: {
@@ -5297,7 +5755,10 @@ export declare namespace cosmos {
5297
5755
  fromPartial(object: {
5298
5756
  delegatorAddress?: string;
5299
5757
  validatorAddress?: string;
5300
- amount?: any;
5758
+ amount?: {
5759
+ denom?: string;
5760
+ amount?: string;
5761
+ };
5301
5762
  }): _85.MsgUndelegate;
5302
5763
  };
5303
5764
  MsgUndelegateResponse: {
@@ -5598,7 +6059,10 @@ export declare namespace cosmos {
5598
6059
  validatorAddress?: string;
5599
6060
  shares?: string;
5600
6061
  };
5601
- balance?: any;
6062
+ balance?: {
6063
+ denom?: string;
6064
+ amount?: string;
6065
+ };
5602
6066
  }): _84.DelegationResponse;
5603
6067
  };
5604
6068
  RedelegationEntryResponse: {
@@ -5661,7 +6125,13 @@ export declare namespace cosmos {
5661
6125
  toJSON(message: _83.QueryValidatorsRequest): unknown;
5662
6126
  fromPartial(object: {
5663
6127
  status?: string;
5664
- pagination?: any;
6128
+ pagination?: {
6129
+ key?: Uint8Array;
6130
+ offset?: any;
6131
+ limit?: any;
6132
+ countTotal?: boolean;
6133
+ reverse?: boolean;
6134
+ };
5665
6135
  }): _83.QueryValidatorsRequest;
5666
6136
  };
5667
6137
  QueryValidatorsResponse: {
@@ -5699,7 +6169,10 @@ export declare namespace cosmos {
5699
6169
  };
5700
6170
  minSelfDelegation?: string;
5701
6171
  }[];
5702
- pagination?: any;
6172
+ pagination?: {
6173
+ nextKey?: Uint8Array;
6174
+ total?: any;
6175
+ };
5703
6176
  }): _83.QueryValidatorsResponse;
5704
6177
  };
5705
6178
  QueryValidatorRequest: {
@@ -5755,7 +6228,13 @@ export declare namespace cosmos {
5755
6228
  toJSON(message: _83.QueryValidatorDelegationsRequest): unknown;
5756
6229
  fromPartial(object: {
5757
6230
  validatorAddr?: string;
5758
- pagination?: any;
6231
+ pagination?: {
6232
+ key?: Uint8Array;
6233
+ offset?: any;
6234
+ limit?: any;
6235
+ countTotal?: boolean;
6236
+ reverse?: boolean;
6237
+ };
5759
6238
  }): _83.QueryValidatorDelegationsRequest;
5760
6239
  };
5761
6240
  QueryValidatorDelegationsResponse: {
@@ -5770,9 +6249,15 @@ export declare namespace cosmos {
5770
6249
  validatorAddress?: string;
5771
6250
  shares?: string;
5772
6251
  };
5773
- balance?: any;
6252
+ balance?: {
6253
+ denom?: string;
6254
+ amount?: string;
6255
+ };
5774
6256
  }[];
5775
- pagination?: any;
6257
+ pagination?: {
6258
+ nextKey?: Uint8Array;
6259
+ total?: any;
6260
+ };
5776
6261
  }): _83.QueryValidatorDelegationsResponse;
5777
6262
  };
5778
6263
  QueryValidatorUnbondingDelegationsRequest: {
@@ -5782,7 +6267,13 @@ export declare namespace cosmos {
5782
6267
  toJSON(message: _83.QueryValidatorUnbondingDelegationsRequest): unknown;
5783
6268
  fromPartial(object: {
5784
6269
  validatorAddr?: string;
5785
- pagination?: any;
6270
+ pagination?: {
6271
+ key?: Uint8Array;
6272
+ offset?: any;
6273
+ limit?: any;
6274
+ countTotal?: boolean;
6275
+ reverse?: boolean;
6276
+ };
5786
6277
  }): _83.QueryValidatorUnbondingDelegationsRequest;
5787
6278
  };
5788
6279
  QueryValidatorUnbondingDelegationsResponse: {
@@ -5801,7 +6292,10 @@ export declare namespace cosmos {
5801
6292
  balance?: string;
5802
6293
  }[];
5803
6294
  }[];
5804
- pagination?: any;
6295
+ pagination?: {
6296
+ nextKey?: Uint8Array;
6297
+ total?: any;
6298
+ };
5805
6299
  }): _83.QueryValidatorUnbondingDelegationsResponse;
5806
6300
  };
5807
6301
  QueryDelegationRequest: {
@@ -5826,7 +6320,10 @@ export declare namespace cosmos {
5826
6320
  validatorAddress?: string;
5827
6321
  shares?: string;
5828
6322
  };
5829
- balance?: any;
6323
+ balance?: {
6324
+ denom?: string;
6325
+ amount?: string;
6326
+ };
5830
6327
  };
5831
6328
  }): _83.QueryDelegationResponse;
5832
6329
  };
@@ -5865,7 +6362,13 @@ export declare namespace cosmos {
5865
6362
  toJSON(message: _83.QueryDelegatorDelegationsRequest): unknown;
5866
6363
  fromPartial(object: {
5867
6364
  delegatorAddr?: string;
5868
- pagination?: any;
6365
+ pagination?: {
6366
+ key?: Uint8Array;
6367
+ offset?: any;
6368
+ limit?: any;
6369
+ countTotal?: boolean;
6370
+ reverse?: boolean;
6371
+ };
5869
6372
  }): _83.QueryDelegatorDelegationsRequest;
5870
6373
  };
5871
6374
  QueryDelegatorDelegationsResponse: {
@@ -5880,9 +6383,15 @@ export declare namespace cosmos {
5880
6383
  validatorAddress?: string;
5881
6384
  shares?: string;
5882
6385
  };
5883
- balance?: any;
6386
+ balance?: {
6387
+ denom?: string;
6388
+ amount?: string;
6389
+ };
5884
6390
  }[];
5885
- pagination?: any;
6391
+ pagination?: {
6392
+ nextKey?: Uint8Array;
6393
+ total?: any;
6394
+ };
5886
6395
  }): _83.QueryDelegatorDelegationsResponse;
5887
6396
  };
5888
6397
  QueryDelegatorUnbondingDelegationsRequest: {
@@ -5892,7 +6401,13 @@ export declare namespace cosmos {
5892
6401
  toJSON(message: _83.QueryDelegatorUnbondingDelegationsRequest): unknown;
5893
6402
  fromPartial(object: {
5894
6403
  delegatorAddr?: string;
5895
- pagination?: any;
6404
+ pagination?: {
6405
+ key?: Uint8Array;
6406
+ offset?: any;
6407
+ limit?: any;
6408
+ countTotal?: boolean;
6409
+ reverse?: boolean;
6410
+ };
5896
6411
  }): _83.QueryDelegatorUnbondingDelegationsRequest;
5897
6412
  };
5898
6413
  QueryDelegatorUnbondingDelegationsResponse: {
@@ -5911,7 +6426,10 @@ export declare namespace cosmos {
5911
6426
  balance?: string;
5912
6427
  }[];
5913
6428
  }[];
5914
- pagination?: any;
6429
+ pagination?: {
6430
+ nextKey?: Uint8Array;
6431
+ total?: any;
6432
+ };
5915
6433
  }): _83.QueryDelegatorUnbondingDelegationsResponse;
5916
6434
  };
5917
6435
  QueryRedelegationsRequest: {
@@ -5923,7 +6441,13 @@ export declare namespace cosmos {
5923
6441
  delegatorAddr?: string;
5924
6442
  srcValidatorAddr?: string;
5925
6443
  dstValidatorAddr?: string;
5926
- pagination?: any;
6444
+ pagination?: {
6445
+ key?: Uint8Array;
6446
+ offset?: any;
6447
+ limit?: any;
6448
+ countTotal?: boolean;
6449
+ reverse?: boolean;
6450
+ };
5927
6451
  }): _83.QueryRedelegationsRequest;
5928
6452
  };
5929
6453
  QueryRedelegationsResponse: {
@@ -5954,7 +6478,10 @@ export declare namespace cosmos {
5954
6478
  balance?: string;
5955
6479
  }[];
5956
6480
  }[];
5957
- pagination?: any;
6481
+ pagination?: {
6482
+ nextKey?: Uint8Array;
6483
+ total?: any;
6484
+ };
5958
6485
  }): _83.QueryRedelegationsResponse;
5959
6486
  };
5960
6487
  QueryDelegatorValidatorsRequest: {
@@ -5964,7 +6491,13 @@ export declare namespace cosmos {
5964
6491
  toJSON(message: _83.QueryDelegatorValidatorsRequest): unknown;
5965
6492
  fromPartial(object: {
5966
6493
  delegatorAddr?: string;
5967
- pagination?: any;
6494
+ pagination?: {
6495
+ key?: Uint8Array;
6496
+ offset?: any;
6497
+ limit?: any;
6498
+ countTotal?: boolean;
6499
+ reverse?: boolean;
6500
+ };
5968
6501
  }): _83.QueryDelegatorValidatorsRequest;
5969
6502
  };
5970
6503
  QueryDelegatorValidatorsResponse: {
@@ -6002,7 +6535,10 @@ export declare namespace cosmos {
6002
6535
  };
6003
6536
  minSelfDelegation?: string;
6004
6537
  }[];
6005
- pagination?: any;
6538
+ pagination?: {
6539
+ nextKey?: Uint8Array;
6540
+ total?: any;
6541
+ };
6006
6542
  }): _83.QueryDelegatorValidatorsResponse;
6007
6543
  };
6008
6544
  QueryDelegatorValidatorRequest: {
@@ -6269,7 +6805,10 @@ export declare namespace cosmos {
6269
6805
  fromJSON(object: any): _81.StakeAuthorization;
6270
6806
  toJSON(message: _81.StakeAuthorization): unknown;
6271
6807
  fromPartial(object: {
6272
- maxTokens?: any;
6808
+ maxTokens?: {
6809
+ denom?: string;
6810
+ amount?: string;
6811
+ };
6273
6812
  allowList?: {
6274
6813
  address?: string[];
6275
6814
  };
@@ -6439,13 +6978,19 @@ export declare namespace cosmos {
6439
6978
  sequence?: any;
6440
6979
  }[];
6441
6980
  fee?: {
6442
- amount?: any[];
6981
+ amount?: {
6982
+ denom?: string;
6983
+ amount?: string;
6984
+ }[];
6443
6985
  gasLimit?: any;
6444
6986
  payer?: string;
6445
6987
  granter?: string;
6446
6988
  };
6447
6989
  tip?: {
6448
- amount?: any[];
6990
+ amount?: {
6991
+ denom?: string;
6992
+ amount?: string;
6993
+ }[];
6449
6994
  tipper?: string;
6450
6995
  };
6451
6996
  };
@@ -6490,7 +7035,10 @@ export declare namespace cosmos {
6490
7035
  accountNumber?: any;
6491
7036
  sequence?: any;
6492
7037
  tip?: {
6493
- amount?: any[];
7038
+ amount?: {
7039
+ denom?: string;
7040
+ amount?: string;
7041
+ }[];
6494
7042
  tipper?: string;
6495
7043
  };
6496
7044
  }): _88.SignDocDirectAux;
@@ -6543,13 +7091,19 @@ export declare namespace cosmos {
6543
7091
  sequence?: any;
6544
7092
  }[];
6545
7093
  fee?: {
6546
- amount?: any[];
7094
+ amount?: {
7095
+ denom?: string;
7096
+ amount?: string;
7097
+ }[];
6547
7098
  gasLimit?: any;
6548
7099
  payer?: string;
6549
7100
  granter?: string;
6550
7101
  };
6551
7102
  tip?: {
6552
- amount?: any[];
7103
+ amount?: {
7104
+ denom?: string;
7105
+ amount?: string;
7106
+ }[];
6553
7107
  tipper?: string;
6554
7108
  };
6555
7109
  }): _88.AuthInfo;
@@ -6625,7 +7179,10 @@ export declare namespace cosmos {
6625
7179
  fromJSON(object: any): _88.Fee;
6626
7180
  toJSON(message: _88.Fee): unknown;
6627
7181
  fromPartial(object: {
6628
- amount?: any[];
7182
+ amount?: {
7183
+ denom?: string;
7184
+ amount?: string;
7185
+ }[];
6629
7186
  gasLimit?: any;
6630
7187
  payer?: string;
6631
7188
  granter?: string;
@@ -6637,7 +7194,10 @@ export declare namespace cosmos {
6637
7194
  fromJSON(object: any): _88.Tip;
6638
7195
  toJSON(message: _88.Tip): unknown;
6639
7196
  fromPartial(object: {
6640
- amount?: any[];
7197
+ amount?: {
7198
+ denom?: string;
7199
+ amount?: string;
7200
+ }[];
6641
7201
  tipper?: string;
6642
7202
  }): _88.Tip;
6643
7203
  };
@@ -6658,7 +7218,10 @@ export declare namespace cosmos {
6658
7218
  accountNumber?: any;
6659
7219
  sequence?: any;
6660
7220
  tip?: {
6661
- amount?: any[];
7221
+ amount?: {
7222
+ denom?: string;
7223
+ amount?: string;
7224
+ }[];
6662
7225
  tipper?: string;
6663
7226
  };
6664
7227
  };
@@ -6679,7 +7242,13 @@ export declare namespace cosmos {
6679
7242
  toJSON(message: _87.GetTxsEventRequest): unknown;
6680
7243
  fromPartial(object: {
6681
7244
  events?: string[];
6682
- pagination?: any;
7245
+ pagination?: {
7246
+ key?: Uint8Array;
7247
+ offset?: any;
7248
+ limit?: any;
7249
+ countTotal?: boolean;
7250
+ reverse?: boolean;
7251
+ };
6683
7252
  orderBy?: _87.OrderBy;
6684
7253
  }): _87.GetTxsEventRequest;
6685
7254
  };
@@ -6727,20 +7296,29 @@ export declare namespace cosmos {
6727
7296
  sequence?: any;
6728
7297
  }[];
6729
7298
  fee?: {
6730
- amount?: any[];
7299
+ amount?: {
7300
+ denom?: string;
7301
+ amount?: string;
7302
+ }[];
6731
7303
  gasLimit?: any;
6732
7304
  payer?: string;
6733
7305
  granter?: string;
6734
7306
  };
6735
7307
  tip?: {
6736
- amount?: any[];
7308
+ amount?: {
7309
+ denom?: string;
7310
+ amount?: string;
7311
+ }[];
6737
7312
  tipper?: string;
6738
7313
  };
6739
7314
  };
6740
7315
  signatures?: Uint8Array[];
6741
7316
  }[];
6742
7317
  txResponses?: any[];
6743
- pagination?: any;
7318
+ pagination?: {
7319
+ nextKey?: Uint8Array;
7320
+ total?: any;
7321
+ };
6744
7322
  }): _87.GetTxsEventResponse;
6745
7323
  };
6746
7324
  BroadcastTxRequest: {
@@ -6806,13 +7384,19 @@ export declare namespace cosmos {
6806
7384
  sequence?: any;
6807
7385
  }[];
6808
7386
  fee?: {
6809
- amount?: any[];
7387
+ amount?: {
7388
+ denom?: string;
7389
+ amount?: string;
7390
+ }[];
6810
7391
  gasLimit?: any;
6811
7392
  payer?: string;
6812
7393
  granter?: string;
6813
7394
  };
6814
7395
  tip?: {
6815
- amount?: any[];
7396
+ amount?: {
7397
+ denom?: string;
7398
+ amount?: string;
7399
+ }[];
6816
7400
  tipper?: string;
6817
7401
  };
6818
7402
  };
@@ -6884,13 +7468,19 @@ export declare namespace cosmos {
6884
7468
  sequence?: any;
6885
7469
  }[];
6886
7470
  fee?: {
6887
- amount?: any[];
7471
+ amount?: {
7472
+ denom?: string;
7473
+ amount?: string;
7474
+ }[];
6888
7475
  gasLimit?: any;
6889
7476
  payer?: string;
6890
7477
  granter?: string;
6891
7478
  };
6892
7479
  tip?: {
6893
- amount?: any[];
7480
+ amount?: {
7481
+ denom?: string;
7482
+ amount?: string;
7483
+ }[];
6894
7484
  tipper?: string;
6895
7485
  };
6896
7486
  };
@@ -6906,7 +7496,13 @@ export declare namespace cosmos {
6906
7496
  toJSON(message: _87.GetBlockWithTxsRequest): unknown;
6907
7497
  fromPartial(object: {
6908
7498
  height?: any;
6909
- pagination?: any;
7499
+ pagination?: {
7500
+ key?: Uint8Array;
7501
+ offset?: any;
7502
+ limit?: any;
7503
+ countTotal?: boolean;
7504
+ reverse?: boolean;
7505
+ };
6910
7506
  }): _87.GetBlockWithTxsRequest;
6911
7507
  };
6912
7508
  GetBlockWithTxsResponse: {
@@ -6953,13 +7549,19 @@ export declare namespace cosmos {
6953
7549
  sequence?: any;
6954
7550
  }[];
6955
7551
  fee?: {
6956
- amount?: any[];
7552
+ amount?: {
7553
+ denom?: string;
7554
+ amount?: string;
7555
+ }[];
6957
7556
  gasLimit?: any;
6958
7557
  payer?: string;
6959
7558
  granter?: string;
6960
7559
  };
6961
7560
  tip?: {
6962
- amount?: any[];
7561
+ amount?: {
7562
+ denom?: string;
7563
+ amount?: string;
7564
+ }[];
6963
7565
  tipper?: string;
6964
7566
  };
6965
7567
  };
@@ -7141,7 +7743,10 @@ export declare namespace cosmos {
7141
7743
  }[];
7142
7744
  };
7143
7745
  };
7144
- pagination?: any;
7746
+ pagination?: {
7747
+ nextKey?: Uint8Array;
7748
+ total?: any;
7749
+ };
7145
7750
  }): _87.GetBlockWithTxsResponse;
7146
7751
  };
7147
7752
  };