@hyperlane-xyz/sdk 12.0.0 → 12.1.0-cli-bundle.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/deploy/proxy.d.ts +7 -4
  2. package/dist/deploy/proxy.d.ts.map +1 -1
  3. package/dist/deploy/proxy.js.map +1 -1
  4. package/dist/deploy/proxyFactoryUtils.d.ts +7 -0
  5. package/dist/deploy/proxyFactoryUtils.d.ts.map +1 -0
  6. package/dist/deploy/proxyFactoryUtils.js +12 -0
  7. package/dist/deploy/proxyFactoryUtils.js.map +1 -0
  8. package/dist/hook/types.d.ts +1 -0
  9. package/dist/hook/types.d.ts.map +1 -1
  10. package/dist/hook/types.js +14 -0
  11. package/dist/hook/types.js.map +1 -1
  12. package/dist/index.d.ts +2 -2
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +2 -2
  15. package/dist/index.js.map +1 -1
  16. package/dist/ism/types.d.ts +5 -0
  17. package/dist/ism/types.d.ts.map +1 -1
  18. package/dist/ism/types.js +12 -0
  19. package/dist/ism/types.js.map +1 -1
  20. package/dist/ism/utils.d.ts +21 -1
  21. package/dist/ism/utils.d.ts.map +1 -1
  22. package/dist/ism/utils.js +25 -1
  23. package/dist/ism/utils.js.map +1 -1
  24. package/dist/metadata/agentConfig.d.ts +290 -245
  25. package/dist/metadata/agentConfig.d.ts.map +1 -1
  26. package/dist/metadata/agentConfig.js +26 -0
  27. package/dist/metadata/agentConfig.js.map +1 -1
  28. package/dist/metadata/chainMetadataTypes.d.ts +1 -0
  29. package/dist/metadata/chainMetadataTypes.d.ts.map +1 -1
  30. package/dist/metadata/chainMetadataTypes.js +1 -0
  31. package/dist/metadata/chainMetadataTypes.js.map +1 -1
  32. package/dist/router/HyperlaneRouterChecker.d.ts.map +1 -1
  33. package/dist/router/HyperlaneRouterChecker.js +19 -0
  34. package/dist/router/HyperlaneRouterChecker.js.map +1 -1
  35. package/dist/router/ProxiedRouterChecker.d.ts.map +1 -1
  36. package/dist/router/ProxiedRouterChecker.js +7 -0
  37. package/dist/router/ProxiedRouterChecker.js.map +1 -1
  38. package/dist/router/types.d.ts +7 -0
  39. package/dist/router/types.d.ts.map +1 -1
  40. package/dist/router/types.js +1 -0
  41. package/dist/router/types.js.map +1 -1
  42. package/dist/utils/zksync.d.ts +8 -0
  43. package/dist/utils/zksync.d.ts.map +1 -0
  44. package/dist/utils/zksync.js +24 -0
  45. package/dist/utils/zksync.js.map +1 -0
  46. package/dist/zksync/ZKSyncDeployer.d.ts +59 -0
  47. package/dist/zksync/ZKSyncDeployer.d.ts.map +1 -0
  48. package/dist/zksync/ZKSyncDeployer.js +123 -0
  49. package/dist/zksync/ZKSyncDeployer.js.map +1 -0
  50. package/package.json +3 -3
@@ -3,6 +3,7 @@
3
3
  * ANY CHANGES HERE NEED TO BE REFLECTED IN HYPERLANE-BASE CONFIG PARSING.
4
4
  */
5
5
  import { z } from 'zod';
6
+ import { ModuleType } from '@hyperlane-xyz/sdk';
6
7
  import { ProtocolType } from '@hyperlane-xyz/utils';
7
8
  import { MultiProvider } from '../providers/MultiProvider.js';
8
9
  import { ChainMap, ChainName } from '../types.js';
@@ -235,20 +236,20 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
235
236
  interchainGasPaymaster: z.ZodString;
236
237
  name: z.ZodString;
237
238
  availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
238
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
239
- reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
239
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
240
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
240
241
  }, "strip", z.ZodTypeAny, {
241
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
242
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
242
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
243
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
243
244
  }, {
244
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
245
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
245
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
246
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
246
247
  }>, z.ZodObject<{
247
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
248
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
248
249
  }, "strip", z.ZodTypeAny, {
249
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
250
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
250
251
  }, {
251
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
252
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
252
253
  }>]>>;
253
254
  bech32Prefix: z.ZodOptional<z.ZodString>;
254
255
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -256,19 +257,19 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
256
257
  url: z.ZodString;
257
258
  apiUrl: z.ZodString;
258
259
  apiKey: z.ZodOptional<z.ZodString>;
259
- family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
260
+ family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
260
261
  }, "strip", z.ZodTypeAny, {
261
262
  name: string;
262
263
  url: string;
263
264
  apiUrl: string;
264
265
  apiKey?: string | undefined;
265
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
266
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
266
267
  }, {
267
268
  name: string;
268
269
  url: string;
269
270
  apiUrl: string;
270
271
  apiKey?: string | undefined;
271
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
272
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
272
273
  }>, "many">>;
273
274
  blocks: z.ZodOptional<z.ZodObject<{
274
275
  confirmations: z.ZodNumber;
@@ -507,7 +508,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
507
508
  public?: boolean | undefined;
508
509
  }>, "many">;
509
510
  slip44: z.ZodOptional<z.ZodNumber>;
510
- technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
511
+ technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
511
512
  transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
512
513
  signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
513
514
  type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
@@ -617,10 +618,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
617
618
  amount: string;
618
619
  } | undefined;
619
620
  availability?: {
620
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
621
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
621
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
622
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
622
623
  } | {
623
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
624
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
624
625
  } | undefined;
625
626
  bech32Prefix?: string | undefined;
626
627
  blockExplorers?: {
@@ -628,7 +629,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
628
629
  url: string;
629
630
  apiUrl: string;
630
631
  apiKey?: string | undefined;
631
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
632
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
632
633
  }[] | undefined;
633
634
  blocks?: {
634
635
  confirmations: number;
@@ -689,7 +690,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
689
690
  public?: boolean | undefined;
690
691
  }[] | undefined;
691
692
  slip44?: number | undefined;
692
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
693
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
693
694
  transactionOverrides?: Record<string, any> | undefined;
694
695
  signer?: {
695
696
  key: string;
@@ -751,10 +752,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
751
752
  amount: string;
752
753
  } | undefined;
753
754
  availability?: {
754
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
755
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
755
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
756
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
756
757
  } | {
757
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
758
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
758
759
  } | undefined;
