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
@@ -7,24 +7,31 @@ import * as _116 from "./core/channel/v1/channel";
7
7
  import * as _117 from "./core/channel/v1/genesis";
8
8
  import * as _118 from "./core/channel/v1/query";
9
9
  import * as _119 from "./core/channel/v1/tx";
10
+ import * as _120 from "./core/client/v1/client";
11
+ import * as _121 from "./core/client/v1/genesis";
12
+ import * as _122 from "./core/client/v1/query";
13
+ import * as _123 from "./core/client/v1/tx";
10
14
  import * as _124 from "./core/commitment/v1/commitment";
11
15
  import * as _131 from "./lightclients/localhost/v1/localhost";
12
16
  import * as _132 from "./lightclients/solomachine/v1/solomachine";
13
17
  import * as _133 from "./lightclients/solomachine/v2/solomachine";
14
18
  import * as _134 from "./lightclients/tendermint/v1/tendermint";
15
- import * as _189 from "./applications/transfer/v1/query.lcd";
16
- import * as _190 from "./core/channel/v1/query.lcd";
17
- import * as _191 from "./applications/transfer/v1/query.rpc.query";
18
- import * as _192 from "./core/channel/v1/query.rpc.query";
19
- import * as _193 from "./applications/transfer/v1/tx.rpc.msg";
20
- import * as _194 from "./core/channel/v1/tx.rpc.msg";
19
+ import * as _191 from "./applications/transfer/v1/query.lcd";
20
+ import * as _192 from "./core/channel/v1/query.lcd";
21
+ import * as _193 from "./core/client/v1/query.lcd";
22
+ import * as _194 from "./applications/transfer/v1/query.rpc.query";
23
+ import * as _195 from "./core/channel/v1/query.rpc.query";
24
+ import * as _196 from "./core/client/v1/query.rpc.query";
25
+ import * as _197 from "./applications/transfer/v1/tx.rpc.msg";
26
+ import * as _198 from "./core/channel/v1/tx.rpc.msg";
27
+ import * as _199 from "./core/client/v1/tx.rpc.msg";
21
28
  export declare namespace ibc {
22
29
  namespace applications {
23
30
  namespace transfer {
24
31
  const v1: {
25
- MsgClientImpl: typeof _193.MsgClientImpl;
26
- QueryClientImpl: typeof _191.QueryClientImpl;
27
- LCDQueryClient: typeof _189.LCDQueryClient;
32
+ MsgClientImpl: typeof _197.MsgClientImpl;
33
+ QueryClientImpl: typeof _194.QueryClientImpl;
34
+ LCDQueryClient: typeof _191.LCDQueryClient;
28
35
  registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
29
36
  load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
30
37
  MessageComposer: {
@@ -96,10 +103,16 @@ export declare namespace ibc {
96
103
  fromPartial(object: {
97
104
  sourcePort?: string;
98
105
  sourceChannel?: string;
99
- token?: any;
106
+ token?: {
107
+ denom?: string;
108
+ amount?: string;
109
+ };
100
110
  sender?: string;
101
111
  receiver?: string;
102
- timeoutHeight?: any;
112
+ timeoutHeight?: {
113
+ revisionNumber?: any;
114
+ revisionHeight?: any;
115
+ };
103
116
  timeoutTimestamp?: any;
104
117
  }): _114.MsgTransfer;
105
118
  };
@@ -157,7 +170,13 @@ export declare namespace ibc {
157
170
  fromJSON(object: any): _112.QueryDenomTracesRequest;
158
171
  toJSON(message: _112.QueryDenomTracesRequest): unknown;
159
172
  fromPartial(object: {
160
- pagination?: any;
173
+ pagination?: {
174
+ key?: Uint8Array;
175
+ offset?: any;
176
+ limit?: any;
177
+ countTotal?: boolean;
178
+ reverse?: boolean;
179
+ };
161
180
  }): _112.QueryDenomTracesRequest;
162
181
  };
163
182
  QueryDenomTracesResponse: {
@@ -170,7 +189,10 @@ export declare namespace ibc {
170
189
  path?: string;
171
190
  baseDenom?: string;
172
191
  }[];
173
- pagination?: any;
192
+ pagination?: {
193
+ nextKey?: Uint8Array;
194
+ total?: any;
195
+ };
174
196
  }): _112.QueryDenomTracesResponse;
175
197
  };
176
198
  QueryParamsRequest: {
@@ -229,9 +251,9 @@ export declare namespace ibc {
229
251
  namespace core {
230
252
  namespace channel {
231
253
  const v1: {
232
- MsgClientImpl: typeof _194.MsgClientImpl;
233
- QueryClientImpl: typeof _192.QueryClientImpl;
234
- LCDQueryClient: typeof _190.LCDQueryClient;
254
+ MsgClientImpl: typeof _198.MsgClientImpl;
255
+ QueryClientImpl: typeof _195.QueryClientImpl;
256
+ LCDQueryClient: typeof _192.LCDQueryClient;
235
257
  registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
236
258
  load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
237
259
  MessageComposer: {
@@ -773,7 +795,10 @@ export declare namespace ibc {
773
795
  };
774
796
  counterpartyVersion?: string;
775
797
  proofInit?: Uint8Array;
776
- proofHeight?: any;
798
+ proofHeight?: {
799
+ revisionNumber?: any;
800
+ revisionHeight?: any;
801
+ };
777
802
  signer?: string;
778
803
  }): _119.MsgChannelOpenTry;
779
804
  };
@@ -795,7 +820,10 @@ export declare namespace ibc {
795
820
  counterpartyChannelId?: string;
796
821
  counterpartyVersion?: string;
797
822
  proofTry?: Uint8Array;
798
- proofHeight?: any;
823
+ proofHeight?: {
824
+ revisionNumber?: any;
825
+ revisionHeight?: any;
826
+ };
799
827
  signer?: string;
800
828
  }): _119.MsgChannelOpenAck;
801
829
  };
@@ -815,7 +843,10 @@ export declare namespace ibc {
815
843
  portId?: string;
816
844
  channelId?: string;
817
845
  proofAck?: Uint8Array;
818
- proofHeight?: any;
846
+ proofHeight?: {
847
+ revisionNumber?: any;
848
+ revisionHeight?: any;
849
+ };
819
850
  signer?: string;
820
851
  }): _119.MsgChannelOpenConfirm;
821
852
  };
@@ -853,7 +884,10 @@ export declare namespace ibc {
853
884
  portId?: string;
854
885
  channelId?: string;
855
886
  proofInit?: Uint8Array;
856
- proofHeight?: any;
887
+ proofHeight?: {
888
+ revisionNumber?: any;
889
+ revisionHeight?: any;
890
+ };
857
891
  signer?: string;
858
892
  }): _119.MsgChannelCloseConfirm;
859
893
  };
