@sparkdreamnft/sparkdreamjs 0.0.4 → 0.0.5

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 (88) hide show
  1. package/cosmos/auth/v1beta1/tx.registry.d.ts +23 -0
  2. package/cosmos/auth/v1beta1/tx.registry.js +33 -1
  3. package/cosmos/authz/v1beta1/tx.registry.d.ts +47 -0
  4. package/cosmos/authz/v1beta1/tx.registry.js +69 -1
  5. package/cosmos/bank/v1beta1/tx.registry.d.ts +59 -0
  6. package/cosmos/bank/v1beta1/tx.registry.js +87 -1
  7. package/cosmos/benchmark/v1/tx.registry.d.ts +23 -0
  8. package/cosmos/benchmark/v1/tx.registry.js +33 -1
  9. package/cosmos/bundle.d.ts +957 -0
  10. package/cosmos/circuit/v1/tx.registry.d.ts +47 -0
  11. package/cosmos/circuit/v1/tx.registry.js +69 -1
  12. package/cosmos/consensus/v1/tx.registry.d.ts +23 -0
  13. package/cosmos/consensus/v1/tx.registry.js +33 -1
  14. package/cosmos/counter/v1/tx.registry.d.ts +23 -0
  15. package/cosmos/counter/v1/tx.registry.js +33 -1
  16. package/cosmos/distribution/v1beta1/tx.registry.d.ts +95 -0
  17. package/cosmos/distribution/v1beta1/tx.registry.js +141 -1
  18. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +47 -0
  19. package/cosmos/feegrant/v1beta1/tx.registry.js +69 -1
  20. package/cosmos/gov/v1/tx.registry.d.ts +95 -0
  21. package/cosmos/gov/v1/tx.registry.js +141 -1
  22. package/cosmos/gov/v1beta1/tx.registry.d.ts +59 -0
  23. package/cosmos/gov/v1beta1/tx.registry.js +87 -1
  24. package/cosmos/group/v1/tx.registry.d.ts +179 -0
  25. package/cosmos/group/v1/tx.registry.js +267 -1
  26. package/cosmos/mint/v1beta1/tx.registry.d.ts +23 -0
  27. package/cosmos/mint/v1beta1/tx.registry.js +33 -1
  28. package/cosmos/protocolpool/v1/tx.registry.d.ts +71 -0
  29. package/cosmos/protocolpool/v1/tx.registry.js +105 -1
  30. package/cosmos/staking/v1beta1/tx.registry.d.ts +95 -0
  31. package/cosmos/staking/v1beta1/tx.registry.js +141 -1
  32. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +35 -0
  33. package/cosmos/upgrade/v1beta1/tx.registry.js +51 -1
  34. package/cosmos/vesting/v1beta1/tx.registry.d.ts +47 -0
  35. package/cosmos/vesting/v1beta1/tx.registry.js +69 -1
  36. package/esm/cosmos/auth/v1beta1/tx.registry.js +31 -0
  37. package/esm/cosmos/authz/v1beta1/tx.registry.js +67 -0
  38. package/esm/cosmos/bank/v1beta1/tx.registry.js +85 -0
  39. package/esm/cosmos/benchmark/v1/tx.registry.js +31 -0
  40. package/esm/cosmos/circuit/v1/tx.registry.js +67 -0
  41. package/esm/cosmos/consensus/v1/tx.registry.js +31 -0
  42. package/esm/cosmos/counter/v1/tx.registry.js +31 -0
  43. package/esm/cosmos/distribution/v1beta1/tx.registry.js +139 -0
  44. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +67 -0
  45. package/esm/cosmos/gov/v1/tx.registry.js +139 -0
  46. package/esm/cosmos/gov/v1beta1/tx.registry.js +85 -0
  47. package/esm/cosmos/group/v1/tx.registry.js +265 -0
  48. package/esm/cosmos/mint/v1beta1/tx.registry.js +31 -0
  49. package/esm/cosmos/protocolpool/v1/tx.registry.js +103 -0
  50. package/esm/cosmos/staking/v1beta1/tx.registry.js +139 -0
  51. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +49 -0
  52. package/esm/cosmos/vesting/v1beta1/tx.registry.js +67 -0
  53. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +67 -0
  54. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +49 -0
  55. package/esm/ibc/applications/transfer/v1/tx.registry.js +49 -0
  56. package/esm/ibc/core/channel/v1/tx.registry.js +193 -0
  57. package/esm/ibc/core/channel/v2/tx.registry.js +85 -0
  58. package/esm/ibc/core/client/v1/tx.registry.js +157 -0
  59. package/esm/ibc/core/client/v2/tx.registry.js +49 -0
  60. package/esm/ibc/core/connection/v1/tx.registry.js +103 -0
  61. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +67 -0
  62. package/esm/sparkdream/blog/tx.registry.js +85 -0
  63. package/esm/sparkdream/sparkdream/tx.registry.js +31 -0
  64. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +47 -0
  65. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +69 -1
  66. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +35 -0
  67. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +51 -1
  68. package/ibc/applications/transfer/v1/tx.registry.d.ts +35 -0
  69. package/ibc/applications/transfer/v1/tx.registry.js +51 -1
  70. package/ibc/bundle.d.ts +549 -0
  71. package/ibc/core/channel/v1/tx.registry.d.ts +131 -0
  72. package/ibc/core/channel/v1/tx.registry.js +195 -1
  73. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  74. package/ibc/core/channel/v2/tx.registry.js +87 -1
  75. package/ibc/core/client/v1/tx.registry.d.ts +107 -0
  76. package/ibc/core/client/v1/tx.registry.js +159 -1
  77. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  78. package/ibc/core/client/v2/tx.registry.js +51 -1
  79. package/ibc/core/connection/v1/tx.registry.d.ts +71 -0
  80. package/ibc/core/connection/v1/tx.registry.js +105 -1
  81. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +47 -0
  82. package/ibc/lightclients/wasm/v1/tx.registry.js +69 -1
  83. package/package.json +1 -1
  84. package/sparkdream/blog/tx.registry.d.ts +59 -0
  85. package/sparkdream/blog/tx.registry.js +87 -1
  86. package/sparkdream/bundle.d.ts +78 -0
  87. package/sparkdream/sparkdream/tx.registry.d.ts +23 -0
  88. package/sparkdream/sparkdream/tx.registry.js +33 -1
@@ -254,6 +254,27 @@ export declare namespace cosmos {
254
254
  };
255
255
  LCDQueryClient: typeof _226.LCDQueryClient;