759
760
  bech32Prefix?: string | undefined;
760
761
  blockExplorers?: {
@@ -762,7 +763,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
762
763
  url: string;
763
764
  apiUrl: string;
764
765
  apiKey?: string | undefined;
765
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
766
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
766
767
  }[] | undefined;
767
768
  blocks?: {
768
769
  confirmations: number;
@@ -823,7 +824,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
823
824
  public?: boolean | undefined;
824
825
  }[] | undefined;
825
826
  slip44?: number | undefined;
826
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
827
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
827
828
  transactionOverrides?: Record<string, any> | undefined;
828
829
  signer?: {
829
830
  key: string;
@@ -885,10 +886,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
885
886
  amount: string;
886
887
  } | undefined;
887
888
  availability?: {
888
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
889
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
889
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
890
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
890
891
  } | {
891
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
892
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
892
893
  } | undefined;
893
894
  bech32Prefix?: string | undefined;
894
895
  blockExplorers?: {
@@ -896,7 +897,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
896
897
  url: string;
897
898
  apiUrl: string;
898
899
  apiKey?: string | undefined;
899
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
900
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
900
901
  }[] | undefined;
901
902
  blocks?: {
902
903
  confirmations: number;
@@ -957,7 +958,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
957
958
  public?: boolean | undefined;
958
959
  }[] | undefined;
959
960
  slip44?: number | undefined;
960
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
961
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
961
962
  transactionOverrides?: Record<string, any> | undefined;
962
963
  signer?: {
963
964
  key: string;
@@ -1019,10 +1020,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
1019
1020
  amount: string;
1020
1021
  } | undefined;
1021
1022
  availability?: {
1022
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1023
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1023
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1024
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1024
1025
  } | {
1025
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1026
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1026
1027
  } | undefined;
1027
1028
  bech32Prefix?: string | undefined;
1028
1029
  blockExplorers?: {
@@ -1030,7 +1031,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
1030
1031
  url: string;
1031
1032
  apiUrl: string;
1032
1033
  apiKey?: string | undefined;
1033
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1034
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1034
1035
  }[] | undefined;
1035
1036
  blocks?: {
1036
1037
  confirmations: number;
@@ -1091,7 +1092,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
1091
1092
  public?: boolean | undefined;
1092
1093
  }[] | undefined;
1093
1094
  slip44?: number | undefined;
1094
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
1095
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
1095
1096
  transactionOverrides?: Record<string, any> | undefined;
1096
1097
  signer?: {
1097
1098
  key: string;
@@ -1143,20 +1144,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
1143
1144
  interchainGasPaymaster: z.ZodString;
1144
1145
  name: z.ZodString;
1145
1146
  availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1146
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
1147
- reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
1147
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
1148
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
1148
1149
  }, "strip", z.ZodTypeAny, {
1149
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1150
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1150
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1151
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1151
1152
  }, {
1152
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1153
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1153
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1154
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1154
1155
  }>, z.ZodObject<{
1155
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
1156
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
1156
1157
  }, "strip", z.ZodTypeAny, {
1157
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1158
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1158
1159
  }, {
1159
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1160
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1160
1161
  }>]>>;
1161
1162
  bech32Prefix: z.ZodOptional<z.ZodString>;
1162
1163
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1164,19 +1165,19 @@ export declare const AgentConfigSchema: z.ZodObject<{
1164
1165
  url: z.ZodString;
1165
1166
  apiUrl: z.ZodString;
1166
1167
  apiKey: z.ZodOptional<z.ZodString>;
1167
- family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
1168
+ family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
1168
1169
  }, "strip", z.ZodTypeAny, {
1169
1170
  name: string;
1170
1171
  url: string;
1171
1172
  apiUrl: string;
1172
1173
  apiKey?: string | undefined;
1173
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1174
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1174
1175
  }, {
1175
1176
  name: string;
1176
1177
  url: string;
1177
1178
  apiUrl: string;
1178
1179
  apiKey?: string | undefined;
1179
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1180
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1180
1181
  }>, "many">>;
1181
1182
  blocks: z.ZodOptional<z.ZodObject<{
1182
1183
  confirmations: z.ZodNumber;
@@ -1415,7 +1416,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1415
1416
  public?: boolean | undefined;
1416
1417
  }>, "many">;
1417
1418
  slip44: z.ZodOptional<z.ZodNumber>;
1418
- technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
1419
+ technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
1419
1420
  transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1420
1421
  signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1421
1422
  type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
@@ -1525,10 +1526,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
1525
1526
  amount: string;
1526
1527
  } | undefined;
1527
1528
  availability?: {
1528
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1529
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1529
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1530
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1530
1531
  } | {
1531
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1532
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1532
1533
  } | undefined;
1533
1534
  bech32Prefix?: string | undefined;
1534
1535
  blockExplorers?: {
@@ -1536,7 +1537,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1536
1537
  url: string;
1537
1538
  apiUrl: string;
1538
1539
  apiKey?: string | undefined;
1539
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1540
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1540
1541
  }[] | undefined;
1541
1542
  blocks?: {
1542
1543
  confirmations: number;
@@ -1597,7 +1598,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1597
1598
  public?: boolean | undefined;
1598
1599
  }[] | undefined;
1599
1600
  slip44?: number | undefined;
1600
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
1601
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
1601
1602
  transactionOverrides?: Record<string, any> | undefined;
1602
1603
  signer?: {
1603
1604
  key: string;
@@ -1659,10 +1660,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
1659
1660
  amount: string;
1660
1661
  } | undefined;
1661
1662
  availability?: {
1662
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1663
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1663
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1664
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1664
1665
  } | {
1665
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1666
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1666
1667
  } | undefined;
1667
1668
  bech32Prefix?: string | undefined;
1668
1669
  blockExplorers?: {
@@ -1670,7 +1671,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1670
1671
  url: string;
1671
1672
  apiUrl: string;
1672
1673
  apiKey?: string | undefined;
1673
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1674
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1674
1675
  }[] | undefined;
1675
1676
  blocks?: {
1676
1677
  confirmations: number;
@@ -1731,7 +1732,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1731
1732
  public?: boolean | undefined;
1732
1733
  }[] | undefined;
1733
1734
  slip44?: number | undefined;
1734
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
1735
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
1735
1736
  transactionOverrides?: Record<string, any> | undefined;
1736
1737
  signer?: {
1737
1738
  key: string;
@@ -1793,10 +1794,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
1793
1794
  amount: string;
1794
1795
  } | undefined;