@@ -877,11 +911,17 @@ export declare namespace ibc {
877
911
  destinationPort?: string;
878
912
  destinationChannel?: string;
879
913
  data?: Uint8Array;
880
- timeoutHeight?: any;
914
+ timeoutHeight?: {
915
+ revisionNumber?: any;
916
+ revisionHeight?: any;
917
+ };
881
918
  timeoutTimestamp?: any;
882
919
  };
883
920
  proofCommitment?: Uint8Array;
884
- proofHeight?: any;
921
+ proofHeight?: {
922
+ revisionNumber?: any;
923
+ revisionHeight?: any;
924
+ };
885
925
  signer?: string;
886
926
  }): _119.MsgRecvPacket;
887
927
  };
@@ -905,11 +945,17 @@ export declare namespace ibc {
905
945
  destinationPort?: string;
906
946
  destinationChannel?: string;
907
947
  data?: Uint8Array;
908
- timeoutHeight?: any;
948
+ timeoutHeight?: {
949
+ revisionNumber?: any;
950
+ revisionHeight?: any;
951
+ };
909
952
  timeoutTimestamp?: any;
910
953
  };
911
954
  proofUnreceived?: Uint8Array;
912
- proofHeight?: any;
955
+ proofHeight?: {
956
+ revisionNumber?: any;
957
+ revisionHeight?: any;
958
+ };
913
959
  nextSequenceRecv?: any;
914
960
  signer?: string;
915
961
  }): _119.MsgTimeout;
@@ -934,12 +980,18 @@ export declare namespace ibc {
934
980
  destinationPort?: string;
935
981
  destinationChannel?: string;
936
982
  data?: Uint8Array;
937
- timeoutHeight?: any;
983
+ timeoutHeight?: {
984
+ revisionNumber?: any;
985
+ revisionHeight?: any;
986
+ };
938
987
  timeoutTimestamp?: any;
939
988
  };
940
989
  proofUnreceived?: Uint8Array;
941
990
  proofClose?: Uint8Array;
942
- proofHeight?: any;
991
+ proofHeight?: {
992
+ revisionNumber?: any;
993
+ revisionHeight?: any;
994
+ };
943
995
  nextSequenceRecv?: any;
944
996
  signer?: string;
945
997
  }): _119.MsgTimeoutOnClose;
@@ -964,12 +1016,18 @@ export declare namespace ibc {
964
1016
  destinationPort?: string;
965
1017
  destinationChannel?: string;
966
1018
  data?: Uint8Array;
967
- timeoutHeight?: any;
1019
+ timeoutHeight?: {
1020
+ revisionNumber?: any;
1021
+ revisionHeight?: any;
1022
+ };
968
1023
  timeoutTimestamp?: any;
969
1024
  };
970
1025
  acknowledgement?: Uint8Array;
971
1026
  proofAcked?: Uint8Array;
972
- proofHeight?: any;
1027
+ proofHeight?: {
1028
+ revisionNumber?: any;
1029
+ revisionHeight?: any;
1030
+ };
973
1031
  signer?: string;
974
1032
  }): _119.MsgAcknowledgement;
975
1033
  };
@@ -1007,7 +1065,10 @@ export declare namespace ibc {
1007
1065
  version?: string;
1008
1066
  };
1009
1067
  proof?: Uint8Array;
1010
- proofHeight?: any;
1068
+ proofHeight?: {
1069
+ revisionNumber?: any;
1070
+ revisionHeight?: any;
1071
+ };
1011
1072
  }): _118.QueryChannelResponse;
1012
1073
  };
1013
1074
  QueryChannelsRequest: {
@@ -1016,7 +1077,13 @@ export declare namespace ibc {
1016
1077
  fromJSON(object: any): _118.QueryChannelsRequest;
1017
1078
  toJSON(message: _118.QueryChannelsRequest): unknown;
1018
1079
  fromPartial(object: {
1019
- pagination?: any;
1080
+ pagination?: {
1081
+ key?: Uint8Array;
1082
+ offset?: any;
1083
+ limit?: any;
1084
+ countTotal?: boolean;
1085
+ reverse?: boolean;
1086
+ };
1020
1087
  }): _118.QueryChannelsRequest;
1021
1088
  };
1022
1089
  QueryChannelsResponse: {
@@ -1037,8 +1104,14 @@ export declare namespace ibc {
1037
1104
  portId?: string;
1038
1105
  channelId?: string;
1039
1106
  }[];
1040
- pagination?: any;
1041
- height?: any;
1107
+ pagination?: {
1108
+ nextKey?: Uint8Array;
1109
+ total?: any;
1110
+ };
1111
+ height?: {
1112
+ revisionNumber?: any;
1113
+ revisionHeight?: any;
1114
+ };
1042
1115
  }): _118.QueryChannelsResponse;
1043
1116
  };
1044
1117
  QueryConnectionChannelsRequest: {
@@ -1048,7 +1121,13 @@ export declare namespace ibc {
1048
1121
  toJSON(message: _118.QueryConnectionChannelsRequest): unknown;
1049
1122
  fromPartial(object: {
1050
1123
  connection?: string;
1051
- pagination?: any;
1124
+ pagination?: {
1125
+ key?: Uint8Array;
1126
+ offset?: any;
1127
+ limit?: any;
1128
+ countTotal?: boolean;
1129
+ reverse?: boolean;
1130
+ };
1052
1131
  }): _118.QueryConnectionChannelsRequest;
1053
1132
  };
1054
1133
  QueryConnectionChannelsResponse: {
@@ -1069,8 +1148,14 @@ export declare namespace ibc {
1069
1148
  portId?: string;
1070
1149
  channelId?: string;
1071
1150
  }[];
1072
- pagination?: any;
1073
- height?: any;
1151
+ pagination?: {
1152
+ nextKey?: Uint8Array;
1153
+ total?: any;
1154
+ };
1155
+ height?: {
1156
+ revisionNumber?: any;
1157
+ revisionHeight?: any;
1158
+ };
1074
1159
  }): _118.QueryConnectionChannelsResponse;
1075
1160
  };