256
256
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
257
+ load: (protoRegistry: Registry) => void;
258
+ MessageComposer: {
259
+ encoded: {
260
+ updateParams(value: _7.MsgUpdateParams): {
261
+ typeUrl: string;
262
+ value: Uint8Array<ArrayBufferLike>;
263
+ };
264
+ };
265
+ withTypeUrl: {
266
+ updateParams(value: _7.MsgUpdateParams): {
267
+ typeUrl: string;
268
+ value: _7.MsgUpdateParams;
269
+ };
270
+ };
271
+ fromPartial: {
272
+ updateParams(value: _7.MsgUpdateParams): {
273
+ typeUrl: string;
274
+ value: _7.MsgUpdateParams;
275
+ };
276
+ };
277
+ };
257
278
  AminoConverter: {
258
279
  "/cosmos.auth.v1beta1.MsgUpdateParams": {
259
280
  aminoType: string;
@@ -677,6 +698,51 @@ export declare namespace cosmos {
677
698
  };
678
699
  LCDQueryClient: typeof _227.LCDQueryClient;
679
700
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
701
+ load: (protoRegistry: Registry) => void;
702
+ MessageComposer: {
703
+ encoded: {
704
+ grant(value: _13.MsgGrant): {
705
+ typeUrl: string;
706
+ value: Uint8Array<ArrayBufferLike>;
707
+ };
708
+ exec(value: _13.MsgExec): {
709
+ typeUrl: string;
710
+ value: Uint8Array<ArrayBufferLike>;
711
+ };
712
+ revoke(value: _13.MsgRevoke): {
713
+ typeUrl: string;
714
+ value: Uint8Array<ArrayBufferLike>;
715
+ };
716
+ };
717
+ withTypeUrl: {
718
+ grant(value: _13.MsgGrant): {
719
+ typeUrl: string;
720
+ value: _13.MsgGrant;
721
+ };
722
+ exec(value: _13.MsgExec): {
723
+ typeUrl: string;
724
+ value: _13.MsgExec;
725
+ };
726
+ revoke(value: _13.MsgRevoke): {
727
+ typeUrl: string;
728
+ value: _13.MsgRevoke;
729
+ };
730
+ };
731
+ fromPartial: {
732
+ grant(value: _13.MsgGrant): {
733
+ typeUrl: string;
734
+ value: _13.MsgGrant;
735
+ };
736
+ exec(value: _13.MsgExec): {
737
+ typeUrl: string;
738
+ value: _13.MsgExec;
739
+ };
740
+ revoke(value: _13.MsgRevoke): {
741
+ typeUrl: string;
742
+ value: _13.MsgRevoke;
743
+ };
744
+ };
745
+ };
680
746
  AminoConverter: {
681
747
  "/cosmos.authz.v1beta1.MsgGrant": {
682
748
  aminoType: string;
@@ -1008,6 +1074,63 @@ export declare namespace cosmos {
1008
1074
  };
1009
1075
  LCDQueryClient: typeof _228.LCDQueryClient;
1010
1076
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
1077
+ load: (protoRegistry: Registry) => void;
1078
+ MessageComposer: {
1079
+ encoded: {
1080
+ send(value: _19.MsgSend): {
1081
+ typeUrl: string;
1082
+ value: Uint8Array<ArrayBufferLike>;
1083
+ };
1084
+ multiSend(value: _19.MsgMultiSend): {
1085
+ typeUrl: string;
1086
+ value: Uint8Array<ArrayBufferLike>;
1087
+ };
1088
+ updateParams(value: _19.MsgUpdateParams): {
1089
+ typeUrl: string;
1090
+ value: Uint8Array<ArrayBufferLike>;
1091
+ };
1092
+ setSendEnabled(value: _19.MsgSetSendEnabled): {
1093
+ typeUrl: string;
1094
+ value: Uint8Array<ArrayBufferLike>;
1095
+ };
1096
+ };
1097
+ withTypeUrl: {
1098
+ send(value: _19.MsgSend): {
1099
+ typeUrl: string;
1100
+ value: _19.MsgSend;
1101
+ };
1102
+ multiSend(value: _19.MsgMultiSend): {
1103
+ typeUrl: string;
1104
+ value: _19.MsgMultiSend;
1105
+ };
1106
+ updateParams(value: _19.MsgUpdateParams): {
1107
+ typeUrl: string;
1108
+ value: _19.MsgUpdateParams;
1109
+ };
1110
+ setSendEnabled(value: _19.MsgSetSendEnabled): {
1111
+ typeUrl: string;
1112
+ value: _19.MsgSetSendEnabled;
1113
+ };
1114
+ };
1115
+ fromPartial: {
1116
+ send(value: _19.MsgSend): {
1117
+ typeUrl: string;
1118
+ value: _19.MsgSend;
1119
+ };
1120
+ multiSend(value: _19.MsgMultiSend): {
1121
+ typeUrl: string;
1122
+ value: _19.MsgMultiSend;
1123
+ };
1124
+ updateParams(value: _19.MsgUpdateParams): {
1125
+ typeUrl: string;
1126
+ value: _19.MsgUpdateParams;
1127
+ };
1128
+ setSendEnabled(value: _19.MsgSetSendEnabled): {
1129
+ typeUrl: string;
1130
+ value: _19.MsgSetSendEnabled;
1131
+ };
1132
+ };
1133
+ };
1011
1134
  AminoConverter: {
1012
1135
  "/cosmos.bank.v1beta1.MsgSend": {
1013
1136
  aminoType: string;
@@ -2383,6 +2506,27 @@ export declare namespace cosmos {
2383
2506
  MsgClientImpl: typeof _267.MsgClientImpl;
2384
2507
  createClientImpl: (rpc: import("..").TxRpc) => _267.MsgClientImpl;
2385
2508
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
2509
+ load: (protoRegistry: Registry) => void;
2510
+ MessageComposer: {
2511
+ encoded: {
2512
+ loadTest(value: _27.MsgLoadTest): {
2513
+ typeUrl: string;
2514
+ value: Uint8Array<ArrayBufferLike>;
2515
+ };
2516
+ };
2517
+ withTypeUrl: {
2518
+ loadTest(value: _27.MsgLoadTest): {
2519
+ typeUrl: string;
2520
+ value: _27.MsgLoadTest;
2521
+ };
2522
+ };
2523
+ fromPartial: {
2524
+ loadTest(value: _27.MsgLoadTest): {
2525
+ typeUrl: string;
2526
+ value: _27.MsgLoadTest;
2527
+ };
2528
+ };
2529
+ };
2386
2530
  AminoConverter: {
2387
2531
  "/cosmos.benchmark.v1.MsgLoadTest": {
2388
2532
  aminoType: string;
@@ -2464,6 +2608,51 @@ export declare namespace cosmos {
2464
2608
  };
2465
2609
  LCDQueryClient: typeof _230.LCDQueryClient;
2466
2610
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
2611
+ load: (protoRegistry: Registry) => void;
2612
+ MessageComposer: {
2613
+ encoded: {
2614
+ authorizeCircuitBreaker(value: _30.MsgAuthorizeCircuitBreaker): {
2615
+ typeUrl: string;
2616
+ value: Uint8Array<ArrayBufferLike>;
2617
+ };
2618
+ tripCircuitBreaker(value: _30.MsgTripCircuitBreaker): {
2619
+ typeUrl: string;
2620
+ value: Uint8Array<ArrayBufferLike>;
2621
+ };
2622
+ resetCircuitBreaker(value: _30.MsgResetCircuitBreaker): {
2623
+ typeUrl: string;
2624
+ value: Uint8Array<ArrayBufferLike>;
2625
+ };
2626
+ };
2627
+ withTypeUrl: {
2628
+ authorizeCircuitBreaker(value: _30.MsgAuthorizeCircuitBreaker): {
2629
+ typeUrl: string;
2630
+ value: _30.MsgAuthorizeCircuitBreaker;
2631
+ };
2632
+ tripCircuitBreaker(value: _30.MsgTripCircuitBreaker): {
2633
+ typeUrl: string;
2634
+ value: _30.MsgTripCircuitBreaker;
2635
+ };
2636
+ resetCircuitBreaker(value: _30.MsgResetCircuitBreaker): {
2637
+ typeUrl: string;
2638
+ value: _30.MsgResetCircuitBreaker;
2639
+ };
2640
+ };
2641
+ fromPartial: {
2642
+ authorizeCircuitBreaker(value: _30.MsgAuthorizeCircuitBreaker): {
2643
+ typeUrl: string;
2644
+ value: _30.MsgAuthorizeCircuitBreaker;
2645
+ };
2646
+ tripCircuitBreaker(value: _30.MsgTripCircuitBreaker): {
2647
+ typeUrl: string;
2648
+ value: _30.MsgTripCircuitBreaker;
2649
+ };
2650
+ resetCircuitBreaker(value: _30.MsgResetCircuitBreaker): {
2651
+ typeUrl: string;
2652
+ value: _30.MsgResetCircuitBreaker;
2653
+ };
2654
+ };
2655
+ };
2467
2656
  AminoConverter: {
2468
2657
  "/cosmos.circuit.v1.MsgAuthorizeCircuitBreaker": {
2469
2658
  aminoType: string;
@@ -2725,6 +2914,27 @@ export declare namespace cosmos {
2725
2914
  };
2726
2915
  LCDQueryClient: typeof _231.LCDQueryClient;
2727
2916
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
2917
+ load: (protoRegistry: Registry) => void;
2918
+ MessageComposer: {
2919
+ encoded: {
2920
+ updateParams(value: _34.MsgUpdateParams): {
2921
+ typeUrl: string;
2922
+ value: Uint8Array<ArrayBufferLike>;
2923
+ };
2924
+ };
2925
+ withTypeUrl: {
2926
+ updateParams(value: _34.MsgUpdateParams): {
2927
+ typeUrl: string;
2928
+ value: _34.MsgUpdateParams;
2929
+ };
2930
+ };
2931
+ fromPartial: {
2932
+ updateParams(value: _34.MsgUpdateParams): {
2933
+ typeUrl: string;
2934
+ value: _34.MsgUpdateParams;
2935
+ };
2936
+ };
2937
+ };
2728
2938
  AminoConverter: {
2729
2939
  "/cosmos.consensus.v1.MsgUpdateParams": {
2730
2940
  aminoType: string;
@@ -2817,6 +3027,27 @@ export declare namespace cosmos {
2817
3027
  getCount(request?: _36.QueryGetCountRequest): Promise<_36.QueryGetCountResponse>;
2818
3028
  };
2819
3029
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
3030
+ load: (protoRegistry: Registry) => void;
3031
+ MessageComposer: {
3032
+ encoded: {
3033
+ increaseCount(value: _37.MsgIncreaseCounter): {
3034
+ typeUrl: string;
3035
+ value: Uint8Array<ArrayBufferLike>;
3036
+ };
3037
+ };
3038
+ withTypeUrl: {
3039
+ increaseCount(value: _37.MsgIncreaseCounter): {
3040
+ typeUrl: string;
3041
+ value: _37.MsgIncreaseCounter;
3042
+ };
3043
+ };
3044
+ fromPartial: {
3045
+ increaseCount(value: _37.MsgIncreaseCounter): {
3046
+ typeUrl: string;
3047
+ value: _37.MsgIncreaseCounter;
3048
+ };
3049
+ };
3050
+ };
2820
3051
  AminoConverter: {
2821
3052
  "/cosmos.counter.v1.MsgIncreaseCounter": {
2822
3053
  aminoType: string;
@@ -3139,6 +3370,99 @@ export declare namespace cosmos {
3139
3370
  };
3140
3371
  LCDQueryClient: typeof _232.LCDQueryClient;
3141
3372
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
3373
+ load: (protoRegistry: Registry) => void;
3374
+ MessageComposer: {
3375
+ encoded: {
3376
+ setWithdrawAddress(value: _49.MsgSetWithdrawAddress): {
3377
+ typeUrl: string;
3378
+ value: Uint8Array<ArrayBufferLike>;
3379
+ };
3380
+ withdrawDelegatorReward(value: _49.MsgWithdrawDelegatorReward): {
3381
+ typeUrl: string;
3382
+ value: Uint8Array<ArrayBufferLike>;
3383
+ };
3384
+ withdrawValidatorCommission(value: _49.MsgWithdrawValidatorCommission): {
3385
+ typeUrl: string;
3386
+ value: Uint8Array<ArrayBufferLike>;
3387
+ };
3388
+ fundCommunityPool(value: _49.MsgFundCommunityPool): {
3389
+ typeUrl: string;
3390
+ value: Uint8Array<ArrayBufferLike>;
3391
+ };
3392
+ updateParams(value: _49.MsgUpdateParams): {
3393
+ typeUrl: string;
3394
+ value: Uint8Array<ArrayBufferLike>;
3395
+ };
3396
+ communityPoolSpend(value: _49.MsgCommunityPoolSpend): {
3397
+ typeUrl: string;
3398
+ value: Uint8Array<ArrayBufferLike>;
3399
+ };
3400
+ depositValidatorRewardsPool(value: _49.MsgDepositValidatorRewardsPool): {
3401
+ typeUrl: string;
3402
+ value: Uint8Array<ArrayBufferLike>;
3403
+ };
3404
+ };
3405
+ withTypeUrl: {
3406
+ setWithdrawAddress(value: _49.MsgSetWithdrawAddress): {
3407
+ typeUrl: string;
3408
+ value: _49.MsgSetWithdrawAddress;
3409
+ };
3410
+ withdrawDelegatorReward(value: _49.MsgWithdrawDelegatorReward): {
3411
+ typeUrl: string;
3412
+ value: _49.MsgWithdrawDelegatorReward;
3413
+ };
3414
+ withdrawValidatorCommission(value: _49.MsgWithdrawValidatorCommission): {
3415
+ typeUrl: string;
3416
+ value: _49.MsgWithdrawValidatorCommission;
3417
+ };
3418
+ fundCommunityPool(value: _49.MsgFundCommunityPool): {
3419
+ typeUrl: string;
3420
+ value: _49.MsgFundCommunityPool;
3421
+ };
3422
+ updateParams(value: _49.MsgUpdateParams): {
3423
+ typeUrl: string;
3424
+ value: _49.MsgUpdateParams;
3425
+ };
3426
+ communityPoolSpend(value: _49.MsgCommunityPoolSpend): {
3427
+ typeUrl: string;
3428
+ value: _49.MsgCommunityPoolSpend;
3429
+ };
3430
+ depositValidatorRewardsPool(value: _49.MsgDepositValidatorRewardsPool): {
3431
+ typeUrl: string;
3432
+ value: _49.MsgDepositValidatorRewardsPool;
3433
+ };
3434
+ };
3435
+ fromPartial: {
3436
+ setWithdrawAddress(value: _49.MsgSetWithdrawAddress): {
3437
+ typeUrl: string;
3438
+ value: _49.MsgSetWithdrawAddress;
3439
+ };
3440
+ withdrawDelegatorReward(value: _49.MsgWithdrawDelegatorReward): {
3441
+ typeUrl: string;
3442
+ value: _49.MsgWithdrawDelegatorReward;
3443
+ };
3444
+ withdrawValidatorCommission(value: _49.MsgWithdrawValidatorCommission): {
3445
+ typeUrl: string;
3446
+ value: _49.MsgWithdrawValidatorCommission;
3447
+ };
3448
+ fundCommunityPool(value: _49.MsgFundCommunityPool): {
3449
+ typeUrl: string;
3450
+ value: _49.MsgFundCommunityPool;
3451
+ };
3452
+ updateParams(value: _49.MsgUpdateParams): {
3453
+ typeUrl: string;
3454
+ value: _49.MsgUpdateParams;
3455
+ };
3456
+ communityPoolSpend(value: _49.MsgCommunityPoolSpend): {
3457
+ typeUrl: string;
3458
+ value: _49.MsgCommunityPoolSpend;
3459
+ };
3460
+ depositValidatorRewardsPool(value: _49.MsgDepositValidatorRewardsPool): {
3461
+ typeUrl: string;
3462
+ value: _49.MsgDepositValidatorRewardsPool;
3463
+ };
3464
+ };
3465
+ };
3142
3466
  AminoConverter: {
3143
3467
  "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress": {
3144
3468
  aminoType: string;
@@ -4124,6 +4448,51 @@ export declare namespace cosmos {
4124
4448
  };
4125
4449
  LCDQueryClient: typeof _234.LCDQueryClient;
4126
4450
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
4451
+ load: (protoRegistry: Registry) => void;
4452
+ MessageComposer: {
4453
+ encoded: {
4454
+ grantAllowance(value: _59.MsgGrantAllowance): {
4455
+ typeUrl: string;
4456
+ value: Uint8Array<ArrayBufferLike>;
4457
+ };
4458
+ revokeAllowance(value: _59.MsgRevokeAllowance): {
4459
+ typeUrl: string;
4460
+ value: Uint8Array<ArrayBufferLike>;
4461
+ };
4462
+ pruneAllowances(value: _59.MsgPruneAllowances): {
4463
+ typeUrl: string;
4464
+ value: Uint8Array<ArrayBufferLike>;
4465
+ };
4466
+ };
4467
+ withTypeUrl: {
4468
+ grantAllowance(value: _59.MsgGrantAllowance): {
4469
+ typeUrl: string;
4470
+ value: _59.MsgGrantAllowance;
4471
+ };
4472
+ revokeAllowance(value: _59.MsgRevokeAllowance): {
4473
+ typeUrl: string;
4474
+ value: _59.MsgRevokeAllowance;
4475
+ };
4476
+ pruneAllowances(value: _59.MsgPruneAllowances): {
4477
+ typeUrl: string;
4478
+ value: _59.MsgPruneAllowances;
4479
+ };
4480
+ };
4481
+ fromPartial: {
4482
+ grantAllowance(value: _59.MsgGrantAllowance): {
4483
+ typeUrl: string;
4484
+ value: _59.MsgGrantAllowance;
4485
+ };
4486
+ revokeAllowance(value: _59.MsgRevokeAllowance): {
4487
+ typeUrl: string;
4488
+ value: _59.MsgRevokeAllowance;
4489
+ };
4490
+ pruneAllowances(value: _59.MsgPruneAllowances): {
4491
+ typeUrl: string;
4492
+ value: _59.MsgPruneAllowances;
4493
+ };
4494
+ };
4495
+ };
4127
4496
  AminoConverter: {
4128
4497
  "/cosmos.feegrant.v1beta1.MsgGrantAllowance": {
4129
4498
  aminoType: string;
@@ -4440,6 +4809,99 @@ export declare namespace cosmos {
4440
4809
  };
4441
4810
  LCDQueryClient: typeof _235.LCDQueryClient;
4442
4811
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
4812
+ load: (protoRegistry: Registry) => void;
4813
+ MessageComposer: {
4814
+ encoded: {
4815
+ submitProposal(value: _65.MsgSubmitProposal): {
4816
+ typeUrl: string;
4817
+ value: Uint8Array<ArrayBufferLike>;
4818
+ };
4819
+ execLegacyContent(value: _65.MsgExecLegacyContent): {
4820
+ typeUrl: string;
4821
+ value: Uint8Array<ArrayBufferLike>;
4822
+ };
4823
+ vote(value: _65.MsgVote): {
4824
+ typeUrl: string;
4825
+ value: Uint8Array<ArrayBufferLike>;
4826
+ };
4827
+ voteWeighted(value: _65.MsgVoteWeighted): {
4828
+ typeUrl: string;
4829
+ value: Uint8Array<ArrayBufferLike>;
4830
+ };
4831
+ deposit(value: _65.MsgDeposit): {
4832
+ typeUrl: string;
4833
+ value: Uint8Array<ArrayBufferLike>;
4834
+ };
4835
+ updateParams(value: _65.MsgUpdateParams): {
4836
+ typeUrl: string;
4837
+ value: Uint8Array<ArrayBufferLike>;
4838
+ };
4839
+ cancelProposal(value: _65.MsgCancelProposal): {
4840
+ typeUrl: string;
4841
+ value: Uint8Array<ArrayBufferLike>;
4842
+ };
4843
+ };
4844
+ withTypeUrl: {
4845
+ submitProposal(value: _65.MsgSubmitProposal): {
4846
+ typeUrl: string;
4847
+ value: _65.MsgSubmitProposal;
4848
+ };
4849
+ execLegacyContent(value: _65.MsgExecLegacyContent): {
4850
+ typeUrl: string;
4851
+ value: _65.MsgExecLegacyContent;
4852
+ };
4853
+ vote(value: _65.MsgVote): {
4854
+ typeUrl: string;
4855
+ value: _65.MsgVote;
4856
+ };
4857
+ voteWeighted(value: _65.MsgVoteWeighted): {
4858
+ typeUrl: string;
4859
+ value: _65.MsgVoteWeighted;
4860
+ };
4861
+ deposit(value: _65.MsgDeposit): {
4862
+ typeUrl: string;
4863
+ value: _65.MsgDeposit;
4864
+ };
4865
+ updateParams(value: _65.MsgUpdateParams): {
4866
+ typeUrl: string;
4867
+ value: _65.MsgUpdateParams;
4868
+ };
4869
+ cancelProposal(value: _65.MsgCancelProposal): {
4870
+ typeUrl: string;
4871
+ value: _65.MsgCancelProposal;
4872
+ };
4873
+ };
4874
+ fromPartial: {
4875
+ submitProposal(value: _65.MsgSubmitProposal): {
4876
+ typeUrl: string;
4877
+ value: _65.MsgSubmitProposal;
4878
+ };
4879
+ execLegacyContent(value: _65.MsgExecLegacyContent): {
4880
+ typeUrl: string;
4881
+ value: _65.MsgExecLegacyContent;
4882
+ };
4883
+ vote(value: _65.MsgVote): {
4884
+ typeUrl: string;
4885
+ value: _65.MsgVote;
4886
+ };
4887
+ voteWeighted(value: _65.MsgVoteWeighted): {
4888
+ typeUrl: string;
4889
+ value: _65.MsgVoteWeighted;
4890
+ };
4891
+ deposit(value: _65.MsgDeposit): {
4892
+ typeUrl: string;
4893
+ value: _65.MsgDeposit;
4894
+ };
4895
+ updateParams(value: _65.MsgUpdateParams): {
4896
+ typeUrl: string;
4897
+ value: _65.MsgUpdateParams;
4898
+ };
4899
+ cancelProposal(value: _65.MsgCancelProposal): {
4900
+ typeUrl: string;
4901
+ value: _65.MsgCancelProposal;
4902
+ };
4903
+ };
4904
+ };
4443
4905
  AminoConverter: {
4444
4906
  "/cosmos.gov.v1.MsgSubmitProposal": {
4445
4907
  aminoType: string;
@@ -5093,6 +5555,63 @@ export declare namespace cosmos {
5093
5555
  };
5094
5556
  LCDQueryClient: typeof _236.LCDQueryClient;
5095
5557
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
5558
+ load: (protoRegistry: Registry) => void;
5559
+ MessageComposer: {
5560
+ encoded: {
5561
+ submitProposal(value: _69.MsgSubmitProposal): {
5562
+ typeUrl: string;
5563
+ value: Uint8Array<ArrayBufferLike>;
5564
+ };
5565
+ vote(value: _69.MsgVote): {
5566
+ typeUrl: string;
5567
+ value: Uint8Array<ArrayBufferLike>;
5568
+ };
5569
+ voteWeighted(value: _69.MsgVoteWeighted): {
5570
+ typeUrl: string;
5571
+ value: Uint8Array<ArrayBufferLike>;
5572
+ };
5573
+ deposit(value: _69.MsgDeposit): {
5574
+ typeUrl: string;
5575
+ value: Uint8Array<ArrayBufferLike>;
5576
+ };
5577
+ };
5578
+ withTypeUrl: {
5579
+ submitProposal(value: _69.MsgSubmitProposal): {
5580
+ typeUrl: string;
5581
+ value: _69.MsgSubmitProposal;
5582
+ };
5583
+ vote(value: _69.MsgVote): {
5584
+ typeUrl: string;
5585
+ value: _69.MsgVote;
5586
+ };
5587
+ voteWeighted(value: _69.MsgVoteWeighted): {
5588
+ typeUrl: string;
5589
+ value: _69.MsgVoteWeighted;
5590
+ };
5591
+ deposit(value: _69.MsgDeposit): {
5592
+ typeUrl: string;
5593
+ value: _69.MsgDeposit;
5594
+ };
5595
+ };
5596
+ fromPartial: {
5597
+ submitProposal(value: _69.MsgSubmitProposal): {
5598
+ typeUrl: string;
5599
+ value: _69.MsgSubmitProposal;
5600
+ };
5601
+ vote(value: _69.MsgVote): {
5602
+ typeUrl: string;
5603
+ value: _69.MsgVote;
5604
+ };
5605
+ voteWeighted(value: _69.MsgVoteWeighted): {
5606
+ typeUrl: string;
5607
+ value: _69.MsgVoteWeighted;
5608
+ };
5609
+ deposit(value: _69.MsgDeposit): {
5610
+ typeUrl: string;
5611
+ value: _69.MsgDeposit;
5612
+ };
5613
+ };
5614
+ };
5096
5615
  AminoConverter: {
5097
5616
  "/cosmos.gov.v1beta1.MsgSubmitProposal": {
5098
5617
  aminoType: string;
@@ -5645,6 +6164,183 @@ export declare namespace cosmos {
5645
6164
  };
5646
6165
  LCDQueryClient: typeof _237.LCDQueryClient;
5647
6166
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
6167
+ load: (protoRegistry: Registry) => void;
6168
+ MessageComposer: {
6169
+ encoded: {
6170
+ createGroup(value: _74.MsgCreateGroup): {
6171
+ typeUrl: string;
6172
+ value: Uint8Array<ArrayBufferLike>;
6173
+ };
6174
+ updateGroupMembers(value: _74.MsgUpdateGroupMembers): {
6175
+ typeUrl: string;
6176
+ value: Uint8Array<ArrayBufferLike>;
6177
+ };
6178
+ updateGroupAdmin(value: _74.MsgUpdateGroupAdmin): {
6179
+ typeUrl: string;
6180
+ value: Uint8Array<ArrayBufferLike>;
6181
+ };
6182
+ updateGroupMetadata(value: _74.MsgUpdateGroupMetadata): {
6183
+ typeUrl: string;
6184
+ value: Uint8Array<ArrayBufferLike>;
6185
+ };
6186
+ createGroupPolicy(value: _74.MsgCreateGroupPolicy): {
6187
+ typeUrl: string;
6188
+ value: Uint8Array<ArrayBufferLike>;
6189
+ };
6190
+ createGroupWithPolicy(value: _74.MsgCreateGroupWithPolicy): {
6191
+ typeUrl: string;
6192
+ value: Uint8Array<ArrayBufferLike>;
6193
+ };
6194
+ updateGroupPolicyAdmin(value: _74.MsgUpdateGroupPolicyAdmin): {
6195
+ typeUrl: string;
6196
+ value: Uint8Array<ArrayBufferLike>;
6197
+ };
6198
+ updateGroupPolicyDecisionPolicy(value: _74.MsgUpdateGroupPolicyDecisionPolicy): {
6199
+ typeUrl: string;
6200
+ value: Uint8Array<ArrayBufferLike>;
6201
+ };
6202
+ updateGroupPolicyMetadata(value: _74.MsgUpdateGroupPolicyMetadata): {
6203
+ typeUrl: string;
6204
+ value: Uint8Array<ArrayBufferLike>;
6205
+ };
6206
+ submitProposal(value: _74.MsgSubmitProposal): {
6207
+ typeUrl: string;
6208
+ value: Uint8Array<ArrayBufferLike>;
6209
+ };
6210
+ withdrawProposal(value: _74.MsgWithdrawProposal): {
6211
+ typeUrl: string;
6212
+ value: Uint8Array<ArrayBufferLike>;
6213
+ };
6214
+ vote(value: _74.MsgVote): {
6215
+ typeUrl: string;
6216
+ value: Uint8Array<ArrayBufferLike>;
6217
+ };
6218
+ exec(value: _74.MsgExec): {
6219
+ typeUrl: string;
6220
+ value: Uint8Array<ArrayBufferLike>;
6221
+ };
6222
+ leaveGroup(value: _74.MsgLeaveGroup): {
6223
+ typeUrl: string;
6224
+ value: Uint8Array<ArrayBufferLike>;
6225
+ };
6226
+ };
6227
+ withTypeUrl: {
6228
+ createGroup(value: _74.MsgCreateGroup): {
6229
+ typeUrl: string;
6230
+ value: _74.MsgCreateGroup;
6231
+ };
6232
+ updateGroupMembers(value: _74.MsgUpdateGroupMembers): {
6233
+ typeUrl: string;
6234
+ value: _74.MsgUpdateGroupMembers;
6235
+ };
6236
+ updateGroupAdmin(value: _74.MsgUpdateGroupAdmin): {
6237
+ typeUrl: string;
6238
+ value: _74.MsgUpdateGroupAdmin;
6239
+ };
6240
+ updateGroupMetadata(value: _74.MsgUpdateGroupMetadata): {
6241
+ typeUrl: string;
6242
+ value: _74.MsgUpdateGroupMetadata;
6243
+ };
6244
+ createGroupPolicy(value: _74.MsgCreateGroupPolicy): {
6245
+ typeUrl: string;
6246
+ value: _74.MsgCreateGroupPolicy;
6247
+ };
6248
+ createGroupWithPolicy(value: _74.MsgCreateGroupWithPolicy): {
6249
+ typeUrl: string;
6250
+ value: _74.MsgCreateGroupWithPolicy;
6251
+ };
6252
+ updateGroupPolicyAdmin(value: _74.MsgUpdateGroupPolicyAdmin): {
6253
+ typeUrl: string;
6254
+ value: _74.MsgUpdateGroupPolicyAdmin;
6255
+ };
6256
+ updateGroupPolicyDecisionPolicy(value: _74.MsgUpdateGroupPolicyDecisionPolicy): {
6257
+ typeUrl: string;
6258
+ value: _74.MsgUpdateGroupPolicyDecisionPolicy;
6259
+ };
6260
+ updateGroupPolicyMetadata(value: _74.MsgUpdateGroupPolicyMetadata): {
6261
+ typeUrl: string;
6262
+ value: _74.MsgUpdateGroupPolicyMetadata;
6263
+ };
6264
+ submitProposal(value: _74.MsgSubmitProposal): {
6265
+ typeUrl: string;
6266
+ value: _74.MsgSubmitProposal;
6267
+ };
6268
+ withdrawProposal(value: _74.MsgWithdrawProposal): {
6269
+ typeUrl: string;
6270
+ value: _74.MsgWithdrawProposal;
6271
+ };
6272
+ vote(value: _74.MsgVote): {
6273
+ typeUrl: string;
6274
+ value: _74.MsgVote;
6275
+ };
6276
+ exec(value: _74.MsgExec): {
6277
+ typeUrl: string;
6278
+ value: _74.MsgExec;
6279
+ };
6280
+ leaveGroup(value: _74.MsgLeaveGroup): {
6281
+ typeUrl: string;
6282
+ value: _74.MsgLeaveGroup;
6283
+ };
6284
+ };
6285
+ fromPartial: {
6286
+ createGroup(value: _74.MsgCreateGroup): {
6287
+ typeUrl: string;
6288
+ value: _74.MsgCreateGroup;
6289
+ };
6290
+ updateGroupMembers(value: _74.MsgUpdateGroupMembers): {
6291
+ typeUrl: string;
6292
+ value: _74.MsgUpdateGroupMembers;
6293
+ };
6294
+ updateGroupAdmin(value: _74.MsgUpdateGroupAdmin): {
6295
+ typeUrl: string;
6296
+ value: _74.MsgUpdateGroupAdmin;
6297
+ };
6298
+ updateGroupMetadata(value: _74.MsgUpdateGroupMetadata): {
6299
+ typeUrl: string;
6300
+ value: _74.MsgUpdateGroupMetadata;
6301
+ };
6302
+ createGroupPolicy(value: _74.MsgCreateGroupPolicy): {
6303
+ typeUrl: string;
6304
+ value: _74.MsgCreateGroupPolicy;
6305
+ };
6306
+ createGroupWithPolicy(value: _74.MsgCreateGroupWithPolicy): {
6307
+ typeUrl: string;
6308
+ value: _74.MsgCreateGroupWithPolicy;
6309
+ };
6310
+ updateGroupPolicyAdmin(value: _74.MsgUpdateGroupPolicyAdmin): {
6311
+ typeUrl: string;
6312
+ value: _74.MsgUpdateGroupPolicyAdmin;
6313
+ };
6314
+ updateGroupPolicyDecisionPolicy(value: _74.MsgUpdateGroupPolicyDecisionPolicy): {
6315
+ typeUrl: string;
6316
+ value: _74.MsgUpdateGroupPolicyDecisionPolicy;
6317
+ };
6318
+ updateGroupPolicyMetadata(value: _74.MsgUpdateGroupPolicyMetadata): {
6319
+ typeUrl: string;
6320
+ value: _74.MsgUpdateGroupPolicyMetadata;
6321
+ };
6322
+ submitProposal(value: _74.MsgSubmitProposal): {
6323
+ typeUrl: string;
6324
+ value: _74.MsgSubmitProposal;
6325
+ };
6326
+ withdrawProposal(value: _74.MsgWithdrawProposal): {
6327
+ typeUrl: string;
6328
+ value: _74.MsgWithdrawProposal;
6329
+ };
6330
+ vote(value: _74.MsgVote): {
6331
+ typeUrl: string;
6332
+ value: _74.MsgVote;
6333
+ };
6334
+ exec(value: _74.MsgExec): {
6335
+ typeUrl: string;
6336
+ value: _74.MsgExec;
6337
+ };
6338
+ leaveGroup(value: _74.MsgLeaveGroup): {
6339
+ typeUrl: string;
6340
+ value: _74.MsgLeaveGroup;
6341
+ };
6342
+ };
6343
+ };
5648
6344
  AminoConverter: {
5649
6345
  "/cosmos.group.v1.MsgCreateGroup": {
5650
6346
  aminoType: string;
@@ -7068,6 +7764,27 @@ export declare namespace cosmos {
7068
7764
  };
7069
7765
  LCDQueryClient: typeof _238.LCDQueryClient;
7070
7766
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
7767
+ load: (protoRegistry: Registry) => void;
7768
+ MessageComposer: {
7769
+ encoded: {
7770
+ updateParams(value: _81.MsgUpdateParams): {
7771
+ typeUrl: string;
7772
+ value: Uint8Array<ArrayBufferLike>;
7773
+ };
7774
+ };
7775
+ withTypeUrl: {
7776
+ updateParams(value: _81.MsgUpdateParams): {
7777
+ typeUrl: string;
7778
+ value: _81.MsgUpdateParams;
7779
+ };
7780
+ };
7781
+ fromPartial: {
7782
+ updateParams(value: _81.MsgUpdateParams): {
7783
+ typeUrl: string;
7784
+ value: _81.MsgUpdateParams;
7785
+ };
7786
+ };
7787
+ };
7071
7788
  AminoConverter: {
7072
7789
  "/cosmos.mint.v1beta1.MsgUpdateParams": {
7073
7790
  aminoType: string;
@@ -7540,6 +8257,75 @@ export declare namespace cosmos {
7540
8257
  };
7541
8258
  LCDQueryClient: typeof _240.LCDQueryClient;
7542
8259
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
8260
+ load: (protoRegistry: Registry) => void;
8261
+ MessageComposer: {
8262
+ encoded: {
8263
+ fundCommunityPool(value: _92.MsgFundCommunityPool): {
8264
+ typeUrl: string;
8265
+ value: Uint8Array<ArrayBufferLike>;
8266
+ };
8267
+ communityPoolSpend(value: _92.MsgCommunityPoolSpend): {
8268
+ typeUrl: string;
8269
+ value: Uint8Array<ArrayBufferLike>;
8270
+ };
8271
+ createContinuousFund(value: _92.MsgCreateContinuousFund): {
8272
+ typeUrl: string;
8273
+ value: Uint8Array<ArrayBufferLike>;
8274
+ };
8275
+ cancelContinuousFund(value: _92.MsgCancelContinuousFund): {
8276
+ typeUrl: string;
8277
+ value: Uint8Array<ArrayBufferLike>;
8278
+ };
8279
+ updateParams(value: _92.MsgUpdateParams): {
8280
+ typeUrl: string;
8281
+ value: Uint8Array<ArrayBufferLike>;
8282
+ };
8283
+ };
8284
+ withTypeUrl: {
8285
+ fundCommunityPool(value: _92.MsgFundCommunityPool): {
8286
+ typeUrl: string;
8287
+ value: _92.MsgFundCommunityPool;
8288
+ };
8289
+ communityPoolSpend(value: _92.MsgCommunityPoolSpend): {
8290
+ typeUrl: string;
8291
+ value: _92.MsgCommunityPoolSpend;
8292
+ };
8293
+ createContinuousFund(value: _92.MsgCreateContinuousFund): {
8294
+ typeUrl: string;
8295
+ value: _92.MsgCreateContinuousFund;
8296
+ };
8297
+ cancelContinuousFund(value: _92.MsgCancelContinuousFund): {
8298
+ typeUrl: string;
8299
+ value: _92.MsgCancelContinuousFund;
8300
+ };
8301
+ updateParams(value: _92.MsgUpdateParams): {
8302
+ typeUrl: string;
8303
+ value: _92.MsgUpdateParams;
8304
+ };
8305
+ };
8306
+ fromPartial: {
8307
+ fundCommunityPool(value: _92.MsgFundCommunityPool): {
8308
+ typeUrl: string;
8309
+ value: _92.MsgFundCommunityPool;
8310
+ };
8311
+ communityPoolSpend(value: _92.MsgCommunityPoolSpend): {
8312
+ typeUrl: string;
8313
+ value: _92.MsgCommunityPoolSpend;
8314
+ };
8315
+ createContinuousFund(value: _92.MsgCreateContinuousFund): {
8316
+ typeUrl: string;
8317
+ value: _92.MsgCreateContinuousFund;
8318
+ };
8319
+ cancelContinuousFund(value: _92.MsgCancelContinuousFund): {
8320
+ typeUrl: string;
8321
+ value: _92.MsgCancelContinuousFund;
8322
+ };
8323
+ updateParams(value: _92.MsgUpdateParams): {
8324
+ typeUrl: string;
8325
+ value: _92.MsgUpdateParams;
8326
+ };
8327
+ };
8328
+ };
7543
8329
  AminoConverter: {
7544
8330
  "/cosmos.protocolpool.v1.MsgFundCommunityPool": {
7545
8331
  aminoType: string;
@@ -7959,6 +8745,99 @@ export declare namespace cosmos {
7959
8745
  };
7960
8746
  LCDQueryClient: typeof _241.LCDQueryClient;
7961
8747
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
8748
+ load: (protoRegistry: Registry) => void;
8749
+ MessageComposer: {
8750
+ encoded: {
8751
+ createValidator(value: _102.MsgCreateValidator): {
8752
+ typeUrl: string;
8753
+ value: Uint8Array<ArrayBufferLike>;
8754
+ };
8755
+ editValidator(value: _102.MsgEditValidator): {
8756
+ typeUrl: string;
8757
+ value: Uint8Array<ArrayBufferLike>;
8758
+ };
8759
+ delegate(value: _102.MsgDelegate): {
8760
+ typeUrl: string;
8761
+ value: Uint8Array<ArrayBufferLike>;
8762
+ };
8763
+ beginRedelegate(value: _102.MsgBeginRedelegate): {
8764
+ typeUrl: string;
8765
+ value: Uint8Array<ArrayBufferLike>;
8766
+ };
8767
+ undelegate(value: _102.MsgUndelegate): {
8768
+ typeUrl: string;
8769
+ value: Uint8Array<ArrayBufferLike>;
8770
+ };
8771
+ cancelUnbondingDelegation(value: _102.MsgCancelUnbondingDelegation): {
8772
+ typeUrl: string;
8773
+ value: Uint8Array<ArrayBufferLike>;
8774
+ };
8775
+ updateParams(value: _102.MsgUpdateParams): {
8776
+ typeUrl: string;
8777
+ value: Uint8Array<ArrayBufferLike>;
8778
+ };
8779
+ };
8780
+ withTypeUrl: {
8781
+ createValidator(value: _102.MsgCreateValidator): {
8782
+ typeUrl: string;
8783
+ value: _102.MsgCreateValidator;
8784
+ };
8785
+ editValidator(value: _102.MsgEditValidator): {
8786
+ typeUrl: string;
8787
+ value: _102.MsgEditValidator;
8788
+ };
8789
+ delegate(value: _102.MsgDelegate): {
8790
+ typeUrl: string;
8791
+ value: _102.MsgDelegate;
8792
+ };
8793
+ beginRedelegate(value: _102.MsgBeginRedelegate): {
8794
+ typeUrl: string;
8795
+ value: _102.MsgBeginRedelegate;
8796
+ };
8797
+ undelegate(value: _102.MsgUndelegate): {
8798
+ typeUrl: string;
8799
+ value: _102.MsgUndelegate;
8800
+ };
8801
+ cancelUnbondingDelegation(value: _102.MsgCancelUnbondingDelegation): {
8802
+ typeUrl: string;
8803
+ value: _102.MsgCancelUnbondingDelegation;
8804
+ };
8805
+ updateParams(value: _102.MsgUpdateParams): {
8806
+ typeUrl: string;
8807
+ value: _102.MsgUpdateParams;
8808
+ };
8809
+ };
8810
+ fromPartial: {
8811
+ createValidator(value: _102.MsgCreateValidator): {
8812
+ typeUrl: string;
8813
+ value: _102.MsgCreateValidator;
8814
+ };
8815
+ editValidator(value: _102.MsgEditValidator): {
8816
+ typeUrl: string;
8817
+ value: _102.MsgEditValidator;
8818
+ };
8819
+ delegate(value: _102.MsgDelegate): {
8820
+ typeUrl: string;
8821
+ value: _102.MsgDelegate;
8822
+ };
8823
+ beginRedelegate(value: _102.MsgBeginRedelegate): {
8824
+ typeUrl: string;
8825
+ value: _102.MsgBeginRedelegate;
8826
+ };
8827
+ undelegate(value: _102.MsgUndelegate): {
8828
+ typeUrl: string;
8829
+ value: _102.MsgUndelegate;
8830
+ };
8831
+ cancelUnbondingDelegation(value: _102.MsgCancelUnbondingDelegation): {
8832
+ typeUrl: string;
8833
+ value: _102.MsgCancelUnbondingDelegation;
8834
+ };
8835
+ updateParams(value: _102.MsgUpdateParams): {
8836
+ typeUrl: string;
8837
+ value: _102.MsgUpdateParams;
8838
+ };
8839
+ };
8840
+ };
7962
8841
  AminoConverter: {
7963
8842
  "/cosmos.staking.v1beta1.MsgCreateValidator": {
7964
8843
  aminoType: string;
@@ -9808,6 +10687,39 @@ export declare namespace cosmos {
9808
10687
  };
9809
10688
  LCDQueryClient: typeof _243.LCDQueryClient;
9810
10689
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
10690
+ load: (protoRegistry: Registry) => void;
10691
+ MessageComposer: {
10692
+ encoded: {
10693
+ softwareUpgrade(value: _114.MsgSoftwareUpgrade): {
10694
+ typeUrl: string;
10695
+ value: Uint8Array<ArrayBufferLike>;
10696
+ };
10697
+ cancelUpgrade(value: _114.MsgCancelUpgrade): {
10698
+ typeUrl: string;
10699
+ value: Uint8Array<ArrayBufferLike>;
10700
+ };
10701
+ };
10702
+ withTypeUrl: {
10703
+ softwareUpgrade(value: _114.MsgSoftwareUpgrade): {
10704
+ typeUrl: string;
10705
+ value: _114.MsgSoftwareUpgrade;
10706
+ };
10707
+ cancelUpgrade(value: _114.MsgCancelUpgrade): {
10708
+ typeUrl: string;
10709
+ value: _114.MsgCancelUpgrade;
10710
+ };
10711
+ };
10712
+ fromPartial: {
10713
+ softwareUpgrade(value: _114.MsgSoftwareUpgrade): {
10714
+ typeUrl: string;
10715
+ value: _114.MsgSoftwareUpgrade;
10716
+ };
10717
+ cancelUpgrade(value: _114.MsgCancelUpgrade): {
10718
+ typeUrl: string;
10719
+ value: _114.MsgCancelUpgrade;
10720
+ };
10721
+ };
10722
+ };
9811
10723
  AminoConverter: {
9812
10724
  "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade": {
9813
10725
  aminoType: string;
@@ -10097,6 +11009,51 @@ export declare namespace cosmos {
10097
11009
  MsgClientImpl: typeof _280.MsgClientImpl;
10098
11010
  createClientImpl: (rpc: import("..").TxRpc) => _280.MsgClientImpl;
10099
11011
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
11012
+ load: (protoRegistry: Registry) => void;
11013
+ MessageComposer: {
11014
+ encoded: {
11015
+ createVestingAccount(value: _117.MsgCreateVestingAccount): {
11016
+ typeUrl: string;
11017
+ value: Uint8Array<ArrayBufferLike>;
11018
+ };
11019
+ createPermanentLockedAccount(value: _117.MsgCreatePermanentLockedAccount): {
11020
+ typeUrl: string;
11021
+ value: Uint8Array<ArrayBufferLike>;
11022
+ };
11023
+ createPeriodicVestingAccount(value: _117.MsgCreatePeriodicVestingAccount): {
11024
+ typeUrl: string;
11025
+ value: Uint8Array<ArrayBufferLike>;
11026
+ };
11027
+ };
11028
+ withTypeUrl: {
11029
+ createVestingAccount(value: _117.MsgCreateVestingAccount): {
11030
+ typeUrl: string;
11031
+ value: _117.MsgCreateVestingAccount;
11032
+ };
11033
+ createPermanentLockedAccount(value: _117.MsgCreatePermanentLockedAccount): {
11034
+ typeUrl: string;
11035
+ value: _117.MsgCreatePermanentLockedAccount;
11036
+ };
11037
+ createPeriodicVestingAccount(value: _117.MsgCreatePeriodicVestingAccount): {
11038
+ typeUrl: string;
11039
+ value: _117.MsgCreatePeriodicVestingAccount;
11040
+ };
11041
+ };
11042
+ fromPartial: {
11043
+ createVestingAccount(value: _117.MsgCreateVestingAccount): {
11044
+ typeUrl: string;
11045
+ value: _117.MsgCreateVestingAccount;
11046
+ };
11047
+ createPermanentLockedAccount(value: _117.MsgCreatePermanentLockedAccount): {
11048
+ typeUrl: string;
11049
+ value: _117.MsgCreatePermanentLockedAccount;
11050
+ };
11051
+ createPeriodicVestingAccount(value: _117.MsgCreatePeriodicVestingAccount): {
11052
+ typeUrl: string;
11053
+ value: _117.MsgCreatePeriodicVestingAccount;
11054
+ };
11055
+ };
11056
+ };
10100
11057
  AminoConverter: {
10101
11058
  "/cosmos.vesting.v1beta1.MsgCreateVestingAccount": {
10102
11059
  aminoType: string;