1795
1796
  availability?: {
1796
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1797
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1797
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1798
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1798
1799
  } | {
1799
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1800
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1800
1801
  } | undefined;
1801
1802
  bech32Prefix?: string | undefined;
1802
1803
  blockExplorers?: {
@@ -1804,7 +1805,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1804
1805
  url: string;
1805
1806
  apiUrl: string;
1806
1807
  apiKey?: string | undefined;
1807
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1808
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1808
1809
  }[] | undefined;
1809
1810
  blocks?: {
1810
1811
  confirmations: number;
@@ -1865,7 +1866,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1865
1866
  public?: boolean | undefined;
1866
1867
  }[] | undefined;
1867
1868
  slip44?: number | undefined;
1868
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
1869
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
1869
1870
  transactionOverrides?: Record<string, any> | undefined;
1870
1871
  signer?: {
1871
1872
  key: string;
@@ -1927,10 +1928,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
1927
1928
  amount: string;
1928
1929
  } | undefined;
1929
1930
  availability?: {
1930
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1931
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1931
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
1932
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
1932
1933
  } | {
1933
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
1934
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
1934
1935
  } | undefined;
1935
1936
  bech32Prefix?: string | undefined;
1936
1937
  blockExplorers?: {
@@ -1938,7 +1939,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1938
1939
  url: string;
1939
1940
  apiUrl: string;
1940
1941
  apiKey?: string | undefined;
1941
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
1942
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
1942
1943
  }[] | undefined;
1943
1944
  blocks?: {
1944
1945
  confirmations: number;
@@ -1999,7 +2000,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
1999
2000
  public?: boolean | undefined;
2000
2001
  }[] | undefined;
2001
2002
  slip44?: number | undefined;
2002
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
2003
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
2003
2004
  transactionOverrides?: Record<string, any> | undefined;
2004
2005
  signer?: {
2005
2006
  key: string;
@@ -2061,10 +2062,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
2061
2062
  amount: string;
2062
2063
  } | undefined;
2063
2064
  availability?: {
2064
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2065
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2065
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2066
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2066
2067
  } | {
2067
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2068
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2068
2069
  } | undefined;
2069
2070
  bech32Prefix?: string | undefined;
2070
2071
  blockExplorers?: {
@@ -2072,7 +2073,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2072
2073
  url: string;
2073
2074
  apiUrl: string;
2074
2075
  apiKey?: string | undefined;
2075
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2076
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2076
2077
  }[] | undefined;
2077
2078
  blocks?: {
2078
2079
  confirmations: number;
@@ -2133,7 +2134,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2133
2134
  public?: boolean | undefined;
2134
2135
  }[] | undefined;
2135
2136
  slip44?: number | undefined;
2136
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
2137
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
2137
2138
  transactionOverrides?: Record<string, any> | undefined;
2138
2139
  signer?: {
2139
2140
  key: string;
@@ -2195,10 +2196,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
2195
2196
  amount: string;
2196
2197
  } | undefined;
2197
2198
  availability?: {
2198
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2199
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2199
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2200
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2200
2201
  } | {
2201
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2202
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2202
2203
  } | undefined;
2203
2204
  bech32Prefix?: string | undefined;
2204
2205
  blockExplorers?: {
@@ -2206,7 +2207,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2206
2207
  url: string;
2207
2208
  apiUrl: string;
2208
2209
  apiKey?: string | undefined;
2209
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2210
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2210
2211
  }[] | undefined;
2211
2212
  blocks?: {
2212
2213
  confirmations: number;
@@ -2267,7 +2268,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2267
2268
  public?: boolean | undefined;
2268
2269
  }[] | undefined;
2269
2270
  slip44?: number | undefined;
2270
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
2271
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
2271
2272
  transactionOverrides?: Record<string, any> | undefined;
2272
2273
  signer?: {
2273
2274
  key: string;
@@ -2382,10 +2383,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
2382
2383
  amount: string;
2383
2384
  } | undefined;
2384
2385
  availability?: {
2385
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2386
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2386
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2387
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2387
2388
  } | {
2388
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2389
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2389
2390
  } | undefined;
2390
2391
  bech32Prefix?: string | undefined;
2391
2392
  blockExplorers?: {
@@ -2393,7 +2394,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2393
2394
  url: string;
2394
2395
  apiUrl: string;
2395
2396
  apiKey?: string | undefined;
2396
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2397
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2397
2398
  }[] | undefined;
2398
2399
  blocks?: {
2399
2400
  confirmations: number;
@@ -2454,7 +2455,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2454
2455
  public?: boolean | undefined;
2455
2456
  }[] | undefined;
2456
2457
  slip44?: number | undefined;
2457
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
2458
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
2458
2459
  transactionOverrides?: Record<string, any> | undefined;
2459
2460
  signer?: {
2460
2461
  key: string;
@@ -2538,10 +2539,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
2538
2539
  amount: string;
2539
2540
  } | undefined;
2540
2541
  availability?: {
2541
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2542
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2542
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2543
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2543
2544
  } | {
2544
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2545
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2545
2546
  } | undefined;
2546
2547
  bech32Prefix?: string | undefined;
2547
2548
  blockExplorers?: {
@@ -2549,7 +2550,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2549
2550
  url: string;
2550
2551
  apiUrl: string;
2551
2552
  apiKey?: string | undefined;
2552
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2553
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2553
2554
  }[] | undefined;
2554
2555
  blocks?: {
2555
2556
  confirmations: number;
@@ -2610,7 +2611,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
2610
2611
  public?: boolean | undefined;
2611
2612
  }[] | undefined;
2612
2613
  slip44?: number | undefined;
2613
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
2614
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
2614
2615
  transactionOverrides?: Record<string, any> | undefined;