1076
1161
  QueryChannelClientStateRequest: {
@@ -1089,9 +1174,18 @@ export declare namespace ibc {
1089
1174
  fromJSON(object: any): _118.QueryChannelClientStateResponse;
1090
1175
  toJSON(message: _118.QueryChannelClientStateResponse): unknown;
1091
1176
  fromPartial(object: {
1092
- identifiedClientState?: any;
1177
+ identifiedClientState?: {
1178
+ clientId?: string;
1179
+ clientState?: {
1180
+ typeUrl?: string;
1181
+ value?: Uint8Array;
1182
+ };
1183
+ };
1093
1184
  proof?: Uint8Array;
1094
- proofHeight?: any;
1185
+ proofHeight?: {
1186
+ revisionNumber?: any;
1187
+ revisionHeight?: any;
1188
+ };
1095
1189
  }): _118.QueryChannelClientStateResponse;
1096
1190
  };
1097
1191
  QueryChannelConsensusStateRequest: {
@@ -1118,7 +1212,10 @@ export declare namespace ibc {
1118
1212
  };
1119
1213
  clientId?: string;
1120
1214
  proof?: Uint8Array;
1121
- proofHeight?: any;
1215
+ proofHeight?: {
1216
+ revisionNumber?: any;
1217
+ revisionHeight?: any;
1218
+ };
1122
1219
  }): _118.QueryChannelConsensusStateResponse;
1123
1220
  };
1124
1221
  QueryPacketCommitmentRequest: {
@@ -1140,7 +1237,10 @@ export declare namespace ibc {
1140
1237
  fromPartial(object: {
1141
1238
  commitment?: Uint8Array;
1142
1239
  proof?: Uint8Array;
1143
- proofHeight?: any;
1240
+ proofHeight?: {
1241
+ revisionNumber?: any;
1242
+ revisionHeight?: any;
1243
+ };
1144
1244
  }): _118.QueryPacketCommitmentResponse;
1145
1245
  };
1146
1246
  QueryPacketCommitmentsRequest: {
@@ -1151,7 +1251,13 @@ export declare namespace ibc {
1151
1251
  fromPartial(object: {
1152
1252
  portId?: string;
1153
1253
  channelId?: string;
1154
- pagination?: any;
1254
+ pagination?: {
1255
+ key?: Uint8Array;
1256
+ offset?: any;
1257
+ limit?: any;
1258
+ countTotal?: boolean;
1259
+ reverse?: boolean;
1260
+ };
1155
1261
  }): _118.QueryPacketCommitmentsRequest;
1156
1262
  };
1157
1263
  QueryPacketCommitmentsResponse: {
@@ -1166,8 +1272,14 @@ export declare namespace ibc {
1166
1272
  sequence?: any;
1167
1273
  data?: Uint8Array;
1168
1274
  }[];
1169
- pagination?: any;
1170
- height?: any;
1275
+ pagination?: {
1276
+ nextKey?: Uint8Array;
1277
+ total?: any;
1278
+ };
1279
+ height?: {
1280
+ revisionNumber?: any;
1281
+ revisionHeight?: any;
1282
+ };
1171
1283
  }): _118.QueryPacketCommitmentsResponse;
1172
1284
  };
1173
1285
  QueryPacketReceiptRequest: {
@@ -1189,7 +1301,10 @@ export declare namespace ibc {
1189
1301
  fromPartial(object: {
1190
1302
  received?: boolean;
1191
1303
  proof?: Uint8Array;
1192
- proofHeight?: any;
1304
+ proofHeight?: {
1305
+ revisionNumber?: any;
1306
+ revisionHeight?: any;
1307
+ };
1193
1308
  }): _118.QueryPacketReceiptResponse;
1194
1309
  };
1195
1310
  QueryPacketAcknowledgementRequest: {
@@ -1211,7 +1326,10 @@ export declare namespace ibc {
1211
1326
  fromPartial(object: {
1212
1327
  acknowledgement?: Uint8Array;
1213
1328
  proof?: Uint8Array;
1214
- proofHeight?: any;
1329
+ proofHeight?: {
1330
+ revisionNumber?: any;
1331
+ revisionHeight?: any;
1332
+ };
1215
1333
  }): _118.QueryPacketAcknowledgementResponse;
1216
1334
  };
1217
1335
  QueryPacketAcknowledgementsRequest: {
@@ -1222,7 +1340,13 @@ export declare namespace ibc {
1222
1340
  fromPartial(object: {
1223
1341
  portId?: string;
1224
1342
  channelId?: string;
1225
- pagination?: any;
1343
+ pagination?: {
1344
+ key?: Uint8Array;
1345
+ offset?: any;
1346
+ limit?: any;
1347
+ countTotal?: boolean;
1348
+ reverse?: boolean;
1349
+ };
1226
1350
  packetCommitmentSequences?: any[];
1227
1351
  }): _118.QueryPacketAcknowledgementsRequest;
1228
1352
  };
@@ -1238,8 +1362,14 @@ export declare namespace ibc {
1238
1362
  sequence?: any;
1239
1363
  data?: Uint8Array;
1240
1364
  }[];
1241
- pagination?: any;
1242
- height?: any;
1365
+ pagination?: {
1366
+ nextKey?: Uint8Array;
1367
+ total?: any;
1368
+ };
1369
+ height?: {
1370
+ revisionNumber?: any;
1371
+ revisionHeight?: any;
1372
+ };
1243
1373
  }): _118.QueryPacketAcknowledgementsResponse;
1244
1374
  };