2615
2616
  signer?: {
2616
2617
  key: string;
@@ -2795,6 +2796,24 @@ declare const GasPaymentEnforcementSchema: z.ZodUnion<[z.ZodObject<{
2795
2796
  gasFraction?: string | undefined;
2796
2797
  }>]>;
2797
2798
  export type GasPaymentEnforcement = z.infer<typeof GasPaymentEnforcementSchema>;
2799
+ export declare enum IsmCachePolicy {
2800
+ MessageSpecific = "messageSpecific",
2801
+ IsmSpecific = "ismSpecific"
2802
+ }
2803
+ declare const IsmCacheConfigSchema: z.ZodObject<{
2804
+ moduleTypes: z.ZodArray<z.ZodNativeEnum<typeof ModuleType>, "many">;
2805
+ chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2806
+ cachePolicy: z.ZodNativeEnum<typeof IsmCachePolicy>;
2807
+ }, "strip", z.ZodTypeAny, {
2808
+ moduleTypes: ModuleType[];
2809
+ cachePolicy: IsmCachePolicy;
2810
+ chains?: string[] | undefined;
2811
+ }, {
2812
+ moduleTypes: ModuleType[];
2813
+ cachePolicy: IsmCachePolicy;
2814
+ chains?: string[] | undefined;
2815
+ }>;
2816
+ export type IsmCacheConfig = z.infer<typeof IsmCacheConfigSchema>;
2798
2817
  export declare const RelayerAgentConfigSchema: z.ZodObject<{
2799
2818
  metricsPort: z.ZodOptional<z.ZodNumber>;
2800
2819
  chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
@@ -2812,20 +2831,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
2812
2831
  interchainGasPaymaster: z.ZodString;
2813
2832
  name: z.ZodString;
2814
2833
  availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2815
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
2816
- reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
2834
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
2835
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
2817
2836
  }, "strip", z.ZodTypeAny, {
2818
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2819
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2837
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2838
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2820
2839
  }, {
2821
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2822
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2840
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
2841
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
2823
2842
  }>, z.ZodObject<{
2824
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
2843
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
2825
2844
  }, "strip", z.ZodTypeAny, {
2826
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2845
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2827
2846
  }, {
2828
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
2847
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
2829
2848
  }>]>>;
2830
2849
  bech32Prefix: z.ZodOptional<z.ZodString>;
2831
2850
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2833,19 +2852,19 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
2833
2852
  url: z.ZodString;
2834
2853
  apiUrl: z.ZodString;
2835
2854
  apiKey: z.ZodOptional<z.ZodString>;
2836
- family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
2855
+ family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
2837
2856
  }, "strip", z.ZodTypeAny, {
2838
2857
  name: string;
2839
2858
  url: string;
2840
2859
  apiUrl: string;
2841
2860
  apiKey?: string | undefined;
2842
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2861
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2843
2862
  }, {
2844
2863
  name: string;
2845
2864
  url: string;
2846
2865
  apiUrl: string;
2847
2866
  apiKey?: string | undefined;
2848
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
2867
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
2849
2868
  }>, "many">>;
2850
2869
  blocks: z.ZodOptional<z.ZodObject<{
2851
2870
  confirmations: z.ZodNumber;
@@ -3084,7 +3103,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3084
3103
  public?: boolean | undefined;
3085
3104
  }>, "many">;
3086
3105
  slip44: z.ZodOptional<z.ZodNumber>;
3087
- technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
3106
+ technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
3088
3107
  transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3089
3108
  signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3090
3109
  type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
@@ -3194,10 +3213,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3194
3213
  amount: string;
3195
3214
  } | undefined;
3196
3215
  availability?: {
3197
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3198
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3216
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3217
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3199
3218
  } | {
3200
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3219
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3201
3220
  } | undefined;
3202
3221
  bech32Prefix?: string | undefined;
3203
3222
  blockExplorers?: {
@@ -3205,7 +3224,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3205
3224
  url: string;
3206
3225
  apiUrl: string;
3207
3226
  apiKey?: string | undefined;
3208
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3227
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3209
3228
  }[] | undefined;
3210
3229
  blocks?: {
3211
3230
  confirmations: number;
@@ -3266,7 +3285,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3266
3285
  public?: boolean | undefined;
3267
3286
  }[] | undefined;
3268
3287
  slip44?: number | undefined;
3269
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3288
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3270
3289
  transactionOverrides?: Record<string, any> | undefined;
3271
3290
  signer?: {
3272
3291
  key: string;
@@ -3328,10 +3347,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3328
3347
  amount: string;
3329
3348
  } | undefined;
3330
3349
  availability?: {
3331
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3332
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3350
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3351
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3333
3352
  } | {
3334
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3353
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3335
3354
  } | undefined;
3336
3355
  bech32Prefix?: string | undefined;
3337
3356
  blockExplorers?: {
@@ -3339,7 +3358,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3339
3358
  url: string;
3340
3359
  apiUrl: string;
3341
3360
  apiKey?: string | undefined;
3342
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3361
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3343
3362
  }[] | undefined;
3344
3363
  blocks?: {
3345
3364
  confirmations: number;
@@ -3400,7 +3419,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3400
3419
  public?: boolean | undefined;
3401
3420
  }[] | undefined;
3402
3421
  slip44?: number | undefined;
3403
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3422
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3404
3423
  transactionOverrides?: Record<string, any> | undefined;
3405
3424
  signer?: {
3406
3425
  key: string;
@@ -3462,10 +3481,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3462
3481
  amount: string;
3463
3482
  } | undefined;
3464
3483
  availability?: {
3465
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3466
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3484
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3485
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3467
3486
  } | {
3468
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3487
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3469
3488
  } | undefined;
3470
3489
  bech32Prefix?: string | undefined;
3471
3490
  blockExplorers?: {
@@ -3473,7 +3492,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3473
3492
  url: string;
3474
3493
  apiUrl: string;
3475
3494
  apiKey?: string | undefined;
3476
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3495
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3477
3496
  }[] | undefined;
3478
3497
  blocks?: {
3479
3498
  confirmations: number;
@@ -3534,7 +3553,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3534
3553
  public?: boolean | undefined;
3535
3554
  }[] | undefined;
3536
3555
  slip44?: number | undefined;
3537
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3556
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3538
3557
  transactionOverrides?: Record<string, any> | undefined;
3539
3558
  signer?: {
3540
3559
  key: string;
@@ -3596,10 +3615,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3596
3615
  amount: string;
3597
3616
  } | undefined;
3598
3617
  availability?: {
3599
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3600
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3618
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3619
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3601
3620
  } | {
3602
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3621
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3603
3622
  } | undefined;
3604
3623
  bech32Prefix?: string | undefined;
3605
3624
  blockExplorers?: {
@@ -3607,7 +3626,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3607
3626
  url: string;
3608
3627
  apiUrl: string;
3609
3628
  apiKey?: string | undefined;
3610
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3629
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3611
3630
  }[] | undefined;
3612
3631
  blocks?: {
3613
3632
  confirmations: number;
@@ -3668,7 +3687,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3668
3687
  public?: boolean | undefined;
3669
3688
  }[] | undefined;
3670
3689
  slip44?: number | undefined;
3671
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3690
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3672
3691
  transactionOverrides?: Record<string, any> | undefined;
3673
3692
  signer?: {
3674
3693
  key: string;
@@ -3730,10 +3749,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3730
3749
  amount: string;
3731
3750
  } | undefined;
3732
3751
  availability?: {
3733
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3734
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3752
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3753
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3735
3754
  } | {
3736
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3755
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3737
3756
  } | undefined;
3738
3757
  bech32Prefix?: string | undefined;
3739
3758
  blockExplorers?: {
@@ -3741,7 +3760,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3741
3760
  url: string;
3742
3761
  apiUrl: string;
3743
3762
  apiKey?: string | undefined;
3744
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3763
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3745
3764
  }[] | undefined;
3746
3765
  blocks?: {
3747
3766
  confirmations: number;
@@ -3802,7 +3821,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3802
3821
  public?: boolean | undefined;
3803
3822
  }[] | undefined;
3804
3823
  slip44?: number | undefined;
3805
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3824
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3806
3825
  transactionOverrides?: Record<string, any> | undefined;
3807
3826
  signer?: {
3808
3827
  key: string;
@@ -3864,10 +3883,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3864
3883
  amount: string;
3865
3884
  } | undefined;
3866
3885
  availability?: {
3867
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3868
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3886
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
3887
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
3869
3888
  } | {
3870
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
3889
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
3871
3890
  } | undefined;
3872
3891
  bech32Prefix?: string | undefined;
3873
3892
  blockExplorers?: {
@@ -3875,7 +3894,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3875
3894
  url: string;
3876
3895
  apiUrl: string;
3877
3896
  apiKey?: string | undefined;
3878
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
3897
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
3879
3898
  }[] | undefined;
3880
3899
  blocks?: {
3881
3900
  confirmations: number;
@@ -3936,7 +3955,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3936
3955
  public?: boolean | undefined;
3937
3956
  }[] | undefined;
3938
3957
  slip44?: number | undefined;
3939
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
3958
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
3940
3959
  transactionOverrides?: Record<string, any> | undefined;
3941
3960
  signer?: {
3942
3961
  key: string;
@@ -4229,6 +4248,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4229
4248
  recipientAddress?: string | string[] | undefined;
4230
4249
  }[];
4231
4250
  }>, "many">, z.ZodString]>>;
4251
+ defaultIsmCacheConfig: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4252
+ moduleTypes: z.ZodArray<z.ZodNativeEnum<typeof ModuleType>, "many">;
4253
+ chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4254
+ cachePolicy: z.ZodNativeEnum<typeof IsmCachePolicy>;
4255
+ }, "strip", z.ZodTypeAny, {
4256
+ moduleTypes: ModuleType[];
4257
+ cachePolicy: IsmCachePolicy;
4258
+ chains?: string[] | undefined;
4259
+ }, {
4260
+ moduleTypes: ModuleType[];
4261
+ cachePolicy: IsmCachePolicy;
4262
+ chains?: string[] | undefined;
4263
+ }>, z.ZodString]>>;
4264
+ allowContractCallCaching: z.ZodOptional<z.ZodBoolean>;
4232
4265
  }, "strip", z.ZodTypeAny, {
4233
4266
  chains: Record<string, {
4234
4267
  merkleTreeHook: string;
@@ -4259,10 +4292,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4259
4292
  amount: string;
4260
4293
  } | undefined;
4261
4294
  availability?: {
4262
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4263
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4295
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
4296
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
4264
4297
  } | {
4265
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
4298
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
4266
4299
  } | undefined;
4267
4300
  bech32Prefix?: string | undefined;
4268
4301
  blockExplorers?: {
@@ -4270,7 +4303,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4270
4303
  url: string;
4271
4304
  apiUrl: string;
4272
4305
  apiKey?: string | undefined;
4273
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
4306
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
4274
4307
  }[] | undefined;
4275
4308
  blocks?: {
4276
4309
  confirmations: number;
@@ -4331,7 +4364,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4331
4364
  public?: boolean | undefined;
4332
4365
  }[] | undefined;
4333
4366
  slip44?: number | undefined;
4334
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
4367
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
4335
4368
  transactionOverrides?: Record<string, any> | undefined;
4336
4369
  signer?: {
4337
4370
  key: string;
@@ -4445,6 +4478,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4445
4478
  recipientAddress?: string | string[] | undefined;
4446
4479
  }[];
4447
4480
  }[] | undefined;
4481
+ defaultIsmCacheConfig?: string | {
4482
+ moduleTypes: ModuleType[];
4483
+ cachePolicy: IsmCachePolicy;
4484
+ chains?: string[] | undefined;
4485
+ } | undefined;
4486
+ allowContractCallCaching?: boolean | undefined;
4448
4487
  }, {
4449
4488
  chains: Record<string, {
4450
4489
  merkleTreeHook: string;
@@ -4475,10 +4514,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4475
4514
  amount: string;
4476
4515
  } | undefined;
4477
4516
  availability?: {
4478
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4479
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4517
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
4518
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
4480
4519
  } | {
4481
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
4520
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
4482
4521
  } | undefined;
4483
4522
  bech32Prefix?: string | undefined;
4484
4523
  blockExplorers?: {
@@ -4486,7 +4525,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4486
4525
  url: string;
4487
4526
  apiUrl: string;
4488
4527
  apiKey?: string | undefined;
4489
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
4528
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
4490
4529
  }[] | undefined;
4491
4530
  blocks?: {
4492
4531
  confirmations: number;
@@ -4547,7 +4586,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4547
4586
  public?: boolean | undefined;
4548
4587
  }[] | undefined;
4549
4588
  slip44?: number | undefined;
4550
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
4589
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
4551
4590
  transactionOverrides?: Record<string, any> | undefined;
4552
4591
  signer?: {
4553
4592
  key: string;
@@ -4661,6 +4700,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4661
4700
  recipientAddress?: string | string[] | undefined;
4662
4701
  }[];
4663
4702
  }[] | undefined;
4703
+ defaultIsmCacheConfig?: string | {
4704
+ moduleTypes: ModuleType[];
4705
+ cachePolicy: IsmCachePolicy;
4706
+ chains?: string[] | undefined;
4707
+ } | undefined;
4708
+ allowContractCallCaching?: boolean | undefined;
4664
4709
  }>;
4665
4710
  export type RelayerConfig = z.infer<typeof RelayerAgentConfigSchema>;