1245
1375
  QueryUnreceivedPacketsRequest: {
@@ -1260,7 +1390,10 @@ export declare namespace ibc {
1260
1390
  toJSON(message: _118.QueryUnreceivedPacketsResponse): unknown;
1261
1391
  fromPartial(object: {
1262
1392
  sequences?: any[];
1263
- height?: any;
1393
+ height?: {
1394
+ revisionNumber?: any;
1395
+ revisionHeight?: any;
1396
+ };
1264
1397
  }): _118.QueryUnreceivedPacketsResponse;
1265
1398
  };
1266
1399
  QueryUnreceivedAcksRequest: {
@@ -1281,7 +1414,10 @@ export declare namespace ibc {
1281
1414
  toJSON(message: _118.QueryUnreceivedAcksResponse): unknown;
1282
1415
  fromPartial(object: {
1283
1416
  sequences?: any[];
1284
- height?: any;
1417
+ height?: {
1418
+ revisionNumber?: any;
1419
+ revisionHeight?: any;
1420
+ };
1285
1421
  }): _118.QueryUnreceivedAcksResponse;
1286
1422
  };
1287
1423
  QueryNextSequenceReceiveRequest: {
@@ -1302,7 +1438,10 @@ export declare namespace ibc {
1302
1438
  fromPartial(object: {
1303
1439
  nextSequenceReceive?: any;
1304
1440
  proof?: Uint8Array;
1305
- proofHeight?: any;
1441
+ proofHeight?: {
1442
+ revisionNumber?: any;
1443
+ revisionHeight?: any;
1444
+ };
1306
1445
  }): _118.QueryNextSequenceReceiveResponse;
1307
1446
  };
1308
1447
  GenesisState: {
@@ -1432,7 +1571,10 @@ export declare namespace ibc {
1432
1571
  destinationPort?: string;
1433
1572
  destinationChannel?: string;
1434
1573
  data?: Uint8Array;
1435
- timeoutHeight?: any;
1574
+ timeoutHeight?: {
1575
+ revisionNumber?: any;
1576
+ revisionHeight?: any;
1577
+ };
1436
1578
  timeoutTimestamp?: any;
1437
1579
  }): _116.Packet;
1438
1580
  };
@@ -1461,7 +1603,652 @@ export declare namespace ibc {
1461
1603
  };
1462
1604
  }
1463
1605
  namespace client {
1464
- const v1: any;
1606
+ const v1: {
1607
+ MsgClientImpl: typeof _199.MsgClientImpl;
1608
+ QueryClientImpl: typeof _196.QueryClientImpl;
1609
+ LCDQueryClient: typeof _193.LCDQueryClient;
1610
+ registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
1611
+ load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
1612
+ MessageComposer: {
1613
+ encoded: {
1614
+ createClient(value: _123.MsgCreateClient): {
1615
+ typeUrl: string;
1616
+ value: Uint8Array;
1617
+ };
1618
+ updateClient(value: _123.MsgUpdateClient): {
1619
+ typeUrl: string;
1620
+ value: Uint8Array;
1621
+ };
1622
+ upgradeClient(value: _123.MsgUpgradeClient): {
1623
+ typeUrl: string;
1624
+ value: Uint8Array;
1625
+ };
1626
+ submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
1627
+ typeUrl: string;
1628
+ value: Uint8Array;
1629
+ };
1630
+ };
1631
+ withTypeUrl: {
1632
+ createClient(value: _123.MsgCreateClient): {
1633
+ typeUrl: string;
1634
+ value: _123.MsgCreateClient;
1635
+ };
1636
+ updateClient(value: _123.MsgUpdateClient): {
1637
+ typeUrl: string;
1638
+ value: _123.MsgUpdateClient;
1639
+ };
1640
+ upgradeClient(value: _123.MsgUpgradeClient): {
1641
+ typeUrl: string;
1642
+ value: _123.MsgUpgradeClient;
1643
+ };
1644
+ submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
1645
+ typeUrl: string;
1646
+ value: _123.MsgSubmitMisbehaviour;
1647
+ };
1648
+ };
1649
+ toJSON: {
1650
+ createClient(value: _123.MsgCreateClient): {
1651
+ typeUrl: string;
1652
+ value: unknown;
1653
+ };
1654
+ updateClient(value: _123.MsgUpdateClient): {
1655
+ typeUrl: string;
1656
+ value: unknown;
1657
+ };
1658
+ upgradeClient(value: _123.MsgUpgradeClient): {
1659
+ typeUrl: string;
1660
+ value: unknown;
1661
+ };
1662
+ submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
1663
+ typeUrl: string;
1664
+ value: unknown;
1665
+ };
1666
+ };
1667
+ fromJSON: {
1668
+ createClient(value: any): {
1669
+ typeUrl: string;
1670
+ value: _123.MsgCreateClient;
1671
+ };
1672
+ updateClient(value: any): {
1673
+ typeUrl: string;
1674
+ value: _123.MsgUpdateClient;
1675
+ };
1676
+ upgradeClient(value: any): {
1677
+ typeUrl: string;
1678
+ value: _123.MsgUpgradeClient;
1679
+ };
1680
+ submitMisbehaviour(value: any): {
1681
+ typeUrl: string;
1682
+ value: _123.MsgSubmitMisbehaviour;
1683
+ };
1684
+ };
1685
+ fromPartial: {
1686
+ createClient(value: _123.MsgCreateClient): {
1687
+ typeUrl: string;
1688
+ value: _123.MsgCreateClient;
1689
+ };
1690
+ updateClient(value: _123.MsgUpdateClient): {
1691
+ typeUrl: string;
1692
+ value: _123.MsgUpdateClient;
1693
+ };
1694
+ upgradeClient(value: _123.MsgUpgradeClient): {
1695
+ typeUrl: string;
1696
+ value: _123.MsgUpgradeClient;
1697
+ };
1698
+ submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
1699
+ typeUrl: string;
1700
+ value: _123.MsgSubmitMisbehaviour;
1701
+ };
1702
+ };
1703
+ };
1704
+ AminoConverter: {
1705
+ "/ibc.core.client.v1.MsgCreateClient": {
1706
+ aminoType: string;
1707
+ toAmino: ({ clientState, consensusState, signer }: _123.MsgCreateClient) => {
1708
+ client_state: {
1709
+ type_url: string;
1710
+ value: Uint8Array;
1711
+ };
1712
+ consensus_state: {
1713
+ type_url: string;
1714
+ value: Uint8Array;
1715
+ };
1716
+ signer: string;
1717
+ };
1718
+ fromAmino: ({ client_state, consensus_state, signer }: {
1719
+ client_state: {
1720
+ type_url: string;
1721
+ value: Uint8Array;
1722
+ };
1723
+ consensus_state: {
1724
+ type_url: string;
1725
+ value: Uint8Array;
1726
+ };
1727
+ signer: string;
1728
+ }) => _123.MsgCreateClient;
1729
+ };
1730
+ "/ibc.core.client.v1.MsgUpdateClient": {
1731
+ aminoType: string;
1732
+ toAmino: ({ clientId, header, signer }: _123.MsgUpdateClient) => {
1733
+ client_id: string;
1734
+ header: {
1735
+ type_url: string;
1736
+ value: Uint8Array;
1737
+ };
1738
+ signer: string;
1739
+ };
1740
+ fromAmino: ({ client_id, header, signer }: {
1741
+ client_id: string;
1742
+ header: {
1743
+ type_url: string;
1744
+ value: Uint8Array;
1745
+ };
1746
+ signer: string;
1747
+ }) => _123.MsgUpdateClient;
1748
+ };
1749
+ "/ibc.core.client.v1.MsgUpgradeClient": {
1750
+ aminoType: string;
1751
+ toAmino: ({ clientId, clientState, consensusState, proofUpgradeClient, proofUpgradeConsensusState, signer }: _123.MsgUpgradeClient) => {
1752
+ client_id: string;
1753
+ client_state: {
1754
+ type_url: string;
1755
+ value: Uint8Array;
1756
+ };
1757
+ consensus_state: {
1758
+ type_url: string;
1759
+ value: Uint8Array;
1760
+ };
1761
+ proof_upgrade_client: Uint8Array;
1762
+ proof_upgrade_consensus_state: Uint8Array;
1763
+ signer: string;
1764
+ };
1765
+ fromAmino: ({ client_id, client_state, consensus_state, proof_upgrade_client, proof_upgrade_consensus_state, signer }: {
1766
+ client_id: string;
1767
+ client_state: {
1768
+ type_url: string;
1769
+ value: Uint8Array;
1770
+ };
1771
+ consensus_state: {
1772
+ type_url: string;
1773
+ value: Uint8Array;
1774
+ };
1775
+ proof_upgrade_client: Uint8Array;
1776
+ proof_upgrade_consensus_state: Uint8Array;
1777
+ signer: string;
1778
+ }) => _123.MsgUpgradeClient;
1779
+ };
1780
+ "/ibc.core.client.v1.MsgSubmitMisbehaviour": {
1781
+ aminoType: string;
1782
+ toAmino: ({ clientId, misbehaviour, signer }: _123.MsgSubmitMisbehaviour) => {
1783
+ client_id: string;
1784
+ misbehaviour: {
1785
+ type_url: string;
1786
+ value: Uint8Array;
1787
+ };
1788
+ signer: string;
1789
+ };
1790
+ fromAmino: ({ client_id, misbehaviour, signer }: {
1791
+ client_id: string;
1792
+ misbehaviour: {
1793
+ type_url: string;
1794
+ value: Uint8Array;
1795
+ };
1796
+ signer: string;
1797
+ }) => _123.MsgSubmitMisbehaviour;
1798
+ };
1799
+ };
1800
+ MsgCreateClient: {
1801
+ encode(message: _123.MsgCreateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1802
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgCreateClient;
1803
+ fromJSON(object: any): _123.MsgCreateClient;
1804
+ toJSON(message: _123.MsgCreateClient): unknown;
1805
+ fromPartial(object: {
1806
+ clientState?: {
1807
+ typeUrl?: string;
1808
+ value?: Uint8Array;
1809
+ };
1810
+ consensusState?: {
1811
+ typeUrl?: string;
1812
+ value?: Uint8Array;
1813
+ };
1814
+ signer?: string;
1815
+ }): _123.MsgCreateClient;
1816
+ };
1817
+ MsgCreateClientResponse: {
1818
+ encode(_: _123.MsgCreateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1819
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgCreateClientResponse;
1820
+ fromJSON(_: any): _123.MsgCreateClientResponse;
1821
+ toJSON(_: _123.MsgCreateClientResponse): unknown;
1822
+ fromPartial(_: {}): _123.MsgCreateClientResponse;
1823
+ };
1824
+ MsgUpdateClient: {
1825
+ encode(message: _123.MsgUpdateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1826
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpdateClient;
1827
+ fromJSON(object: any): _123.MsgUpdateClient;
1828
+ toJSON(message: _123.MsgUpdateClient): unknown;
1829
+ fromPartial(object: {
1830
+ clientId?: string;
1831
+ header?: {
1832
+ typeUrl?: string;
1833
+ value?: Uint8Array;
1834
+ };
1835
+ signer?: string;
1836
+ }): _123.MsgUpdateClient;
1837
+ };
1838
+ MsgUpdateClientResponse: {
1839
+ encode(_: _123.MsgUpdateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1840
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpdateClientResponse;
1841
+ fromJSON(_: any): _123.MsgUpdateClientResponse;
1842
+ toJSON(_: _123.MsgUpdateClientResponse): unknown;
1843
+ fromPartial(_: {}): _123.MsgUpdateClientResponse;
1844
+ };
1845
+ MsgUpgradeClient: {
1846
+ encode(message: _123.MsgUpgradeClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1847
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpgradeClient;
1848
+ fromJSON(object: any): _123.MsgUpgradeClient;
1849
+ toJSON(message: _123.MsgUpgradeClient): unknown;
1850
+ fromPartial(object: {
1851
+ clientId?: string;
1852
+ clientState?: {
1853
+ typeUrl?: string;
1854
+ value?: Uint8Array;
1855
+ };
1856
+ consensusState?: {
1857
+ typeUrl?: string;
1858
+ value?: Uint8Array;
1859
+ };
1860
+ proofUpgradeClient?: Uint8Array;
1861
+ proofUpgradeConsensusState?: Uint8Array;
1862
+ signer?: string;
1863
+ }): _123.MsgUpgradeClient;
1864
+ };
1865
+ MsgUpgradeClientResponse: {
1866
+ encode(_: _123.MsgUpgradeClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1867
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpgradeClientResponse;
1868
+ fromJSON(_: any): _123.MsgUpgradeClientResponse;
1869
+ toJSON(_: _123.MsgUpgradeClientResponse): unknown;
1870
+ fromPartial(_: {}): _123.MsgUpgradeClientResponse;
1871
+ };
1872
+ MsgSubmitMisbehaviour: {
1873
+ encode(message: _123.MsgSubmitMisbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1874
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgSubmitMisbehaviour;
1875
+ fromJSON(object: any): _123.MsgSubmitMisbehaviour;
1876
+ toJSON(message: _123.MsgSubmitMisbehaviour): unknown;
1877
+ fromPartial(object: {
1878
+ clientId?: string;
1879
+ misbehaviour?: {
1880
+ typeUrl?: string;
1881
+ value?: Uint8Array;
1882
+ };
1883
+ signer?: string;
1884
+ }): _123.MsgSubmitMisbehaviour;
1885
+ };
1886
+ MsgSubmitMisbehaviourResponse: {
1887
+ encode(_: _123.MsgSubmitMisbehaviourResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1888
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgSubmitMisbehaviourResponse;
1889
+ fromJSON(_: any): _123.MsgSubmitMisbehaviourResponse;
1890
+ toJSON(_: _123.MsgSubmitMisbehaviourResponse): unknown;
1891
+ fromPartial(_: {}): _123.MsgSubmitMisbehaviourResponse;
1892
+ };
1893
+ QueryClientStateRequest: {
1894
+ encode(message: _122.QueryClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1895
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStateRequest;
1896
+ fromJSON(object: any): _122.QueryClientStateRequest;
1897
+ toJSON(message: _122.QueryClientStateRequest): unknown;
1898
+ fromPartial(object: {
1899
+ clientId?: string;
1900
+ }): _122.QueryClientStateRequest;
1901
+ };
1902
+ QueryClientStateResponse: {
1903
+ encode(message: _122.QueryClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1904
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStateResponse;
1905
+ fromJSON(object: any): _122.QueryClientStateResponse;
1906
+ toJSON(message: _122.QueryClientStateResponse): unknown;
1907
+ fromPartial(object: {
1908
+ clientState?: {
1909
+ typeUrl?: string;
1910
+ value?: Uint8Array;
1911
+ };
1912
+ proof?: Uint8Array;
1913
+ proofHeight?: {
1914
+ revisionNumber?: any;
1915
+ revisionHeight?: any;
1916
+ };
1917
+ }): _122.QueryClientStateResponse;
1918
+ };
1919
+ QueryClientStatesRequest: {
1920
+ encode(message: _122.QueryClientStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1921
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatesRequest;
1922
+ fromJSON(object: any): _122.QueryClientStatesRequest;
1923
+ toJSON(message: _122.QueryClientStatesRequest): unknown;
1924
+ fromPartial(object: {
1925
+ pagination?: {
1926
+ key?: Uint8Array;
1927
+ offset?: any;
1928
+ limit?: any;
1929
+ countTotal?: boolean;
1930
+ reverse?: boolean;
1931
+ };
1932
+ }): _122.QueryClientStatesRequest;
1933
+ };
1934
+ QueryClientStatesResponse: {
1935
+ encode(message: _122.QueryClientStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1936
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatesResponse;
1937
+ fromJSON(object: any): _122.QueryClientStatesResponse;
1938
+ toJSON(message: _122.QueryClientStatesResponse): unknown;
1939
+ fromPartial(object: {
1940
+ clientStates?: {
1941
+ clientId?: string;
1942
+ clientState?: {
1943
+ typeUrl?: string;
1944
+ value?: Uint8Array;
1945
+ };
1946
+ }[];
1947
+ pagination?: {
1948
+ nextKey?: Uint8Array;
1949
+ total?: any;
1950
+ };
1951
+ }): _122.QueryClientStatesResponse;
1952
+ };
1953
+ QueryConsensusStateRequest: {
1954
+ encode(message: _122.QueryConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1955
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStateRequest;
1956
+ fromJSON(object: any): _122.QueryConsensusStateRequest;
1957
+ toJSON(message: _122.QueryConsensusStateRequest): unknown;
1958
+ fromPartial(object: {
1959
+ clientId?: string;
1960
+ revisionNumber?: any;
1961
+ revisionHeight?: any;
1962
+ latestHeight?: boolean;
1963
+ }): _122.QueryConsensusStateRequest;
1964
+ };
1965
+ QueryConsensusStateResponse: {
1966
+ encode(message: _122.QueryConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1967
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStateResponse;
1968
+ fromJSON(object: any): _122.QueryConsensusStateResponse;
1969
+ toJSON(message: _122.QueryConsensusStateResponse): unknown;
1970
+ fromPartial(object: {
1971
+ consensusState?: {
1972
+ typeUrl?: string;
1973
+ value?: Uint8Array;
1974
+ };
1975
+ proof?: Uint8Array;
1976
+ proofHeight?: {
1977
+ revisionNumber?: any;
1978
+ revisionHeight?: any;
1979
+ };
1980
+ }): _122.QueryConsensusStateResponse;
1981
+ };
1982
+ QueryConsensusStatesRequest: {
1983
+ encode(message: _122.QueryConsensusStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1984
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStatesRequest;
1985
+ fromJSON(object: any): _122.QueryConsensusStatesRequest;
1986
+ toJSON(message: _122.QueryConsensusStatesRequest): unknown;
1987
+ fromPartial(object: {
1988
+ clientId?: string;
1989
+ pagination?: {
1990
+ key?: Uint8Array;
1991
+ offset?: any;
1992
+ limit?: any;
1993
+ countTotal?: boolean;
1994
+ reverse?: boolean;
1995
+ };
1996
+ }): _122.QueryConsensusStatesRequest;
1997
+ };
1998
+ QueryConsensusStatesResponse: {
1999
+ encode(message: _122.QueryConsensusStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2000
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStatesResponse;
2001
+ fromJSON(object: any): _122.QueryConsensusStatesResponse;
2002
+ toJSON(message: _122.QueryConsensusStatesResponse): unknown;
2003
+ fromPartial(object: {
2004
+ consensusStates?: {
2005
+ height?: {
2006
+ revisionNumber?: any;
2007
+ revisionHeight?: any;
2008
+ };
2009
+ consensusState?: {
2010
+ typeUrl?: string;
2011
+ value?: Uint8Array;
2012
+ };
2013
+ }[];
2014
+ pagination?: {
2015
+ nextKey?: Uint8Array;
2016
+ total?: any;
2017
+ };
2018
+ }): _122.QueryConsensusStatesResponse;
2019
+ };
2020
+ QueryClientStatusRequest: {
2021
+ encode(message: _122.QueryClientStatusRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2022
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatusRequest;
2023
+ fromJSON(object: any): _122.QueryClientStatusRequest;
2024
+ toJSON(message: _122.QueryClientStatusRequest): unknown;
2025
+ fromPartial(object: {
2026
+ clientId?: string;
2027
+ }): _122.QueryClientStatusRequest;
2028
+ };
2029
+ QueryClientStatusResponse: {
2030
+ encode(message: _122.QueryClientStatusResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2031
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatusResponse;
2032
+ fromJSON(object: any): _122.QueryClientStatusResponse;
2033
+ toJSON(message: _122.QueryClientStatusResponse): unknown;
2034
+ fromPartial(object: {
2035
+ status?: string;
2036
+ }): _122.QueryClientStatusResponse;
2037
+ };
2038
+ QueryClientParamsRequest: {
2039
+ encode(_: _122.QueryClientParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2040
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientParamsRequest;
2041
+ fromJSON(_: any): _122.QueryClientParamsRequest;
2042
+ toJSON(_: _122.QueryClientParamsRequest): unknown;
2043
+ fromPartial(_: {}): _122.QueryClientParamsRequest;
2044
+ };
2045
+ QueryClientParamsResponse: {
2046
+ encode(message: _122.QueryClientParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2047
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientParamsResponse;
2048
+ fromJSON(object: any): _122.QueryClientParamsResponse;
2049
+ toJSON(message: _122.QueryClientParamsResponse): unknown;
2050
+ fromPartial(object: {
2051
+ params?: {
2052
+ allowedClients?: string[];
2053
+ };
2054
+ }): _122.QueryClientParamsResponse;
2055
+ };
2056
+ QueryUpgradedClientStateRequest: {
2057
+ encode(_: _122.QueryUpgradedClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2058
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedClientStateRequest;
2059
+ fromJSON(_: any): _122.QueryUpgradedClientStateRequest;
2060
+ toJSON(_: _122.QueryUpgradedClientStateRequest): unknown;
2061
+ fromPartial(_: {}): _122.QueryUpgradedClientStateRequest;
2062
+ };
2063
+ QueryUpgradedClientStateResponse: {
2064
+ encode(message: _122.QueryUpgradedClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2065
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedClientStateResponse;
2066
+ fromJSON(object: any): _122.QueryUpgradedClientStateResponse;
2067
+ toJSON(message: _122.QueryUpgradedClientStateResponse): unknown;
2068
+ fromPartial(object: {
2069
+ upgradedClientState?: {
2070
+ typeUrl?: string;
2071
+ value?: Uint8Array;
2072
+ };
2073
+ }): _122.QueryUpgradedClientStateResponse;
2074
+ };
2075
+ QueryUpgradedConsensusStateRequest: {
2076
+ encode(_: _122.QueryUpgradedConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2077
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedConsensusStateRequest;
2078
+ fromJSON(_: any): _122.QueryUpgradedConsensusStateRequest;
2079
+ toJSON(_: _122.QueryUpgradedConsensusStateRequest): unknown;
2080
+ fromPartial(_: {}): _122.QueryUpgradedConsensusStateRequest;
2081
+ };
2082
+ QueryUpgradedConsensusStateResponse: {
2083
+ encode(message: _122.QueryUpgradedConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2084
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedConsensusStateResponse;
2085
+ fromJSON(object: any): _122.QueryUpgradedConsensusStateResponse;
2086
+ toJSON(message: _122.QueryUpgradedConsensusStateResponse): unknown;
2087
+ fromPartial(object: {
2088
+ upgradedConsensusState?: {
2089
+ typeUrl?: string;
2090
+ value?: Uint8Array;
2091
+ };
2092
+ }): _122.QueryUpgradedConsensusStateResponse;
2093
+ };
2094
+ GenesisState: {
2095
+ encode(message: _121.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2096
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.GenesisState;
2097
+ fromJSON(object: any): _121.GenesisState;
2098
+ toJSON(message: _121.GenesisState): unknown;
2099
+ fromPartial(object: {
2100
+ clients?: {
2101
+ clientId?: string;
2102
+ clientState?: {
2103
+ typeUrl?: string;
2104
+ value?: Uint8Array;
2105
+ };
2106
+ }[];
2107
+ clientsConsensus?: {
2108
+ clientId?: string;
2109
+ consensusStates?: {
2110
+ height?: {
2111
+ revisionNumber?: any;
2112
+ revisionHeight?: any;
2113
+ };
2114
+ consensusState?: {
2115
+ typeUrl?: string;
2116
+ value?: Uint8Array;
2117
+ };
2118
+ }[];
2119
+ }[];
2120
+ clientsMetadata?: {
2121
+ clientId?: string;
2122
+ clientMetadata?: {
2123
+ key?: Uint8Array;
2124
+ value?: Uint8Array;
2125
+ }[];
2126
+ }[];
2127
+ params?: {
2128
+ allowedClients?: string[];
2129
+ };
2130
+ createLocalhost?: boolean;
2131
+ nextClientSequence?: any;
2132
+ }): _121.GenesisState;
2133
+ };
2134
+ GenesisMetadata: {
2135
+ encode(message: _121.GenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2136
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.GenesisMetadata;
2137
+ fromJSON(object: any): _121.GenesisMetadata;
2138
+ toJSON(message: _121.GenesisMetadata): unknown;
2139
+ fromPartial(object: {
2140
+ key?: Uint8Array;
2141
+ value?: Uint8Array;
2142
+ }): _121.GenesisMetadata;
2143
+ };
2144
+ IdentifiedGenesisMetadata: {
2145
+ encode(message: _121.IdentifiedGenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2146
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.IdentifiedGenesisMetadata;
2147
+ fromJSON(object: any): _121.IdentifiedGenesisMetadata;
2148
+ toJSON(message: _121.IdentifiedGenesisMetadata): unknown;
2149
+ fromPartial(object: {
2150
+ clientId?: string;
2151
+ clientMetadata?: {
2152
+ key?: Uint8Array;
2153
+ value?: Uint8Array;
2154
+ }[];
2155
+ }): _121.IdentifiedGenesisMetadata;
2156
+ };
2157
+ IdentifiedClientState: {
2158
+ encode(message: _120.IdentifiedClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2159
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.IdentifiedClientState;
2160
+ fromJSON(object: any): _120.IdentifiedClientState;
2161
+ toJSON(message: _120.IdentifiedClientState): unknown;
2162
+ fromPartial(object: {
2163
+ clientId?: string;
2164
+ clientState?: {
2165
+ typeUrl?: string;
2166
+ value?: Uint8Array;
2167
+ };
2168
+ }): _120.IdentifiedClientState;
2169
+ };
2170
+ ConsensusStateWithHeight: {
2171
+ encode(message: _120.ConsensusStateWithHeight, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2172
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ConsensusStateWithHeight;
2173
+ fromJSON(object: any): _120.ConsensusStateWithHeight;
2174
+ toJSON(message: _120.ConsensusStateWithHeight): unknown;
2175
+ fromPartial(object: {
2176
+ height?: {
2177
+ revisionNumber?: any;
2178
+ revisionHeight?: any;
2179
+ };
2180
+ consensusState?: {
2181
+ typeUrl?: string;
2182
+ value?: Uint8Array;
2183
+ };
2184
+ }): _120.ConsensusStateWithHeight;
2185
+ };
2186
+ ClientConsensusStates: {
2187
+ encode(message: _120.ClientConsensusStates, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2188
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ClientConsensusStates;
2189
+ fromJSON(object: any): _120.ClientConsensusStates;
2190
+ toJSON(message: _120.ClientConsensusStates): unknown;
2191
+ fromPartial(object: {
2192
+ clientId?: string;
2193
+ consensusStates?: {
2194
+ height?: {
2195
+ revisionNumber?: any;
2196
+ revisionHeight?: any;
2197
+ };
2198
+ consensusState?: {
2199
+ typeUrl?: string;
2200
+ value?: Uint8Array;
2201
+ };
2202
+ }[];
2203
+ }): _120.ClientConsensusStates;
2204
+ };
2205
+ ClientUpdateProposal: {
2206
+ encode(message: _120.ClientUpdateProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2207
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ClientUpdateProposal;
2208
+ fromJSON(object: any): _120.ClientUpdateProposal;
2209
+ toJSON(message: _120.ClientUpdateProposal): unknown;
2210
+ fromPartial(object: {
2211
+ title?: string;
2212
+ description?: string;
2213
+ subjectClientId?: string;
2214
+ substituteClientId?: string;
2215
+ }): _120.ClientUpdateProposal;
2216
+ };
2217
+ UpgradeProposal: {
2218
+ encode(message: _120.UpgradeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2219
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.UpgradeProposal;
2220
+ fromJSON(object: any): _120.UpgradeProposal;
2221
+ toJSON(message: _120.UpgradeProposal): unknown;
2222
+ fromPartial(object: {
2223
+ title?: string;
2224
+ description?: string;
2225
+ plan?: any;
2226
+ upgradedClientState?: {
2227
+ typeUrl?: string;
2228
+ value?: Uint8Array;
2229
+ };
2230
+ }): _120.UpgradeProposal;
2231
+ };
2232
+ Height: {
2233
+ encode(message: _120.Height, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2234
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.Height;
2235
+ fromJSON(object: any): _120.Height;
2236
+ toJSON(message: _120.Height): unknown;
2237
+ fromPartial(object: {
2238
+ revisionNumber?: any;
2239
+ revisionHeight?: any;
2240
+ }): _120.Height;
2241
+ };
2242
+ Params: {
2243
+ encode(message: _120.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2244
+ decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.Params;
2245
+ fromJSON(object: any): _120.Params;
2246
+ toJSON(message: _120.Params): unknown;
2247
+ fromPartial(object: {
2248
+ allowedClients?: string[];
2249
+ }): _120.Params;
2250
+ };
2251
+ };
1465
2252
  }
1466
2253
  namespace commitment {
1467
2254
  const v1: {
@@ -1523,7 +2310,10 @@ export declare namespace ibc {
1523
2310
  toJSON(message: _131.ClientState): unknown;
1524
2311
  fromPartial(object: {
1525
2312
  chainId?: string;
1526
- height?: any;
2313
+ height?: {
2314
+ revisionNumber?: any;
2315
+ revisionHeight?: any;
2316
+ };
1527
2317
  }): _131.ClientState;
1528
2318
  };
1529
2319
  };
@@ -1991,8 +2781,14 @@ export declare namespace ibc {
1991
2781
  seconds?: any;
1992
2782
  nanos?: number;
1993
2783
  };
1994
- frozenHeight?: any;
1995
- latestHeight?: any;
2784
+ frozenHeight?: {
2785
+ revisionNumber?: any;
2786
+ revisionHeight?: any;
2787
+ };
2788
+ latestHeight?: {
2789
+ revisionNumber?: any;
2790
+ revisionHeight?: any;
2791
+ };
1996
2792
  proofSpecs?: any[];
1997
2793
  upgradePath?: string[];
1998
2794
  allowUpdateAfterExpiry?: boolean;
@@ -2085,7 +2881,10 @@ export declare namespace ibc {
2085
2881
  };
2086
2882
  totalVotingPower?: any;
2087
2883
  };
2088
- trustedHeight?: any;
2884
+ trustedHeight?: {
2885
+ revisionNumber?: any;
2886
+ revisionHeight?: any;
2887
+ };
2089
2888
  trustedValidators?: {
2090
2889
  validators?: {
2091
2890
  address?: Uint8Array;
@@ -2174,7 +2973,10 @@ export declare namespace ibc {
2174
2973
  };
2175
2974
  totalVotingPower?: any;
2176
2975
  };
2177
- trustedHeight?: any;
2976
+ trustedHeight?: {
2977
+ revisionNumber?: any;
2978
+ revisionHeight?: any;
2979
+ };
2178
2980
  trustedValidators?: {
2179
2981
  validators?: {
2180
2982
  address?: Uint8Array;
@@ -2270,7 +3072,10 @@ export declare namespace ibc {
2270
3072
  };
2271
3073
  totalVotingPower?: any;
2272
3074
  };
2273
- trustedHeight?: any;
3075
+ trustedHeight?: {
3076
+ revisionNumber?: any;
3077
+ revisionHeight?: any;
3078
+ };
2274
3079
  trustedValidators?: {
2275
3080
  validators?: {
2276
3081
  address?: Uint8Array;
@@ -2332,12 +3137,15 @@ export declare namespace ibc {
2332
3137
  ibc: {
2333
3138
  applications: {
2334
3139
  transfer: {
2335
- v1: _193.MsgClientImpl;
3140
+ v1: _197.MsgClientImpl;
2336
3141
  };
2337
3142
  };
2338
3143
  core: {
2339
3144
  channel: {
2340
- v1: _194.MsgClientImpl;
3145
+ v1: _198.MsgClientImpl;
3146
+ };
3147
+ client: {
3148
+ v1: _199.MsgClientImpl;
2341
3149
  };
2342
3150
  };
2343
3151
  };
@@ -2366,12 +3174,15 @@ export declare namespace ibc {
2366
3174
  ibc: {
2367
3175
  applications: {
2368
3176
  transfer: {
2369
- v1: _191.QueryClientImpl;
3177
+ v1: _194.QueryClientImpl;
2370
3178
  };
2371
3179
  };
2372
3180
  core: {
2373
3181
  channel: {
2374
- v1: _192.QueryClientImpl;
3182
+ v1: _195.QueryClientImpl;
3183
+ };
3184
+ client: {
3185
+ v1: _196.QueryClientImpl;
2375
3186
  };
2376
3187
  };
2377
3188
  };
@@ -2400,12 +3211,15 @@ export declare namespace ibc {
2400
3211
  ibc: {
2401
3212
  applications: {
2402
3213
  transfer: {
2403
- v1: _189.LCDQueryClient;
3214
+ v1: _191.LCDQueryClient;
2404
3215
  };
2405
3216
  };
2406
3217
  core: {
2407
3218
  channel: {
2408
- v1: _190.LCDQueryClient;
3219
+ v1: _192.LCDQueryClient;
3220
+ };
3221
+ client: {
3222
+ v1: _193.LCDQueryClient;
2409
3223
  };
2410
3224
  };
2411
3225
  };