4666
4711
  export declare const ScraperAgentConfigSchema: z.ZodObject<{
@@ -4680,20 +4725,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4680
4725
  interchainGasPaymaster: z.ZodString;
4681
4726
  name: z.ZodString;
4682
4727
  availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4683
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
4684
- reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
4728
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
4729
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
4685
4730
  }, "strip", z.ZodTypeAny, {
4686
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4687
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4731
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
4732
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
4688
4733
  }, {
4689
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4690
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4734
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
4735
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
4691
4736
  }>, z.ZodObject<{
4692
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
4737
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
4693
4738
  }, "strip", z.ZodTypeAny, {
4694
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
4739
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
4695
4740
  }, {
4696
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
4741
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
4697
4742
  }>]>>;
4698
4743
  bech32Prefix: z.ZodOptional<z.ZodString>;
4699
4744
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4701,19 +4746,19 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4701
4746
  url: z.ZodString;
4702
4747
  apiUrl: z.ZodString;
4703
4748
  apiKey: z.ZodOptional<z.ZodString>;
4704
- family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
4749
+ family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
4705
4750
  }, "strip", z.ZodTypeAny, {
4706
4751
  name: string;
4707
4752
  url: string;
4708
4753
  apiUrl: string;
4709
4754
  apiKey?: string | undefined;
4710
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
4755
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
4711
4756
  }, {
4712
4757
  name: string;
4713
4758
  url: string;
4714
4759
  apiUrl: string;
4715
4760
  apiKey?: string | undefined;
4716
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
4761
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
4717
4762
  }>, "many">>;
4718
4763
  blocks: z.ZodOptional<z.ZodObject<{
4719
4764
  confirmations: z.ZodNumber;
@@ -4952,7 +4997,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4952
4997
  public?: boolean | undefined;
4953
4998
  }>, "many">;
4954
4999
  slip44: z.ZodOptional<z.ZodNumber>;
4955
- technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
5000
+ technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
4956
5001
  transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4957
5002
  signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4958
5003
  type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
@@ -5062,10 +5107,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5062
5107
  amount: string;
5063
5108
  } | undefined;
5064
5109
  availability?: {
5065
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5066
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5110
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5111
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5067
5112
  } | {
5068
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5113
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5069
5114
  } | undefined;
5070
5115
  bech32Prefix?: string | undefined;
5071
5116
  blockExplorers?: {
@@ -5073,7 +5118,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5073
5118
  url: string;
5074
5119
  apiUrl: string;
5075
5120
  apiKey?: string | undefined;
5076
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5121
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5077
5122
  }[] | undefined;
5078
5123
  blocks?: {
5079
5124
  confirmations: number;
@@ -5134,7 +5179,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5134
5179
  public?: boolean | undefined;
5135
5180
  }[] | undefined;
5136
5181
  slip44?: number | undefined;
5137
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5182
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5138
5183
  transactionOverrides?: Record<string, any> | undefined;
5139
5184
  signer?: {
5140
5185
  key: string;
@@ -5196,10 +5241,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5196
5241
  amount: string;
5197
5242
  } | undefined;
5198
5243
  availability?: {
5199
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5200
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5244
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5245
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5201
5246
  } | {
5202
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5247
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5203
5248
  } | undefined;
5204
5249
  bech32Prefix?: string | undefined;
5205
5250
  blockExplorers?: {
@@ -5207,7 +5252,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5207
5252
  url: string;
5208
5253
  apiUrl: string;
5209
5254
  apiKey?: string | undefined;
5210
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5255
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5211
5256
  }[] | undefined;
5212
5257
  blocks?: {
5213
5258
  confirmations: number;
@@ -5268,7 +5313,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5268
5313
  public?: boolean | undefined;
5269
5314
  }[] | undefined;
5270
5315
  slip44?: number | undefined;
5271
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5316
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5272
5317
  transactionOverrides?: Record<string, any> | undefined;
5273
5318
  signer?: {
5274
5319
  key: string;
@@ -5330,10 +5375,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5330
5375
  amount: string;
5331
5376
  } | undefined;
5332
5377
  availability?: {
5333
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5334
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5378
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5379
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5335
5380
  } | {
5336
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5381
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5337
5382
  } | undefined;
5338
5383
  bech32Prefix?: string | undefined;
5339
5384
  blockExplorers?: {
@@ -5341,7 +5386,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5341
5386
  url: string;
5342
5387
  apiUrl: string;
5343
5388
  apiKey?: string | undefined;
5344
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5389
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5345
5390
  }[] | undefined;
5346
5391
  blocks?: {
5347
5392
  confirmations: number;
@@ -5402,7 +5447,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5402
5447
  public?: boolean | undefined;
5403
5448
  }[] | undefined;
5404
5449
  slip44?: number | undefined;
5405
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5450
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5406
5451
  transactionOverrides?: Record<string, any> | undefined;
5407
5452
  signer?: {
5408
5453
  key: string;
@@ -5464,10 +5509,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5464
5509
  amount: string;
5465
5510
  } | undefined;
5466
5511
  availability?: {
5467
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5468
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5512
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5513
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5469
5514
  } | {
5470
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5515
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5471
5516
  } | undefined;
5472
5517
  bech32Prefix?: string | undefined;
5473
5518
  blockExplorers?: {
@@ -5475,7 +5520,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5475
5520
  url: string;
5476
5521
  apiUrl: string;
5477
5522
  apiKey?: string | undefined;
5478
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5523
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5479
5524
  }[] | undefined;
5480
5525
  blocks?: {
5481
5526
  confirmations: number;
@@ -5536,7 +5581,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5536
5581
  public?: boolean | undefined;
5537
5582
  }[] | undefined;
5538
5583
  slip44?: number | undefined;
5539
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5584
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5540
5585
  transactionOverrides?: Record<string, any> | undefined;
5541
5586
  signer?: {
5542
5587
  key: string;
@@ -5598,10 +5643,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5598
5643
  amount: string;
5599
5644
  } | undefined;
5600
5645
  availability?: {
5601
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5602
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5646
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5647
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5603
5648
  } | {
5604
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5649
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5605
5650
  } | undefined;
5606
5651
  bech32Prefix?: string | undefined;
5607
5652
  blockExplorers?: {
@@ -5609,7 +5654,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5609
5654
  url: string;
5610
5655
  apiUrl: string;
5611
5656
  apiKey?: string | undefined;
5612
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5657
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5613
5658
  }[] | undefined;
5614
5659
  blocks?: {
5615
5660
  confirmations: number;
@@ -5670,7 +5715,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5670
5715
  public?: boolean | undefined;
5671
5716
  }[] | undefined;
5672
5717
  slip44?: number | undefined;
5673
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5718
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5674
5719
  transactionOverrides?: Record<string, any> | undefined;
5675
5720
  signer?: {
5676
5721
  key: string;
@@ -5732,10 +5777,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5732
5777
  amount: string;
5733
5778
  } | undefined;
5734
5779
  availability?: {
5735
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5736
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5780
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5781
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5737
5782
  } | {
5738
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5783
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5739
5784
  } | undefined;
5740
5785
  bech32Prefix?: string | undefined;
5741
5786
  blockExplorers?: {
@@ -5743,7 +5788,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5743
5788
  url: string;
5744
5789
  apiUrl: string;
5745
5790
  apiKey?: string | undefined;
5746
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5791
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5747
5792
  }[] | undefined;
5748
5793
  blocks?: {
5749
5794
  confirmations: number;
@@ -5804,7 +5849,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5804
5849
  public?: boolean | undefined;
5805
5850
  }[] | undefined;
5806
5851
  slip44?: number | undefined;
5807
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
5852
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5808
5853
  transactionOverrides?: Record<string, any> | undefined;
5809
5854
  signer?: {
5810
5855
  key: string;
@@ -5921,10 +5966,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5921
5966
  amount: string;
5922
5967
  } | undefined;
5923
5968
  availability?: {
5924
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5925
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5969
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
5970
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
5926
5971
  } | {
5927
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
5972
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
5928
5973
  } | undefined;
5929
5974
  bech32Prefix?: string | undefined;
5930
5975
  blockExplorers?: {
@@ -5932,7 +5977,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5932
5977
  url: string;
5933
5978
  apiUrl: string;
5934
5979
  apiKey?: string | undefined;
5935
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
5980
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
5936
5981
  }[] | undefined;
5937
5982
  blocks?: {
5938
5983
  confirmations: number;
@@ -5993,7 +6038,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5993
6038
  public?: boolean | undefined;
5994
6039
  }[] | undefined;
5995
6040
  slip44?: number | undefined;
5996
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
6041
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
5997
6042
  transactionOverrides?: Record<string, any> | undefined;
5998
6043
  signer?: {
5999
6044
  key: string;
@@ -6079,10 +6124,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
6079
6124
  amount: string;
6080
6125
  } | undefined;
6081
6126
  availability?: {
6082
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6083
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6127
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6128
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6084
6129
  } | {
6085
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6130
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6086
6131
  } | undefined;
6087
6132
  bech32Prefix?: string | undefined;
6088
6133
  blockExplorers?: {
@@ -6090,7 +6135,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
6090
6135
  url: string;
6091
6136
  apiUrl: string;
6092
6137
  apiKey?: string | undefined;
6093
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6138
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6094
6139
  }[] | undefined;
6095
6140
  blocks?: {
6096
6141
  confirmations: number;
@@ -6151,7 +6196,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
6151
6196
  public?: boolean | undefined;
6152
6197
  }[] | undefined;
6153
6198
  slip44?: number | undefined;
6154
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
6199
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
6155
6200
  transactionOverrides?: Record<string, any> | undefined;
6156
6201
  signer?: {
6157
6202
  key: string;
@@ -6226,20 +6271,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6226
6271
  interchainGasPaymaster: z.ZodString;
6227
6272
  name: z.ZodString;
6228
6273
  availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
6229
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
6230
- reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
6274
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
6275
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
6231
6276
  }, "strip", z.ZodTypeAny, {
6232
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6233
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6277
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6278
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6234
6279
  }, {
6235
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6236
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6280
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6281
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6237
6282
  }>, z.ZodObject<{
6238
- status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
6283
+ status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
6239
6284
  }, "strip", z.ZodTypeAny, {
6240
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6285
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6241
6286
  }, {
6242
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6287
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6243
6288
  }>]>>;
6244
6289
  bech32Prefix: z.ZodOptional<z.ZodString>;
6245
6290
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6247,19 +6292,19 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6247
6292
  url: z.ZodString;
6248
6293
  apiUrl: z.ZodString;
6249
6294
  apiKey: z.ZodOptional<z.ZodString>;
6250
- family: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ExplorerFamily>>;
6295
+ family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
6251
6296
  }, "strip", z.ZodTypeAny, {
6252
6297
  name: string;
6253
6298
  url: string;
6254
6299
  apiUrl: string;
6255
6300
  apiKey?: string | undefined;
6256
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6301
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6257
6302
  }, {
6258
6303
  name: string;
6259
6304
  url: string;
6260
6305
  apiUrl: string;
6261
6306
  apiKey?: string | undefined;
6262
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6307
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6263
6308
  }>, "many">>;
6264
6309
  blocks: z.ZodOptional<z.ZodObject<{
6265
6310
  confirmations: z.ZodNumber;
@@ -6498,7 +6543,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6498
6543
  public?: boolean | undefined;
6499
6544
  }>, "many">;
6500
6545
  slip44: z.ZodOptional<z.ZodNumber>;
6501
- technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainTechnicalStack>>;
6546
+ technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
6502
6547
  transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6503
6548
  signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
6504
6549
  type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
@@ -6608,10 +6653,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6608
6653
  amount: string;
6609
6654
  } | undefined;
6610
6655
  availability?: {
6611
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6612
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6656
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6657
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6613
6658
  } | {
6614
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6659
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6615
6660
  } | undefined;
6616
6661
  bech32Prefix?: string | undefined;
6617
6662
  blockExplorers?: {
@@ -6619,7 +6664,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6619
6664
  url: string;
6620
6665
  apiUrl: string;
6621
6666
  apiKey?: string | undefined;
6622
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6667
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6623
6668
  }[] | undefined;
6624
6669
  blocks?: {
6625
6670
  confirmations: number;
@@ -6680,7 +6725,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6680
6725
  public?: boolean | undefined;
6681
6726
  }[] | undefined;
6682
6727
  slip44?: number | undefined;
6683
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
6728
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
6684
6729
  transactionOverrides?: Record<string, any> | undefined;
6685
6730
  signer?: {
6686
6731
  key: string;
@@ -6742,10 +6787,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6742
6787
  amount: string;
6743
6788
  } | undefined;
6744
6789
  availability?: {
6745
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6746
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6790
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6791
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6747
6792
  } | {
6748
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6793
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6749
6794
  } | undefined;
6750
6795
  bech32Prefix?: string | undefined;
6751
6796
  blockExplorers?: {
@@ -6753,7 +6798,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6753
6798
  url: string;
6754
6799
  apiUrl: string;
6755
6800
  apiKey?: string | undefined;
6756
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6801
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6757
6802
  }[] | undefined;
6758
6803
  blocks?: {
6759
6804
  confirmations: number;
@@ -6814,7 +6859,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6814
6859
  public?: boolean | undefined;
6815
6860
  }[] | undefined;
6816
6861
  slip44?: number | undefined;
6817
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
6862
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
6818
6863
  transactionOverrides?: Record<string, any> | undefined;
6819
6864
  signer?: {
6820
6865
  key: string;
@@ -6876,10 +6921,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6876
6921
  amount: string;
6877
6922
  } | undefined;
6878
6923
  availability?: {
6879
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6880
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6924
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
6925
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
6881
6926
  } | {
6882
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
6927
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
6883
6928
  } | undefined;
6884
6929
  bech32Prefix?: string | undefined;
6885
6930
  blockExplorers?: {
@@ -6887,7 +6932,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6887
6932
  url: string;
6888
6933
  apiUrl: string;
6889
6934
  apiKey?: string | undefined;
6890
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
6935
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
6891
6936
  }[] | undefined;
6892
6937
  blocks?: {
6893
6938
  confirmations: number;
@@ -6948,7 +6993,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6948
6993
  public?: boolean | undefined;
6949
6994
  }[] | undefined;
6950
6995
  slip44?: number | undefined;
6951
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
6996
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
6952
6997
  transactionOverrides?: Record<string, any> | undefined;
6953
6998
  signer?: {
6954
6999
  key: string;
@@ -7010,10 +7055,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7010
7055
  amount: string;
7011
7056
  } | undefined;
7012
7057
  availability?: {
7013
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7014
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7058
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
7059
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
7015
7060
  } | {
7016
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
7061
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
7017
7062
  } | undefined;
7018
7063
  bech32Prefix?: string | undefined;
7019
7064
  blockExplorers?: {
@@ -7021,7 +7066,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7021
7066
  url: string;
7022
7067
  apiUrl: string;
7023
7068
  apiKey?: string | undefined;
7024
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
7069
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
7025
7070
  }[] | undefined;
7026
7071
  blocks?: {
7027
7072
  confirmations: number;
@@ -7082,7 +7127,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7082
7127
  public?: boolean | undefined;
7083
7128
  }[] | undefined;
7084
7129
  slip44?: number | undefined;
7085
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
7130
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
7086
7131
  transactionOverrides?: Record<string, any> | undefined;
7087
7132
  signer?: {
7088
7133
  key: string;
@@ -7144,10 +7189,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7144
7189
  amount: string;
7145
7190
  } | undefined;
7146
7191
  availability?: {
7147
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7148
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7192
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
7193
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
7149
7194
  } | {
7150
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
7195
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
7151
7196
  } | undefined;
7152
7197
  bech32Prefix?: string | undefined;
7153
7198
  blockExplorers?: {
@@ -7155,7 +7200,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7155
7200
  url: string;
7156
7201
  apiUrl: string;
7157
7202
  apiKey?: string | undefined;
7158
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
7203
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
7159
7204
  }[] | undefined;
7160
7205
  blocks?: {
7161
7206
  confirmations: number;
@@ -7216,7 +7261,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7216
7261
  public?: boolean | undefined;
7217
7262
  }[] | undefined;
7218
7263
  slip44?: number | undefined;
7219
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
7264
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
7220
7265
  transactionOverrides?: Record<string, any> | undefined;
7221
7266
  signer?: {
7222
7267
  key: string;
@@ -7278,10 +7323,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7278
7323
  amount: string;
7279
7324
  } | undefined;
7280
7325
  availability?: {
7281
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7282
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7326
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
7327
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
7283
7328
  } | {
7284
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
7329
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
7285
7330
  } | undefined;
7286
7331
  bech32Prefix?: string | undefined;
7287
7332
  blockExplorers?: {
@@ -7289,7 +7334,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7289
7334
  url: string;
7290
7335
  apiUrl: string;
7291
7336
  apiKey?: string | undefined;
7292
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
7337
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
7293
7338
  }[] | undefined;
7294
7339
  blocks?: {
7295
7340
  confirmations: number;
@@ -7350,7 +7395,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7350
7395
  public?: boolean | undefined;
7351
7396
  }[] | undefined;
7352
7397
  slip44?: number | undefined;
7353
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
7398
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
7354
7399
  transactionOverrides?: Record<string, any> | undefined;
7355
7400
  signer?: {
7356
7401
  key: string;
@@ -7551,10 +7596,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7551
7596
  amount: string;
7552
7597
  } | undefined;
7553
7598
  availability?: {
7554
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7555
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7599
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
7600
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
7556
7601
  } | {
7557
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
7602
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
7558
7603
  } | undefined;
7559
7604
  bech32Prefix?: string | undefined;
7560
7605
  blockExplorers?: {
@@ -7562,7 +7607,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7562
7607
  url: string;
7563
7608
  apiUrl: string;
7564
7609
  apiKey?: string | undefined;
7565
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
7610
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
7566
7611
  }[] | undefined;
7567
7612
  blocks?: {
7568
7613
  confirmations: number;
@@ -7623,7 +7668,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7623
7668
  public?: boolean | undefined;
7624
7669
  }[] | undefined;
7625
7670
  slip44?: number | undefined;
7626
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
7671
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
7627
7672
  transactionOverrides?: Record<string, any> | undefined;
7628
7673
  signer?: {
7629
7674
  key: string;
@@ -7753,10 +7798,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7753
7798
  amount: string;
7754
7799
  } | undefined;
7755
7800
  availability?: {
7756
- status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7757
- reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7801
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
7802
+ reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
7758
7803
  } | {
7759
- status: import("./chainMetadataTypes.js").ChainStatus.Live;
7804
+ status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
7760
7805
  } | undefined;
7761
7806
  bech32Prefix?: string | undefined;
7762
7807
  blockExplorers?: {
@@ -7764,7 +7809,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7764
7809
  url: string;
7765
7810
  apiUrl: string;
7766
7811
  apiKey?: string | undefined;
7767
- family?: import("./chainMetadataTypes.js").ExplorerFamily | undefined;
7812
+ family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
7768
7813
  }[] | undefined;
7769
7814
  blocks?: {
7770
7815
  confirmations: number;
@@ -7825,7 +7870,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7825
7870
  public?: boolean | undefined;
7826
7871
  }[] | undefined;
7827
7872
  slip44?: number | undefined;
7828
- technicalStack?: import("./chainMetadataTypes.js").ChainTechnicalStack | undefined;
7873
+ technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
7829
7874
  transactionOverrides?: Record<string, any> | undefined;
7830
7875
  signer?: {
7831
7876
  key: string;