@hyperlane-xyz/sdk 12.0.0 → 12.1.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.
- package/dist/deploy/proxy.d.ts +7 -4
- package/dist/deploy/proxy.d.ts.map +1 -1
- package/dist/deploy/proxy.js.map +1 -1
- package/dist/deploy/proxyFactoryUtils.d.ts +7 -0
- package/dist/deploy/proxyFactoryUtils.d.ts.map +1 -0
- package/dist/deploy/proxyFactoryUtils.js +12 -0
- package/dist/deploy/proxyFactoryUtils.js.map +1 -0
- package/dist/hook/types.d.ts +1 -0
- package/dist/hook/types.d.ts.map +1 -1
- package/dist/hook/types.js +14 -0
- package/dist/hook/types.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/ism/types.d.ts +5 -0
- package/dist/ism/types.d.ts.map +1 -1
- package/dist/ism/types.js +12 -0
- package/dist/ism/types.js.map +1 -1
- package/dist/ism/utils.d.ts +21 -1
- package/dist/ism/utils.d.ts.map +1 -1
- package/dist/ism/utils.js +25 -1
- package/dist/ism/utils.js.map +1 -1
- package/dist/metadata/agentConfig.d.ts +403 -245
- package/dist/metadata/agentConfig.d.ts.map +1 -1
- package/dist/metadata/agentConfig.js +41 -0
- package/dist/metadata/agentConfig.js.map +1 -1
- package/dist/metadata/chainMetadataConversion.d.ts.map +1 -1
- package/dist/metadata/chainMetadataConversion.js +3 -2
- package/dist/metadata/chainMetadataConversion.js.map +1 -1
- package/dist/metadata/chainMetadataTypes.d.ts +19 -0
- package/dist/metadata/chainMetadataTypes.d.ts.map +1 -1
- package/dist/metadata/chainMetadataTypes.js +5 -0
- package/dist/metadata/chainMetadataTypes.js.map +1 -1
- package/dist/router/HyperlaneRouterChecker.d.ts.map +1 -1
- package/dist/router/HyperlaneRouterChecker.js +19 -0
- package/dist/router/HyperlaneRouterChecker.js.map +1 -1
- package/dist/router/ProxiedRouterChecker.d.ts.map +1 -1
- package/dist/router/ProxiedRouterChecker.js +7 -0
- package/dist/router/ProxiedRouterChecker.js.map +1 -1
- package/dist/router/types.d.ts +7 -0
- package/dist/router/types.d.ts.map +1 -1
- package/dist/router/types.js +1 -0
- package/dist/router/types.js.map +1 -1
- package/dist/utils/zksync.d.ts +8 -0
- package/dist/utils/zksync.d.ts.map +1 -0
- package/dist/utils/zksync.js +24 -0
- package/dist/utils/zksync.js.map +1 -0
- package/dist/zksync/ZKSyncDeployer.d.ts +59 -0
- package/dist/zksync/ZKSyncDeployer.d.ts.map +1 -0
- package/dist/zksync/ZKSyncDeployer.js +123 -0
- package/dist/zksync/ZKSyncDeployer.js.map +1 -0
- 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("
|
|
239
|
-
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("
|
|
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("
|
|
242
|
-
reasons: import("
|
|
242
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
243
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
243
244
|
}, {
|
|
244
|
-
status: import("
|
|
245
|
-
reasons: import("
|
|
245
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
246
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
246
247
|
}>, z.ZodObject<{
|
|
247
|
-
status: z.ZodLiteral<import("
|
|
248
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
|
|
248
249
|
}, "strip", z.ZodTypeAny, {
|
|
249
|
-
status: import("
|
|
250
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
250
251
|
}, {
|
|
251
|
-
status: import("
|
|
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("
|
|
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("
|
|
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("
|
|
272
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
272
273
|
}>, "many">>;
|
|
273
274
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
274
275
|
confirmations: z.ZodNumber;
|
|
@@ -283,6 +284,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
283
284
|
reorgPeriod?: string | number | undefined;
|
|
284
285
|
estimateBlockTime?: number | undefined;
|
|
285
286
|
}>>;
|
|
287
|
+
bypassBatchSimulation: z.ZodOptional<z.ZodBoolean>;
|
|
286
288
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
287
289
|
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
288
290
|
deployer: z.ZodOptional<z.ZodObject<{
|
|
@@ -507,7 +509,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
507
509
|
public?: boolean | undefined;
|
|
508
510
|
}>, "many">;
|
|
509
511
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
510
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
512
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
|
|
511
513
|
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
512
514
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
513
515
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
@@ -617,10 +619,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
617
619
|
amount: string;
|
|
618
620
|
} | undefined;
|
|
619
621
|
availability?: {
|
|
620
|
-
status: import("
|
|
621
|
-
reasons: import("
|
|
622
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
623
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
622
624
|
} | {
|
|
623
|
-
status: import("
|
|
625
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
624
626
|
} | undefined;
|
|
625
627
|
bech32Prefix?: string | undefined;
|
|
626
628
|
blockExplorers?: {
|
|
@@ -628,13 +630,14 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
628
630
|
url: string;
|
|
629
631
|
apiUrl: string;
|
|
630
632
|
apiKey?: string | undefined;
|
|
631
|
-
family?: import("
|
|
633
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
632
634
|
}[] | undefined;
|
|
633
635
|
blocks?: {
|
|
634
636
|
confirmations: number;
|
|
635
637
|
reorgPeriod?: string | number | undefined;
|
|
636
638
|
estimateBlockTime?: number | undefined;
|
|
637
639
|
} | undefined;
|
|
640
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
638
641
|
customGrpcUrls?: string | undefined;
|
|
639
642
|
deployer?: {
|
|
640
643
|
name: string;
|
|
@@ -689,7 +692,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
689
692
|
public?: boolean | undefined;
|
|
690
693
|
}[] | undefined;
|
|
691
694
|
slip44?: number | undefined;
|
|
692
|
-
technicalStack?: import("
|
|
695
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
693
696
|
transactionOverrides?: Record<string, any> | undefined;
|
|
694
697
|
signer?: {
|
|
695
698
|
key: string;
|
|
@@ -751,10 +754,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
751
754
|
amount: string;
|
|
752
755
|
} | undefined;
|
|
753
756
|
availability?: {
|
|
754
|
-
status: import("
|
|
755
|
-
reasons: import("
|
|
757
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
758
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
756
759
|
} | {
|
|
757
|
-
status: import("
|
|
760
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
758
761
|
} | undefined;
|
|
759
762
|
bech32Prefix?: string | undefined;
|
|
760
763
|
blockExplorers?: {
|
|
@@ -762,13 +765,14 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
762
765
|
url: string;
|
|
763
766
|
apiUrl: string;
|
|
764
767
|
apiKey?: string | undefined;
|
|
765
|
-
family?: import("
|
|
768
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
766
769
|
}[] | undefined;
|
|
767
770
|
blocks?: {
|
|
768
771
|
confirmations: number;
|
|
769
772
|
reorgPeriod?: string | number | undefined;
|
|
770
773
|
estimateBlockTime?: number | undefined;
|
|
771
774
|
} | undefined;
|
|
775
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
772
776
|
customGrpcUrls?: string | undefined;
|
|
773
777
|
deployer?: {
|
|
774
778
|
name: string;
|
|
@@ -823,7 +827,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
823
827
|
public?: boolean | undefined;
|
|
824
828
|
}[] | undefined;
|
|
825
829
|
slip44?: number | undefined;
|
|
826
|
-
technicalStack?: import("
|
|
830
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
827
831
|
transactionOverrides?: Record<string, any> | undefined;
|
|
828
832
|
signer?: {
|
|
829
833
|
key: string;
|
|
@@ -885,10 +889,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
885
889
|
amount: string;
|
|
886
890
|
} | undefined;
|
|
887
891
|
availability?: {
|
|
888
|
-
status: import("
|
|
889
|
-
reasons: import("
|
|
892
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
893
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
890
894
|
} | {
|
|
891
|
-
status: import("
|
|
895
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
892
896
|
} | undefined;
|
|
893
897
|
bech32Prefix?: string | undefined;
|
|
894
898
|
blockExplorers?: {
|
|
@@ -896,13 +900,14 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
896
900
|
url: string;
|
|
897
901
|
apiUrl: string;
|
|
898
902
|
apiKey?: string | undefined;
|
|
899
|
-
family?: import("
|
|
903
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
900
904
|
}[] | undefined;
|
|
901
905
|
blocks?: {
|
|
902
906
|
confirmations: number;
|
|
903
907
|
reorgPeriod?: string | number | undefined;
|
|
904
908
|
estimateBlockTime?: number | undefined;
|
|
905
909
|
} | undefined;
|
|
910
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
906
911
|
customGrpcUrls?: string | undefined;
|
|
907
912
|
deployer?: {
|
|
908
913
|
name: string;
|
|
@@ -957,7 +962,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
957
962
|
public?: boolean | undefined;
|
|
958
963
|
}[] | undefined;
|
|
959
964
|
slip44?: number | undefined;
|
|
960
|
-
technicalStack?: import("
|
|
965
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
961
966
|
transactionOverrides?: Record<string, any> | undefined;
|
|
962
967
|
signer?: {
|
|
963
968
|
key: string;
|
|
@@ -1019,10 +1024,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1019
1024
|
amount: string;
|
|
1020
1025
|
} | undefined;
|
|
1021
1026
|
availability?: {
|
|
1022
|
-
status: import("
|
|
1023
|
-
reasons: import("
|
|
1027
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1028
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1024
1029
|
} | {
|
|
1025
|
-
status: import("
|
|
1030
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1026
1031
|
} | undefined;
|
|
1027
1032
|
bech32Prefix?: string | undefined;
|
|
1028
1033
|
blockExplorers?: {
|
|
@@ -1030,13 +1035,14 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1030
1035
|
url: string;
|
|
1031
1036
|
apiUrl: string;
|
|
1032
1037
|
apiKey?: string | undefined;
|
|
1033
|
-
family?: import("
|
|
1038
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1034
1039
|
}[] | undefined;
|
|
1035
1040
|
blocks?: {
|
|
1036
1041
|
confirmations: number;
|
|
1037
1042
|
reorgPeriod?: string | number | undefined;
|
|
1038
1043
|
estimateBlockTime?: number | undefined;
|
|
1039
1044
|
} | undefined;
|
|
1045
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
1040
1046
|
customGrpcUrls?: string | undefined;
|
|
1041
1047
|
deployer?: {
|
|
1042
1048
|
name: string;
|
|
@@ -1091,7 +1097,7 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1091
1097
|
public?: boolean | undefined;
|
|
1092
1098
|
}[] | undefined;
|
|
1093
1099
|
slip44?: number | undefined;
|
|
1094
|
-
technicalStack?: import("
|
|
1100
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
1095
1101
|
transactionOverrides?: Record<string, any> | undefined;
|
|
1096
1102
|
signer?: {
|
|
1097
1103
|
key: string;
|
|
@@ -1143,20 +1149,20 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1143
1149
|
interchainGasPaymaster: z.ZodString;
|
|
1144
1150
|
name: z.ZodString;
|
|
1145
1151
|
availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1146
|
-
status: z.ZodLiteral<import("
|
|
1147
|
-
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("
|
|
1152
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
|
|
1153
|
+
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
|
|
1148
1154
|
}, "strip", z.ZodTypeAny, {
|
|
1149
|
-
status: import("
|
|
1150
|
-
reasons: import("
|
|
1155
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1156
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1151
1157
|
}, {
|
|
1152
|
-
status: import("
|
|
1153
|
-
reasons: import("
|
|
1158
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1159
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1154
1160
|
}>, z.ZodObject<{
|
|
1155
|
-
status: z.ZodLiteral<import("
|
|
1161
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
|
|
1156
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1157
|
-
status: import("
|
|
1163
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1158
1164
|
}, {
|
|
1159
|
-
status: import("
|
|
1165
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1160
1166
|
}>]>>;
|
|
1161
1167
|
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
1162
1168
|
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1164,19 +1170,19 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1164
1170
|
url: z.ZodString;
|
|
1165
1171
|
apiUrl: z.ZodString;
|
|
1166
1172
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1167
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
1173
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
|
|
1168
1174
|
}, "strip", z.ZodTypeAny, {
|
|
1169
1175
|
name: string;
|
|
1170
1176
|
url: string;
|
|
1171
1177
|
apiUrl: string;
|
|
1172
1178
|
apiKey?: string | undefined;
|
|
1173
|
-
family?: import("
|
|
1179
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1174
1180
|
}, {
|
|
1175
1181
|
name: string;
|
|
1176
1182
|
url: string;
|
|
1177
1183
|
apiUrl: string;
|
|
1178
1184
|
apiKey?: string | undefined;
|
|
1179
|
-
family?: import("
|
|
1185
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1180
1186
|
}>, "many">>;
|
|
1181
1187
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
1182
1188
|
confirmations: z.ZodNumber;
|
|
@@ -1191,6 +1197,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1191
1197
|
reorgPeriod?: string | number | undefined;
|
|
1192
1198
|
estimateBlockTime?: number | undefined;
|
|
1193
1199
|
}>>;
|
|
1200
|
+
bypassBatchSimulation: z.ZodOptional<z.ZodBoolean>;
|
|
1194
1201
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1195
1202
|
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
1196
1203
|
deployer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1415,7 +1422,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1415
1422
|
public?: boolean | undefined;
|
|
1416
1423
|
}>, "many">;
|
|
1417
1424
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
1418
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
1425
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
|
|
1419
1426
|
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1420
1427
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1421
1428
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
@@ -1525,10 +1532,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1525
1532
|
amount: string;
|
|
1526
1533
|
} | undefined;
|
|
1527
1534
|
availability?: {
|
|
1528
|
-
status: import("
|
|
1529
|
-
reasons: import("
|
|
1535
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1536
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1530
1537
|
} | {
|
|
1531
|
-
status: import("
|
|
1538
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1532
1539
|
} | undefined;
|
|
1533
1540
|
bech32Prefix?: string | undefined;
|
|
1534
1541
|
blockExplorers?: {
|
|
@@ -1536,13 +1543,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1536
1543
|
url: string;
|
|
1537
1544
|
apiUrl: string;
|
|
1538
1545
|
apiKey?: string | undefined;
|
|
1539
|
-
family?: import("
|
|
1546
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1540
1547
|
}[] | undefined;
|
|
1541
1548
|
blocks?: {
|
|
1542
1549
|
confirmations: number;
|
|
1543
1550
|
reorgPeriod?: string | number | undefined;
|
|
1544
1551
|
estimateBlockTime?: number | undefined;
|
|
1545
1552
|
} | undefined;
|
|
1553
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
1546
1554
|
customGrpcUrls?: string | undefined;
|
|
1547
1555
|
deployer?: {
|
|
1548
1556
|
name: string;
|
|
@@ -1597,7 +1605,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1597
1605
|
public?: boolean | undefined;
|
|
1598
1606
|
}[] | undefined;
|
|
1599
1607
|
slip44?: number | undefined;
|
|
1600
|
-
technicalStack?: import("
|
|
1608
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
1601
1609
|
transactionOverrides?: Record<string, any> | undefined;
|
|
1602
1610
|
signer?: {
|
|
1603
1611
|
key: string;
|
|
@@ -1659,10 +1667,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1659
1667
|
amount: string;
|
|
1660
1668
|
} | undefined;
|
|
1661
1669
|
availability?: {
|
|
1662
|
-
status: import("
|
|
1663
|
-
reasons: import("
|
|
1670
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1671
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1664
1672
|
} | {
|
|
1665
|
-
status: import("
|
|
1673
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1666
1674
|
} | undefined;
|
|
1667
1675
|
bech32Prefix?: string | undefined;
|
|
1668
1676
|
blockExplorers?: {
|
|
@@ -1670,13 +1678,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1670
1678
|
url: string;
|
|
1671
1679
|
apiUrl: string;
|
|
1672
1680
|
apiKey?: string | undefined;
|
|
1673
|
-
family?: import("
|
|
1681
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1674
1682
|
}[] | undefined;
|
|
1675
1683
|
blocks?: {
|
|
1676
1684
|
confirmations: number;
|
|
1677
1685
|
reorgPeriod?: string | number | undefined;
|
|
1678
1686
|
estimateBlockTime?: number | undefined;
|
|
1679
1687
|
} | undefined;
|
|
1688
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
1680
1689
|
customGrpcUrls?: string | undefined;
|
|
1681
1690
|
deployer?: {
|
|
1682
1691
|
name: string;
|
|
@@ -1731,7 +1740,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1731
1740
|
public?: boolean | undefined;
|
|
1732
1741
|
}[] | undefined;
|
|
1733
1742
|
slip44?: number | undefined;
|
|
1734
|
-
technicalStack?: import("
|
|
1743
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
1735
1744
|
transactionOverrides?: Record<string, any> | undefined;
|
|
1736
1745
|
signer?: {
|
|
1737
1746
|
key: string;
|
|
@@ -1793,10 +1802,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1793
1802
|
amount: string;
|
|
1794
1803
|
} | undefined;
|
|
1795
1804
|
availability?: {
|
|
1796
|
-
status: import("
|
|
1797
|
-
reasons: import("
|
|
1805
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1806
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1798
1807
|
} | {
|
|
1799
|
-
status: import("
|
|
1808
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1800
1809
|
} | undefined;
|
|
1801
1810
|
bech32Prefix?: string | undefined;
|
|
1802
1811
|
blockExplorers?: {
|
|
@@ -1804,13 +1813,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1804
1813
|
url: string;
|
|
1805
1814
|
apiUrl: string;
|
|
1806
1815
|
apiKey?: string | undefined;
|
|
1807
|
-
family?: import("
|
|
1816
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1808
1817
|
}[] | undefined;
|
|
1809
1818
|
blocks?: {
|
|
1810
1819
|
confirmations: number;
|
|
1811
1820
|
reorgPeriod?: string | number | undefined;
|
|
1812
1821
|
estimateBlockTime?: number | undefined;
|
|
1813
1822
|
} | undefined;
|
|
1823
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
1814
1824
|
customGrpcUrls?: string | undefined;
|
|
1815
1825
|
deployer?: {
|
|
1816
1826
|
name: string;
|
|
@@ -1865,7 +1875,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1865
1875
|
public?: boolean | undefined;
|
|
1866
1876
|
}[] | undefined;
|
|
1867
1877
|
slip44?: number | undefined;
|
|
1868
|
-
technicalStack?: import("
|
|
1878
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
1869
1879
|
transactionOverrides?: Record<string, any> | undefined;
|
|
1870
1880
|
signer?: {
|
|
1871
1881
|
key: string;
|
|
@@ -1927,10 +1937,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1927
1937
|
amount: string;
|
|
1928
1938
|
} | undefined;
|
|
1929
1939
|
availability?: {
|
|
1930
|
-
status: import("
|
|
1931
|
-
reasons: import("
|
|
1940
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
1941
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
1932
1942
|
} | {
|
|
1933
|
-
status: import("
|
|
1943
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
1934
1944
|
} | undefined;
|
|
1935
1945
|
bech32Prefix?: string | undefined;
|
|
1936
1946
|
blockExplorers?: {
|
|
@@ -1938,13 +1948,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1938
1948
|
url: string;
|
|
1939
1949
|
apiUrl: string;
|
|
1940
1950
|
apiKey?: string | undefined;
|
|
1941
|
-
family?: import("
|
|
1951
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
1942
1952
|
}[] | undefined;
|
|
1943
1953
|
blocks?: {
|
|
1944
1954
|
confirmations: number;
|
|
1945
1955
|
reorgPeriod?: string | number | undefined;
|
|
1946
1956
|
estimateBlockTime?: number | undefined;
|
|
1947
1957
|
} | undefined;
|
|
1958
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
1948
1959
|
customGrpcUrls?: string | undefined;
|
|
1949
1960
|
deployer?: {
|
|
1950
1961
|
name: string;
|
|
@@ -1999,7 +2010,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1999
2010
|
public?: boolean | undefined;
|
|
2000
2011
|
}[] | undefined;
|
|
2001
2012
|
slip44?: number | undefined;
|
|
2002
|
-
technicalStack?: import("
|
|
2013
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
2003
2014
|
transactionOverrides?: Record<string, any> | undefined;
|
|
2004
2015
|
signer?: {
|
|
2005
2016
|
key: string;
|
|
@@ -2061,10 +2072,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2061
2072
|
amount: string;
|
|
2062
2073
|
} | undefined;
|
|
2063
2074
|
availability?: {
|
|
2064
|
-
status: import("
|
|
2065
|
-
reasons: import("
|
|
2075
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2076
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2066
2077
|
} | {
|
|
2067
|
-
status: import("
|
|
2078
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2068
2079
|
} | undefined;
|
|
2069
2080
|
bech32Prefix?: string | undefined;
|
|
2070
2081
|
blockExplorers?: {
|
|
@@ -2072,13 +2083,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2072
2083
|
url: string;
|
|
2073
2084
|
apiUrl: string;
|
|
2074
2085
|
apiKey?: string | undefined;
|
|
2075
|
-
family?: import("
|
|
2086
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2076
2087
|
}[] | undefined;
|
|
2077
2088
|
blocks?: {
|
|
2078
2089
|
confirmations: number;
|
|
2079
2090
|
reorgPeriod?: string | number | undefined;
|
|
2080
2091
|
estimateBlockTime?: number | undefined;
|
|
2081
2092
|
} | undefined;
|
|
2093
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
2082
2094
|
customGrpcUrls?: string | undefined;
|
|
2083
2095
|
deployer?: {
|
|
2084
2096
|
name: string;
|
|
@@ -2133,7 +2145,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2133
2145
|
public?: boolean | undefined;
|
|
2134
2146
|
}[] | undefined;
|
|
2135
2147
|
slip44?: number | undefined;
|
|
2136
|
-
technicalStack?: import("
|
|
2148
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
2137
2149
|
transactionOverrides?: Record<string, any> | undefined;
|
|
2138
2150
|
signer?: {
|
|
2139
2151
|
key: string;
|
|
@@ -2195,10 +2207,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2195
2207
|
amount: string;
|
|
2196
2208
|
} | undefined;
|
|
2197
2209
|
availability?: {
|
|
2198
|
-
status: import("
|
|
2199
|
-
reasons: import("
|
|
2210
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2211
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2200
2212
|
} | {
|
|
2201
|
-
status: import("
|
|
2213
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2202
2214
|
} | undefined;
|
|
2203
2215
|
bech32Prefix?: string | undefined;
|
|
2204
2216
|
blockExplorers?: {
|
|
@@ -2206,13 +2218,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2206
2218
|
url: string;
|
|
2207
2219
|
apiUrl: string;
|
|
2208
2220
|
apiKey?: string | undefined;
|
|
2209
|
-
family?: import("
|
|
2221
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2210
2222
|
}[] | undefined;
|
|
2211
2223
|
blocks?: {
|
|
2212
2224
|
confirmations: number;
|
|
2213
2225
|
reorgPeriod?: string | number | undefined;
|
|
2214
2226
|
estimateBlockTime?: number | undefined;
|
|
2215
2227
|
} | undefined;
|
|
2228
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
2216
2229
|
customGrpcUrls?: string | undefined;
|
|
2217
2230
|
deployer?: {
|
|
2218
2231
|
name: string;
|
|
@@ -2267,7 +2280,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2267
2280
|
public?: boolean | undefined;
|
|
2268
2281
|
}[] | undefined;
|
|
2269
2282
|
slip44?: number | undefined;
|
|
2270
|
-
technicalStack?: import("
|
|
2283
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
2271
2284
|
transactionOverrides?: Record<string, any> | undefined;
|
|
2272
2285
|
signer?: {
|
|
2273
2286
|
key: string;
|
|
@@ -2382,10 +2395,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2382
2395
|
amount: string;
|
|
2383
2396
|
} | undefined;
|
|
2384
2397
|
availability?: {
|
|
2385
|
-
status: import("
|
|
2386
|
-
reasons: import("
|
|
2398
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2399
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2387
2400
|
} | {
|
|
2388
|
-
status: import("
|
|
2401
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2389
2402
|
} | undefined;
|
|
2390
2403
|
bech32Prefix?: string | undefined;
|
|
2391
2404
|
blockExplorers?: {
|
|
@@ -2393,13 +2406,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2393
2406
|
url: string;
|
|
2394
2407
|
apiUrl: string;
|
|
2395
2408
|
apiKey?: string | undefined;
|
|
2396
|
-
family?: import("
|
|
2409
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2397
2410
|
}[] | undefined;
|
|
2398
2411
|
blocks?: {
|
|
2399
2412
|
confirmations: number;
|
|
2400
2413
|
reorgPeriod?: string | number | undefined;
|
|
2401
2414
|
estimateBlockTime?: number | undefined;
|
|
2402
2415
|
} | undefined;
|
|
2416
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
2403
2417
|
customGrpcUrls?: string | undefined;
|
|
2404
2418
|
deployer?: {
|
|
2405
2419
|
name: string;
|
|
@@ -2454,7 +2468,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2454
2468
|
public?: boolean | undefined;
|
|
2455
2469
|
}[] | undefined;
|
|
2456
2470
|
slip44?: number | undefined;
|
|
2457
|
-
technicalStack?: import("
|
|
2471
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
2458
2472
|
transactionOverrides?: Record<string, any> | undefined;
|
|
2459
2473
|
signer?: {
|
|
2460
2474
|
key: string;
|
|
@@ -2538,10 +2552,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2538
2552
|
amount: string;
|
|
2539
2553
|
} | undefined;
|
|
2540
2554
|
availability?: {
|
|
2541
|
-
status: import("
|
|
2542
|
-
reasons: import("
|
|
2555
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2556
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2543
2557
|
} | {
|
|
2544
|
-
status: import("
|
|
2558
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2545
2559
|
} | undefined;
|
|
2546
2560
|
bech32Prefix?: string | undefined;
|
|
2547
2561
|
blockExplorers?: {
|
|
@@ -2549,13 +2563,14 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2549
2563
|
url: string;
|
|
2550
2564
|
apiUrl: string;
|
|
2551
2565
|
apiKey?: string | undefined;
|
|
2552
|
-
family?: import("
|
|
2566
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2553
2567
|
}[] | undefined;
|
|
2554
2568
|
blocks?: {
|
|
2555
2569
|
confirmations: number;
|
|
2556
2570
|
reorgPeriod?: string | number | undefined;
|
|
2557
2571
|
estimateBlockTime?: number | undefined;
|
|
2558
2572
|
} | undefined;
|
|
2573
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
2559
2574
|
customGrpcUrls?: string | undefined;
|
|
2560
2575
|
deployer?: {
|
|
2561
2576
|
name: string;
|
|
@@ -2610,7 +2625,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2610
2625
|
public?: boolean | undefined;
|
|
2611
2626
|
}[] | undefined;
|
|
2612
2627
|
slip44?: number | undefined;
|
|
2613
|
-
technicalStack?: import("
|
|
2628
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
2614
2629
|
transactionOverrides?: Record<string, any> | undefined;
|
|
2615
2630
|
signer?: {
|
|
2616
2631
|
key: string;
|
|
@@ -2795,6 +2810,56 @@ declare const GasPaymentEnforcementSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2795
2810
|
gasFraction?: string | undefined;
|
|
2796
2811
|
}>]>;
|
|
2797
2812
|
export type GasPaymentEnforcement = z.infer<typeof GasPaymentEnforcementSchema>;
|
|
2813
|
+
export declare enum IsmCachePolicy {
|
|
2814
|
+
MessageSpecific = "messageSpecific",
|
|
2815
|
+
IsmSpecific = "ismSpecific"
|
|
2816
|
+
}
|
|
2817
|
+
export declare enum IsmCacheSelectorType {
|
|
2818
|
+
DefaultIsm = "defaultIsm",
|
|
2819
|
+
AppContext = "appContext"
|
|
2820
|
+
}
|
|
2821
|
+
declare const IsmCacheConfigSchema: z.ZodObject<{
|
|
2822
|
+
selector: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2823
|
+
type: z.ZodLiteral<IsmCacheSelectorType.DefaultIsm>;
|
|
2824
|
+
}, "strip", z.ZodTypeAny, {
|
|
2825
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
2826
|
+
}, {
|
|
2827
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
2828
|
+
}>, z.ZodObject<{
|
|
2829
|
+
type: z.ZodLiteral<IsmCacheSelectorType.AppContext>;
|
|
2830
|
+
context: z.ZodString;
|
|
2831
|
+
}, "strip", z.ZodTypeAny, {
|
|
2832
|
+
type: IsmCacheSelectorType.AppContext;
|
|
2833
|
+
context: string;
|
|
2834
|
+
}, {
|
|
2835
|
+
type: IsmCacheSelectorType.AppContext;
|
|
2836
|
+
context: string;
|
|
2837
|
+
}>]>;
|
|
2838
|
+
moduleTypes: z.ZodArray<z.ZodNativeEnum<typeof ModuleType>, "many">;
|
|
2839
|
+
chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2840
|
+
cachePolicy: z.ZodNativeEnum<typeof IsmCachePolicy>;
|
|
2841
|
+
}, "strip", z.ZodTypeAny, {
|
|
2842
|
+
selector: {
|
|
2843
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
2844
|
+
} | {
|
|
2845
|
+
type: IsmCacheSelectorType.AppContext;
|
|
2846
|
+
context: string;
|
|
2847
|
+
};
|
|
2848
|
+
moduleTypes: ModuleType[];
|
|
2849
|
+
cachePolicy: IsmCachePolicy;
|
|
2850
|
+
chains?: string[] | undefined;
|
|
2851
|
+
}, {
|
|
2852
|
+
selector: {
|
|
2853
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
2854
|
+
} | {
|
|
2855
|
+
type: IsmCacheSelectorType.AppContext;
|
|
2856
|
+
context: string;
|
|
2857
|
+
};
|
|
2858
|
+
moduleTypes: ModuleType[];
|
|
2859
|
+
cachePolicy: IsmCachePolicy;
|
|
2860
|
+
chains?: string[] | undefined;
|
|
2861
|
+
}>;
|
|
2862
|
+
export type IsmCacheConfig = z.infer<typeof IsmCacheConfigSchema>;
|
|
2798
2863
|
export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
2799
2864
|
metricsPort: z.ZodOptional<z.ZodNumber>;
|
|
2800
2865
|
chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
@@ -2812,20 +2877,20 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2812
2877
|
interchainGasPaymaster: z.ZodString;
|
|
2813
2878
|
name: z.ZodString;
|
|
2814
2879
|
availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2815
|
-
status: z.ZodLiteral<import("
|
|
2816
|
-
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("
|
|
2880
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
|
|
2881
|
+
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
|
|
2817
2882
|
}, "strip", z.ZodTypeAny, {
|
|
2818
|
-
status: import("
|
|
2819
|
-
reasons: import("
|
|
2883
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2884
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2820
2885
|
}, {
|
|
2821
|
-
status: import("
|
|
2822
|
-
reasons: import("
|
|
2886
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
2887
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
2823
2888
|
}>, z.ZodObject<{
|
|
2824
|
-
status: z.ZodLiteral<import("
|
|
2889
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
|
|
2825
2890
|
}, "strip", z.ZodTypeAny, {
|
|
2826
|
-
status: import("
|
|
2891
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2827
2892
|
}, {
|
|
2828
|
-
status: import("
|
|
2893
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
2829
2894
|
}>]>>;
|
|
2830
2895
|
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
2831
2896
|
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2833,19 +2898,19 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2833
2898
|
url: z.ZodString;
|
|
2834
2899
|
apiUrl: z.ZodString;
|
|
2835
2900
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2836
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
2901
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
|
|
2837
2902
|
}, "strip", z.ZodTypeAny, {
|
|
2838
2903
|
name: string;
|
|
2839
2904
|
url: string;
|
|
2840
2905
|
apiUrl: string;
|
|
2841
2906
|
apiKey?: string | undefined;
|
|
2842
|
-
family?: import("
|
|
2907
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2843
2908
|
}, {
|
|
2844
2909
|
name: string;
|
|
2845
2910
|
url: string;
|
|
2846
2911
|
apiUrl: string;
|
|
2847
2912
|
apiKey?: string | undefined;
|
|
2848
|
-
family?: import("
|
|
2913
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
2849
2914
|
}>, "many">>;
|
|
2850
2915
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
2851
2916
|
confirmations: z.ZodNumber;
|
|
@@ -2860,6 +2925,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
2860
2925
|
reorgPeriod?: string | number | undefined;
|
|
2861
2926
|
estimateBlockTime?: number | undefined;
|
|
2862
2927
|
}>>;
|
|
2928
|
+
bypassBatchSimulation: z.ZodOptional<z.ZodBoolean>;
|
|
2863
2929
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2864
2930
|
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
2865
2931
|
deployer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3084,7 +3150,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3084
3150
|
public?: boolean | undefined;
|
|
3085
3151
|
}>, "many">;
|
|
3086
3152
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
3087
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
3153
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
|
|
3088
3154
|
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3089
3155
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3090
3156
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
@@ -3194,10 +3260,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3194
3260
|
amount: string;
|
|
3195
3261
|
} | undefined;
|
|
3196
3262
|
availability?: {
|
|
3197
|
-
status: import("
|
|
3198
|
-
reasons: import("
|
|
3263
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3264
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3199
3265
|
} | {
|
|
3200
|
-
status: import("
|
|
3266
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3201
3267
|
} | undefined;
|
|
3202
3268
|
bech32Prefix?: string | undefined;
|
|
3203
3269
|
blockExplorers?: {
|
|
@@ -3205,13 +3271,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3205
3271
|
url: string;
|
|
3206
3272
|
apiUrl: string;
|
|
3207
3273
|
apiKey?: string | undefined;
|
|
3208
|
-
family?: import("
|
|
3274
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3209
3275
|
}[] | undefined;
|
|
3210
3276
|
blocks?: {
|
|
3211
3277
|
confirmations: number;
|
|
3212
3278
|
reorgPeriod?: string | number | undefined;
|
|
3213
3279
|
estimateBlockTime?: number | undefined;
|
|
3214
3280
|
} | undefined;
|
|
3281
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3215
3282
|
customGrpcUrls?: string | undefined;
|
|
3216
3283
|
deployer?: {
|
|
3217
3284
|
name: string;
|
|
@@ -3266,7 +3333,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3266
3333
|
public?: boolean | undefined;
|
|
3267
3334
|
}[] | undefined;
|
|
3268
3335
|
slip44?: number | undefined;
|
|
3269
|
-
technicalStack?: import("
|
|
3336
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3270
3337
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3271
3338
|
signer?: {
|
|
3272
3339
|
key: string;
|
|
@@ -3328,10 +3395,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3328
3395
|
amount: string;
|
|
3329
3396
|
} | undefined;
|
|
3330
3397
|
availability?: {
|
|
3331
|
-
status: import("
|
|
3332
|
-
reasons: import("
|
|
3398
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3399
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3333
3400
|
} | {
|
|
3334
|
-
status: import("
|
|
3401
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3335
3402
|
} | undefined;
|
|
3336
3403
|
bech32Prefix?: string | undefined;
|
|
3337
3404
|
blockExplorers?: {
|
|
@@ -3339,13 +3406,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3339
3406
|
url: string;
|
|
3340
3407
|
apiUrl: string;
|
|
3341
3408
|
apiKey?: string | undefined;
|
|
3342
|
-
family?: import("
|
|
3409
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3343
3410
|
}[] | undefined;
|
|
3344
3411
|
blocks?: {
|
|
3345
3412
|
confirmations: number;
|
|
3346
3413
|
reorgPeriod?: string | number | undefined;
|
|
3347
3414
|
estimateBlockTime?: number | undefined;
|
|
3348
3415
|
} | undefined;
|
|
3416
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3349
3417
|
customGrpcUrls?: string | undefined;
|
|
3350
3418
|
deployer?: {
|
|
3351
3419
|
name: string;
|
|
@@ -3400,7 +3468,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3400
3468
|
public?: boolean | undefined;
|
|
3401
3469
|
}[] | undefined;
|
|
3402
3470
|
slip44?: number | undefined;
|
|
3403
|
-
technicalStack?: import("
|
|
3471
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3404
3472
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3405
3473
|
signer?: {
|
|
3406
3474
|
key: string;
|
|
@@ -3462,10 +3530,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3462
3530
|
amount: string;
|
|
3463
3531
|
} | undefined;
|
|
3464
3532
|
availability?: {
|
|
3465
|
-
status: import("
|
|
3466
|
-
reasons: import("
|
|
3533
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3534
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3467
3535
|
} | {
|
|
3468
|
-
status: import("
|
|
3536
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3469
3537
|
} | undefined;
|
|
3470
3538
|
bech32Prefix?: string | undefined;
|
|
3471
3539
|
blockExplorers?: {
|
|
@@ -3473,13 +3541,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3473
3541
|
url: string;
|
|
3474
3542
|
apiUrl: string;
|
|
3475
3543
|
apiKey?: string | undefined;
|
|
3476
|
-
family?: import("
|
|
3544
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3477
3545
|
}[] | undefined;
|
|
3478
3546
|
blocks?: {
|
|
3479
3547
|
confirmations: number;
|
|
3480
3548
|
reorgPeriod?: string | number | undefined;
|
|
3481
3549
|
estimateBlockTime?: number | undefined;
|
|
3482
3550
|
} | undefined;
|
|
3551
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3483
3552
|
customGrpcUrls?: string | undefined;
|
|
3484
3553
|
deployer?: {
|
|
3485
3554
|
name: string;
|
|
@@ -3534,7 +3603,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3534
3603
|
public?: boolean | undefined;
|
|
3535
3604
|
}[] | undefined;
|
|
3536
3605
|
slip44?: number | undefined;
|
|
3537
|
-
technicalStack?: import("
|
|
3606
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3538
3607
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3539
3608
|
signer?: {
|
|
3540
3609
|
key: string;
|
|
@@ -3596,10 +3665,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3596
3665
|
amount: string;
|
|
3597
3666
|
} | undefined;
|
|
3598
3667
|
availability?: {
|
|
3599
|
-
status: import("
|
|
3600
|
-
reasons: import("
|
|
3668
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3669
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3601
3670
|
} | {
|
|
3602
|
-
status: import("
|
|
3671
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3603
3672
|
} | undefined;
|
|
3604
3673
|
bech32Prefix?: string | undefined;
|
|
3605
3674
|
blockExplorers?: {
|
|
@@ -3607,13 +3676,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3607
3676
|
url: string;
|
|
3608
3677
|
apiUrl: string;
|
|
3609
3678
|
apiKey?: string | undefined;
|
|
3610
|
-
family?: import("
|
|
3679
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3611
3680
|
}[] | undefined;
|
|
3612
3681
|
blocks?: {
|
|
3613
3682
|
confirmations: number;
|
|
3614
3683
|
reorgPeriod?: string | number | undefined;
|
|
3615
3684
|
estimateBlockTime?: number | undefined;
|
|
3616
3685
|
} | undefined;
|
|
3686
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3617
3687
|
customGrpcUrls?: string | undefined;
|
|
3618
3688
|
deployer?: {
|
|
3619
3689
|
name: string;
|
|
@@ -3668,7 +3738,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3668
3738
|
public?: boolean | undefined;
|
|
3669
3739
|
}[] | undefined;
|
|
3670
3740
|
slip44?: number | undefined;
|
|
3671
|
-
technicalStack?: import("
|
|
3741
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3672
3742
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3673
3743
|
signer?: {
|
|
3674
3744
|
key: string;
|
|
@@ -3730,10 +3800,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3730
3800
|
amount: string;
|
|
3731
3801
|
} | undefined;
|
|
3732
3802
|
availability?: {
|
|
3733
|
-
status: import("
|
|
3734
|
-
reasons: import("
|
|
3803
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3804
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3735
3805
|
} | {
|
|
3736
|
-
status: import("
|
|
3806
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3737
3807
|
} | undefined;
|
|
3738
3808
|
bech32Prefix?: string | undefined;
|
|
3739
3809
|
blockExplorers?: {
|
|
@@ -3741,13 +3811,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3741
3811
|
url: string;
|
|
3742
3812
|
apiUrl: string;
|
|
3743
3813
|
apiKey?: string | undefined;
|
|
3744
|
-
family?: import("
|
|
3814
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3745
3815
|
}[] | undefined;
|
|
3746
3816
|
blocks?: {
|
|
3747
3817
|
confirmations: number;
|
|
3748
3818
|
reorgPeriod?: string | number | undefined;
|
|
3749
3819
|
estimateBlockTime?: number | undefined;
|
|
3750
3820
|
} | undefined;
|
|
3821
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3751
3822
|
customGrpcUrls?: string | undefined;
|
|
3752
3823
|
deployer?: {
|
|
3753
3824
|
name: string;
|
|
@@ -3802,7 +3873,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3802
3873
|
public?: boolean | undefined;
|
|
3803
3874
|
}[] | undefined;
|
|
3804
3875
|
slip44?: number | undefined;
|
|
3805
|
-
technicalStack?: import("
|
|
3876
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3806
3877
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3807
3878
|
signer?: {
|
|
3808
3879
|
key: string;
|
|
@@ -3864,10 +3935,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3864
3935
|
amount: string;
|
|
3865
3936
|
} | undefined;
|
|
3866
3937
|
availability?: {
|
|
3867
|
-
status: import("
|
|
3868
|
-
reasons: import("
|
|
3938
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
3939
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
3869
3940
|
} | {
|
|
3870
|
-
status: import("
|
|
3941
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
3871
3942
|
} | undefined;
|
|
3872
3943
|
bech32Prefix?: string | undefined;
|
|
3873
3944
|
blockExplorers?: {
|
|
@@ -3875,13 +3946,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3875
3946
|
url: string;
|
|
3876
3947
|
apiUrl: string;
|
|
3877
3948
|
apiKey?: string | undefined;
|
|
3878
|
-
family?: import("
|
|
3949
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
3879
3950
|
}[] | undefined;
|
|
3880
3951
|
blocks?: {
|
|
3881
3952
|
confirmations: number;
|
|
3882
3953
|
reorgPeriod?: string | number | undefined;
|
|
3883
3954
|
estimateBlockTime?: number | undefined;
|
|
3884
3955
|
} | undefined;
|
|
3956
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
3885
3957
|
customGrpcUrls?: string | undefined;
|
|
3886
3958
|
deployer?: {
|
|
3887
3959
|
name: string;
|
|
@@ -3936,7 +4008,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3936
4008
|
public?: boolean | undefined;
|
|
3937
4009
|
}[] | undefined;
|
|
3938
4010
|
slip44?: number | undefined;
|
|
3939
|
-
technicalStack?: import("
|
|
4011
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
3940
4012
|
transactionOverrides?: Record<string, any> | undefined;
|
|
3941
4013
|
signer?: {
|
|
3942
4014
|
key: string;
|
|
@@ -4229,6 +4301,48 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4229
4301
|
recipientAddress?: string | string[] | undefined;
|
|
4230
4302
|
}[];
|
|
4231
4303
|
}>, "many">, z.ZodString]>>;
|
|
4304
|
+
ismCacheConfigs: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4305
|
+
selector: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4306
|
+
type: z.ZodLiteral<IsmCacheSelectorType.DefaultIsm>;
|
|
4307
|
+
}, "strip", z.ZodTypeAny, {
|
|
4308
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4309
|
+
}, {
|
|
4310
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4311
|
+
}>, z.ZodObject<{
|
|
4312
|
+
type: z.ZodLiteral<IsmCacheSelectorType.AppContext>;
|
|
4313
|
+
context: z.ZodString;
|
|
4314
|
+
}, "strip", z.ZodTypeAny, {
|
|
4315
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4316
|
+
context: string;
|
|
4317
|
+
}, {
|
|
4318
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4319
|
+
context: string;
|
|
4320
|
+
}>]>;
|
|
4321
|
+
moduleTypes: z.ZodArray<z.ZodNativeEnum<typeof ModuleType>, "many">;
|
|
4322
|
+
chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4323
|
+
cachePolicy: z.ZodNativeEnum<typeof IsmCachePolicy>;
|
|
4324
|
+
}, "strip", z.ZodTypeAny, {
|
|
4325
|
+
selector: {
|
|
4326
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4327
|
+
} | {
|
|
4328
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4329
|
+
context: string;
|
|
4330
|
+
};
|
|
4331
|
+
moduleTypes: ModuleType[];
|
|
4332
|
+
cachePolicy: IsmCachePolicy;
|
|
4333
|
+
chains?: string[] | undefined;
|
|
4334
|
+
}, {
|
|
4335
|
+
selector: {
|
|
4336
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4337
|
+
} | {
|
|
4338
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4339
|
+
context: string;
|
|
4340
|
+
};
|
|
4341
|
+
moduleTypes: ModuleType[];
|
|
4342
|
+
cachePolicy: IsmCachePolicy;
|
|
4343
|
+
chains?: string[] | undefined;
|
|
4344
|
+
}>, "many">, z.ZodString]>>;
|
|
4345
|
+
allowContractCallCaching: z.ZodOptional<z.ZodBoolean>;
|
|
4232
4346
|
}, "strip", z.ZodTypeAny, {
|
|
4233
4347
|
chains: Record<string, {
|
|
4234
4348
|
merkleTreeHook: string;
|
|
@@ -4259,10 +4373,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4259
4373
|
amount: string;
|
|
4260
4374
|
} | undefined;
|
|
4261
4375
|
availability?: {
|
|
4262
|
-
status: import("
|
|
4263
|
-
reasons: import("
|
|
4376
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
4377
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
4264
4378
|
} | {
|
|
4265
|
-
status: import("
|
|
4379
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
4266
4380
|
} | undefined;
|
|
4267
4381
|
bech32Prefix?: string | undefined;
|
|
4268
4382
|
blockExplorers?: {
|
|
@@ -4270,13 +4384,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4270
4384
|
url: string;
|
|
4271
4385
|
apiUrl: string;
|
|
4272
4386
|
apiKey?: string | undefined;
|
|
4273
|
-
family?: import("
|
|
4387
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
4274
4388
|
}[] | undefined;
|
|
4275
4389
|
blocks?: {
|
|
4276
4390
|
confirmations: number;
|
|
4277
4391
|
reorgPeriod?: string | number | undefined;
|
|
4278
4392
|
estimateBlockTime?: number | undefined;
|
|
4279
4393
|
} | undefined;
|
|
4394
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
4280
4395
|
customGrpcUrls?: string | undefined;
|
|
4281
4396
|
deployer?: {
|
|
4282
4397
|
name: string;
|
|
@@ -4331,7 +4446,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4331
4446
|
public?: boolean | undefined;
|
|
4332
4447
|
}[] | undefined;
|
|
4333
4448
|
slip44?: number | undefined;
|
|
4334
|
-
technicalStack?: import("
|
|
4449
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
4335
4450
|
transactionOverrides?: Record<string, any> | undefined;
|
|
4336
4451
|
signer?: {
|
|
4337
4452
|
key: string;
|
|
@@ -4445,6 +4560,18 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4445
4560
|
recipientAddress?: string | string[] | undefined;
|
|
4446
4561
|
}[];
|
|
4447
4562
|
}[] | undefined;
|
|
4563
|
+
ismCacheConfigs?: string | {
|
|
4564
|
+
selector: {
|
|
4565
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4566
|
+
} | {
|
|
4567
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4568
|
+
context: string;
|
|
4569
|
+
};
|
|
4570
|
+
moduleTypes: ModuleType[];
|
|
4571
|
+
cachePolicy: IsmCachePolicy;
|
|
4572
|
+
chains?: string[] | undefined;
|
|
4573
|
+
}[] | undefined;
|
|
4574
|
+
allowContractCallCaching?: boolean | undefined;
|
|
4448
4575
|
}, {
|
|
4449
4576
|
chains: Record<string, {
|
|
4450
4577
|
merkleTreeHook: string;
|
|
@@ -4475,10 +4602,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4475
4602
|
amount: string;
|
|
4476
4603
|
} | undefined;
|
|
4477
4604
|
availability?: {
|
|
4478
|
-
status: import("
|
|
4479
|
-
reasons: import("
|
|
4605
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
4606
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
4480
4607
|
} | {
|
|
4481
|
-
status: import("
|
|
4608
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
4482
4609
|
} | undefined;
|
|
4483
4610
|
bech32Prefix?: string | undefined;
|
|
4484
4611
|
blockExplorers?: {
|
|
@@ -4486,13 +4613,14 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4486
4613
|
url: string;
|
|
4487
4614
|
apiUrl: string;
|
|
4488
4615
|
apiKey?: string | undefined;
|
|
4489
|
-
family?: import("
|
|
4616
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
4490
4617
|
}[] | undefined;
|
|
4491
4618
|
blocks?: {
|
|
4492
4619
|
confirmations: number;
|
|
4493
4620
|
reorgPeriod?: string | number | undefined;
|
|
4494
4621
|
estimateBlockTime?: number | undefined;
|
|
4495
4622
|
} | undefined;
|
|
4623
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
4496
4624
|
customGrpcUrls?: string | undefined;
|
|
4497
4625
|
deployer?: {
|
|
4498
4626
|
name: string;
|
|
@@ -4547,7 +4675,7 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4547
4675
|
public?: boolean | undefined;
|
|
4548
4676
|
}[] | undefined;
|
|
4549
4677
|
slip44?: number | undefined;
|
|
4550
|
-
technicalStack?: import("
|
|
4678
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
4551
4679
|
transactionOverrides?: Record<string, any> | undefined;
|
|
4552
4680
|
signer?: {
|
|
4553
4681
|
key: string;
|
|
@@ -4661,6 +4789,18 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4661
4789
|
recipientAddress?: string | string[] | undefined;
|
|
4662
4790
|
}[];
|
|
4663
4791
|
}[] | undefined;
|
|
4792
|
+
ismCacheConfigs?: string | {
|
|
4793
|
+
selector: {
|
|
4794
|
+
type: IsmCacheSelectorType.DefaultIsm;
|
|
4795
|
+
} | {
|
|
4796
|
+
type: IsmCacheSelectorType.AppContext;
|
|
4797
|
+
context: string;
|
|
4798
|
+
};
|
|
4799
|
+
moduleTypes: ModuleType[];
|
|
4800
|
+
cachePolicy: IsmCachePolicy;
|
|
4801
|
+
chains?: string[] | undefined;
|
|
4802
|
+
}[] | undefined;
|
|
4803
|
+
allowContractCallCaching?: boolean | undefined;
|
|
4664
4804
|
}>;
|
|
4665
4805
|
export type RelayerConfig = z.infer<typeof RelayerAgentConfigSchema>;
|
|
4666
4806
|
export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
@@ -4680,20 +4820,20 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4680
4820
|
interchainGasPaymaster: z.ZodString;
|
|
4681
4821
|
name: z.ZodString;
|
|
4682
4822
|
availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4683
|
-
status: z.ZodLiteral<import("
|
|
4684
|
-
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("
|
|
4823
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
|
|
4824
|
+
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
|
|
4685
4825
|
}, "strip", z.ZodTypeAny, {
|
|
4686
|
-
status: import("
|
|
4687
|
-
reasons: import("
|
|
4826
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
4827
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
4688
4828
|
}, {
|
|
4689
|
-
status: import("
|
|
4690
|
-
reasons: import("
|
|
4829
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
4830
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
4691
4831
|
}>, z.ZodObject<{
|
|
4692
|
-
status: z.ZodLiteral<import("
|
|
4832
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
|
|
4693
4833
|
}, "strip", z.ZodTypeAny, {
|
|
4694
|
-
status: import("
|
|
4834
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
4695
4835
|
}, {
|
|
4696
|
-
status: import("
|
|
4836
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
4697
4837
|
}>]>>;
|
|
4698
4838
|
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
4699
4839
|
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4701,19 +4841,19 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4701
4841
|
url: z.ZodString;
|
|
4702
4842
|
apiUrl: z.ZodString;
|
|
4703
4843
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4704
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
4844
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
|
|
4705
4845
|
}, "strip", z.ZodTypeAny, {
|
|
4706
4846
|
name: string;
|
|
4707
4847
|
url: string;
|
|
4708
4848
|
apiUrl: string;
|
|
4709
4849
|
apiKey?: string | undefined;
|
|
4710
|
-
family?: import("
|
|
4850
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
4711
4851
|
}, {
|
|
4712
4852
|
name: string;
|
|
4713
4853
|
url: string;
|
|
4714
4854
|
apiUrl: string;
|
|
4715
4855
|
apiKey?: string | undefined;
|
|
4716
|
-
family?: import("
|
|
4856
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
4717
4857
|
}>, "many">>;
|
|
4718
4858
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
4719
4859
|
confirmations: z.ZodNumber;
|
|
@@ -4728,6 +4868,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4728
4868
|
reorgPeriod?: string | number | undefined;
|
|
4729
4869
|
estimateBlockTime?: number | undefined;
|
|
4730
4870
|
}>>;
|
|
4871
|
+
bypassBatchSimulation: z.ZodOptional<z.ZodBoolean>;
|
|
4731
4872
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
4732
4873
|
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
4733
4874
|
deployer: z.ZodOptional<z.ZodObject<{
|
|
@@ -4952,7 +5093,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
4952
5093
|
public?: boolean | undefined;
|
|
4953
5094
|
}>, "many">;
|
|
4954
5095
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
4955
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
5096
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
|
|
4956
5097
|
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4957
5098
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4958
5099
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
@@ -5062,10 +5203,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5062
5203
|
amount: string;
|
|
5063
5204
|
} | undefined;
|
|
5064
5205
|
availability?: {
|
|
5065
|
-
status: import("
|
|
5066
|
-
reasons: import("
|
|
5206
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5207
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5067
5208
|
} | {
|
|
5068
|
-
status: import("
|
|
5209
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5069
5210
|
} | undefined;
|
|
5070
5211
|
bech32Prefix?: string | undefined;
|
|
5071
5212
|
blockExplorers?: {
|
|
@@ -5073,13 +5214,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5073
5214
|
url: string;
|
|
5074
5215
|
apiUrl: string;
|
|
5075
5216
|
apiKey?: string | undefined;
|
|
5076
|
-
family?: import("
|
|
5217
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5077
5218
|
}[] | undefined;
|
|
5078
5219
|
blocks?: {
|
|
5079
5220
|
confirmations: number;
|
|
5080
5221
|
reorgPeriod?: string | number | undefined;
|
|
5081
5222
|
estimateBlockTime?: number | undefined;
|
|
5082
5223
|
} | undefined;
|
|
5224
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5083
5225
|
customGrpcUrls?: string | undefined;
|
|
5084
5226
|
deployer?: {
|
|
5085
5227
|
name: string;
|
|
@@ -5134,7 +5276,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5134
5276
|
public?: boolean | undefined;
|
|
5135
5277
|
}[] | undefined;
|
|
5136
5278
|
slip44?: number | undefined;
|
|
5137
|
-
technicalStack?: import("
|
|
5279
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5138
5280
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5139
5281
|
signer?: {
|
|
5140
5282
|
key: string;
|
|
@@ -5196,10 +5338,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5196
5338
|
amount: string;
|
|
5197
5339
|
} | undefined;
|
|
5198
5340
|
availability?: {
|
|
5199
|
-
status: import("
|
|
5200
|
-
reasons: import("
|
|
5341
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5342
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5201
5343
|
} | {
|
|
5202
|
-
status: import("
|
|
5344
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5203
5345
|
} | undefined;
|
|
5204
5346
|
bech32Prefix?: string | undefined;
|
|
5205
5347
|
blockExplorers?: {
|
|
@@ -5207,13 +5349,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5207
5349
|
url: string;
|
|
5208
5350
|
apiUrl: string;
|
|
5209
5351
|
apiKey?: string | undefined;
|
|
5210
|
-
family?: import("
|
|
5352
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5211
5353
|
}[] | undefined;
|
|
5212
5354
|
blocks?: {
|
|
5213
5355
|
confirmations: number;
|
|
5214
5356
|
reorgPeriod?: string | number | undefined;
|
|
5215
5357
|
estimateBlockTime?: number | undefined;
|
|
5216
5358
|
} | undefined;
|
|
5359
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5217
5360
|
customGrpcUrls?: string | undefined;
|
|
5218
5361
|
deployer?: {
|
|
5219
5362
|
name: string;
|
|
@@ -5268,7 +5411,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5268
5411
|
public?: boolean | undefined;
|
|
5269
5412
|
}[] | undefined;
|
|
5270
5413
|
slip44?: number | undefined;
|
|
5271
|
-
technicalStack?: import("
|
|
5414
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5272
5415
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5273
5416
|
signer?: {
|
|
5274
5417
|
key: string;
|
|
@@ -5330,10 +5473,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5330
5473
|
amount: string;
|
|
5331
5474
|
} | undefined;
|
|
5332
5475
|
availability?: {
|
|
5333
|
-
status: import("
|
|
5334
|
-
reasons: import("
|
|
5476
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5477
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5335
5478
|
} | {
|
|
5336
|
-
status: import("
|
|
5479
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5337
5480
|
} | undefined;
|
|
5338
5481
|
bech32Prefix?: string | undefined;
|
|
5339
5482
|
blockExplorers?: {
|
|
@@ -5341,13 +5484,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5341
5484
|
url: string;
|
|
5342
5485
|
apiUrl: string;
|
|
5343
5486
|
apiKey?: string | undefined;
|
|
5344
|
-
family?: import("
|
|
5487
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5345
5488
|
}[] | undefined;
|
|
5346
5489
|
blocks?: {
|
|
5347
5490
|
confirmations: number;
|
|
5348
5491
|
reorgPeriod?: string | number | undefined;
|
|
5349
5492
|
estimateBlockTime?: number | undefined;
|
|
5350
5493
|
} | undefined;
|
|
5494
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5351
5495
|
customGrpcUrls?: string | undefined;
|
|
5352
5496
|
deployer?: {
|
|
5353
5497
|
name: string;
|
|
@@ -5402,7 +5546,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5402
5546
|
public?: boolean | undefined;
|
|
5403
5547
|
}[] | undefined;
|
|
5404
5548
|
slip44?: number | undefined;
|
|
5405
|
-
technicalStack?: import("
|
|
5549
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5406
5550
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5407
5551
|
signer?: {
|
|
5408
5552
|
key: string;
|
|
@@ -5464,10 +5608,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5464
5608
|
amount: string;
|
|
5465
5609
|
} | undefined;
|
|
5466
5610
|
availability?: {
|
|
5467
|
-
status: import("
|
|
5468
|
-
reasons: import("
|
|
5611
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5612
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5469
5613
|
} | {
|
|
5470
|
-
status: import("
|
|
5614
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5471
5615
|
} | undefined;
|
|
5472
5616
|
bech32Prefix?: string | undefined;
|
|
5473
5617
|
blockExplorers?: {
|
|
@@ -5475,13 +5619,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5475
5619
|
url: string;
|
|
5476
5620
|
apiUrl: string;
|
|
5477
5621
|
apiKey?: string | undefined;
|
|
5478
|
-
family?: import("
|
|
5622
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5479
5623
|
}[] | undefined;
|
|
5480
5624
|
blocks?: {
|
|
5481
5625
|
confirmations: number;
|
|
5482
5626
|
reorgPeriod?: string | number | undefined;
|
|
5483
5627
|
estimateBlockTime?: number | undefined;
|
|
5484
5628
|
} | undefined;
|
|
5629
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5485
5630
|
customGrpcUrls?: string | undefined;
|
|
5486
5631
|
deployer?: {
|
|
5487
5632
|
name: string;
|
|
@@ -5536,7 +5681,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5536
5681
|
public?: boolean | undefined;
|
|
5537
5682
|
}[] | undefined;
|
|
5538
5683
|
slip44?: number | undefined;
|
|
5539
|
-
technicalStack?: import("
|
|
5684
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5540
5685
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5541
5686
|
signer?: {
|
|
5542
5687
|
key: string;
|
|
@@ -5598,10 +5743,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5598
5743
|
amount: string;
|
|
5599
5744
|
} | undefined;
|
|
5600
5745
|
availability?: {
|
|
5601
|
-
status: import("
|
|
5602
|
-
reasons: import("
|
|
5746
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5747
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5603
5748
|
} | {
|
|
5604
|
-
status: import("
|
|
5749
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5605
5750
|
} | undefined;
|
|
5606
5751
|
bech32Prefix?: string | undefined;
|
|
5607
5752
|
blockExplorers?: {
|
|
@@ -5609,13 +5754,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5609
5754
|
url: string;
|
|
5610
5755
|
apiUrl: string;
|
|
5611
5756
|
apiKey?: string | undefined;
|
|
5612
|
-
family?: import("
|
|
5757
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5613
5758
|
}[] | undefined;
|
|
5614
5759
|
blocks?: {
|
|
5615
5760
|
confirmations: number;
|
|
5616
5761
|
reorgPeriod?: string | number | undefined;
|
|
5617
5762
|
estimateBlockTime?: number | undefined;
|
|
5618
5763
|
} | undefined;
|
|
5764
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5619
5765
|
customGrpcUrls?: string | undefined;
|
|
5620
5766
|
deployer?: {
|
|
5621
5767
|
name: string;
|
|
@@ -5670,7 +5816,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5670
5816
|
public?: boolean | undefined;
|
|
5671
5817
|
}[] | undefined;
|
|
5672
5818
|
slip44?: number | undefined;
|
|
5673
|
-
technicalStack?: import("
|
|
5819
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5674
5820
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5675
5821
|
signer?: {
|
|
5676
5822
|
key: string;
|
|
@@ -5732,10 +5878,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5732
5878
|
amount: string;
|
|
5733
5879
|
} | undefined;
|
|
5734
5880
|
availability?: {
|
|
5735
|
-
status: import("
|
|
5736
|
-
reasons: import("
|
|
5881
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
5882
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5737
5883
|
} | {
|
|
5738
|
-
status: import("
|
|
5884
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5739
5885
|
} | undefined;
|
|
5740
5886
|
bech32Prefix?: string | undefined;
|
|
5741
5887
|
blockExplorers?: {
|
|
@@ -5743,13 +5889,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5743
5889
|
url: string;
|
|
5744
5890
|
apiUrl: string;
|
|
5745
5891
|
apiKey?: string | undefined;
|
|
5746
|
-
family?: import("
|
|
5892
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5747
5893
|
}[] | undefined;
|
|
5748
5894
|
blocks?: {
|
|
5749
5895
|
confirmations: number;
|
|
5750
5896
|
reorgPeriod?: string | number | undefined;
|
|
5751
5897
|
estimateBlockTime?: number | undefined;
|
|
5752
5898
|
} | undefined;
|
|
5899
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5753
5900
|
customGrpcUrls?: string | undefined;
|
|
5754
5901
|
deployer?: {
|
|
5755
5902
|
name: string;
|
|
@@ -5804,7 +5951,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5804
5951
|
public?: boolean | undefined;
|
|
5805
5952
|
}[] | undefined;
|
|
5806
5953
|
slip44?: number | undefined;
|
|
5807
|
-
technicalStack?: import("
|
|
5954
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5808
5955
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5809
5956
|
signer?: {
|
|
5810
5957
|
key: string;
|
|
@@ -5921,10 +6068,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5921
6068
|
amount: string;
|
|
5922
6069
|
} | undefined;
|
|
5923
6070
|
availability?: {
|
|
5924
|
-
status: import("
|
|
5925
|
-
reasons: import("
|
|
6071
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6072
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
5926
6073
|
} | {
|
|
5927
|
-
status: import("
|
|
6074
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
5928
6075
|
} | undefined;
|
|
5929
6076
|
bech32Prefix?: string | undefined;
|
|
5930
6077
|
blockExplorers?: {
|
|
@@ -5932,13 +6079,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5932
6079
|
url: string;
|
|
5933
6080
|
apiUrl: string;
|
|
5934
6081
|
apiKey?: string | undefined;
|
|
5935
|
-
family?: import("
|
|
6082
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
5936
6083
|
}[] | undefined;
|
|
5937
6084
|
blocks?: {
|
|
5938
6085
|
confirmations: number;
|
|
5939
6086
|
reorgPeriod?: string | number | undefined;
|
|
5940
6087
|
estimateBlockTime?: number | undefined;
|
|
5941
6088
|
} | undefined;
|
|
6089
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
5942
6090
|
customGrpcUrls?: string | undefined;
|
|
5943
6091
|
deployer?: {
|
|
5944
6092
|
name: string;
|
|
@@ -5993,7 +6141,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5993
6141
|
public?: boolean | undefined;
|
|
5994
6142
|
}[] | undefined;
|
|
5995
6143
|
slip44?: number | undefined;
|
|
5996
|
-
technicalStack?: import("
|
|
6144
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
5997
6145
|
transactionOverrides?: Record<string, any> | undefined;
|
|
5998
6146
|
signer?: {
|
|
5999
6147
|
key: string;
|
|
@@ -6079,10 +6227,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6079
6227
|
amount: string;
|
|
6080
6228
|
} | undefined;
|
|
6081
6229
|
availability?: {
|
|
6082
|
-
status: import("
|
|
6083
|
-
reasons: import("
|
|
6230
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6231
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6084
6232
|
} | {
|
|
6085
|
-
status: import("
|
|
6233
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6086
6234
|
} | undefined;
|
|
6087
6235
|
bech32Prefix?: string | undefined;
|
|
6088
6236
|
blockExplorers?: {
|
|
@@ -6090,13 +6238,14 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6090
6238
|
url: string;
|
|
6091
6239
|
apiUrl: string;
|
|
6092
6240
|
apiKey?: string | undefined;
|
|
6093
|
-
family?: import("
|
|
6241
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6094
6242
|
}[] | undefined;
|
|
6095
6243
|
blocks?: {
|
|
6096
6244
|
confirmations: number;
|
|
6097
6245
|
reorgPeriod?: string | number | undefined;
|
|
6098
6246
|
estimateBlockTime?: number | undefined;
|
|
6099
6247
|
} | undefined;
|
|
6248
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
6100
6249
|
customGrpcUrls?: string | undefined;
|
|
6101
6250
|
deployer?: {
|
|
6102
6251
|
name: string;
|
|
@@ -6151,7 +6300,7 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6151
6300
|
public?: boolean | undefined;
|
|
6152
6301
|
}[] | undefined;
|
|
6153
6302
|
slip44?: number | undefined;
|
|
6154
|
-
technicalStack?: import("
|
|
6303
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
6155
6304
|
transactionOverrides?: Record<string, any> | undefined;
|
|
6156
6305
|
signer?: {
|
|
6157
6306
|
key: string;
|
|
@@ -6226,20 +6375,20 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6226
6375
|
interchainGasPaymaster: z.ZodString;
|
|
6227
6376
|
name: z.ZodString;
|
|
6228
6377
|
availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6229
|
-
status: z.ZodLiteral<import("
|
|
6230
|
-
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("
|
|
6378
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Disabled>;
|
|
6379
|
+
reasons: z.ZodArray<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainDisabledReason>, "many">;
|
|
6231
6380
|
}, "strip", z.ZodTypeAny, {
|
|
6232
|
-
status: import("
|
|
6233
|
-
reasons: import("
|
|
6381
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6382
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6234
6383
|
}, {
|
|
6235
|
-
status: import("
|
|
6236
|
-
reasons: import("
|
|
6384
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6385
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6237
6386
|
}>, z.ZodObject<{
|
|
6238
|
-
status: z.ZodLiteral<import("
|
|
6387
|
+
status: z.ZodLiteral<import("@hyperlane-xyz/sdk").ChainStatus.Live>;
|
|
6239
6388
|
}, "strip", z.ZodTypeAny, {
|
|
6240
|
-
status: import("
|
|
6389
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6241
6390
|
}, {
|
|
6242
|
-
status: import("
|
|
6391
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6243
6392
|
}>]>>;
|
|
6244
6393
|
bech32Prefix: z.ZodOptional<z.ZodString>;
|
|
6245
6394
|
blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -6247,19 +6396,19 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6247
6396
|
url: z.ZodString;
|
|
6248
6397
|
apiUrl: z.ZodString;
|
|
6249
6398
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6250
|
-
family: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
6399
|
+
family: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ExplorerFamily>>;
|
|
6251
6400
|
}, "strip", z.ZodTypeAny, {
|
|
6252
6401
|
name: string;
|
|
6253
6402
|
url: string;
|
|
6254
6403
|
apiUrl: string;
|
|
6255
6404
|
apiKey?: string | undefined;
|
|
6256
|
-
family?: import("
|
|
6405
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6257
6406
|
}, {
|
|
6258
6407
|
name: string;
|
|
6259
6408
|
url: string;
|
|
6260
6409
|
apiUrl: string;
|
|
6261
6410
|
apiKey?: string | undefined;
|
|
6262
|
-
family?: import("
|
|
6411
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6263
6412
|
}>, "many">>;
|
|
6264
6413
|
blocks: z.ZodOptional<z.ZodObject<{
|
|
6265
6414
|
confirmations: z.ZodNumber;
|
|
@@ -6274,6 +6423,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6274
6423
|
reorgPeriod?: string | number | undefined;
|
|
6275
6424
|
estimateBlockTime?: number | undefined;
|
|
6276
6425
|
}>>;
|
|
6426
|
+
bypassBatchSimulation: z.ZodOptional<z.ZodBoolean>;
|
|
6277
6427
|
chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
6278
6428
|
customGrpcUrls: z.ZodOptional<z.ZodString>;
|
|
6279
6429
|
deployer: z.ZodOptional<z.ZodObject<{
|
|
@@ -6498,7 +6648,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6498
6648
|
public?: boolean | undefined;
|
|
6499
6649
|
}>, "many">;
|
|
6500
6650
|
slip44: z.ZodOptional<z.ZodNumber>;
|
|
6501
|
-
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("
|
|
6651
|
+
technicalStack: z.ZodOptional<z.ZodNativeEnum<typeof import("@hyperlane-xyz/sdk").ChainTechnicalStack>>;
|
|
6502
6652
|
transactionOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6503
6653
|
signer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6504
6654
|
type: z.ZodOptional<z.ZodLiteral<AgentSignerKeyType.Hex>>;
|
|
@@ -6608,10 +6758,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6608
6758
|
amount: string;
|
|
6609
6759
|
} | undefined;
|
|
6610
6760
|
availability?: {
|
|
6611
|
-
status: import("
|
|
6612
|
-
reasons: import("
|
|
6761
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6762
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6613
6763
|
} | {
|
|
6614
|
-
status: import("
|
|
6764
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6615
6765
|
} | undefined;
|
|
6616
6766
|
bech32Prefix?: string | undefined;
|
|
6617
6767
|
blockExplorers?: {
|
|
@@ -6619,13 +6769,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6619
6769
|
url: string;
|
|
6620
6770
|
apiUrl: string;
|
|
6621
6771
|
apiKey?: string | undefined;
|
|
6622
|
-
family?: import("
|
|
6772
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6623
6773
|
}[] | undefined;
|
|
6624
6774
|
blocks?: {
|
|
6625
6775
|
confirmations: number;
|
|
6626
6776
|
reorgPeriod?: string | number | undefined;
|
|
6627
6777
|
estimateBlockTime?: number | undefined;
|
|
6628
6778
|
} | undefined;
|
|
6779
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
6629
6780
|
customGrpcUrls?: string | undefined;
|
|
6630
6781
|
deployer?: {
|
|
6631
6782
|
name: string;
|
|
@@ -6680,7 +6831,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6680
6831
|
public?: boolean | undefined;
|
|
6681
6832
|
}[] | undefined;
|
|
6682
6833
|
slip44?: number | undefined;
|
|
6683
|
-
technicalStack?: import("
|
|
6834
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
6684
6835
|
transactionOverrides?: Record<string, any> | undefined;
|
|
6685
6836
|
signer?: {
|
|
6686
6837
|
key: string;
|
|
@@ -6742,10 +6893,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6742
6893
|
amount: string;
|
|
6743
6894
|
} | undefined;
|
|
6744
6895
|
availability?: {
|
|
6745
|
-
status: import("
|
|
6746
|
-
reasons: import("
|
|
6896
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
6897
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6747
6898
|
} | {
|
|
6748
|
-
status: import("
|
|
6899
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6749
6900
|
} | undefined;
|
|
6750
6901
|
bech32Prefix?: string | undefined;
|
|
6751
6902
|
blockExplorers?: {
|
|
@@ -6753,13 +6904,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6753
6904
|
url: string;
|
|
6754
6905
|
apiUrl: string;
|
|
6755
6906
|
apiKey?: string | undefined;
|
|
6756
|
-
family?: import("
|
|
6907
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6757
6908
|
}[] | undefined;
|
|
6758
6909
|
blocks?: {
|
|
6759
6910
|
confirmations: number;
|
|
6760
6911
|
reorgPeriod?: string | number | undefined;
|
|
6761
6912
|
estimateBlockTime?: number | undefined;
|
|
6762
6913
|
} | undefined;
|
|
6914
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
6763
6915
|
customGrpcUrls?: string | undefined;
|
|
6764
6916
|
deployer?: {
|
|
6765
6917
|
name: string;
|
|
@@ -6814,7 +6966,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6814
6966
|
public?: boolean | undefined;
|
|
6815
6967
|
}[] | undefined;
|
|
6816
6968
|
slip44?: number | undefined;
|
|
6817
|
-
technicalStack?: import("
|
|
6969
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
6818
6970
|
transactionOverrides?: Record<string, any> | undefined;
|
|
6819
6971
|
signer?: {
|
|
6820
6972
|
key: string;
|
|
@@ -6876,10 +7028,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6876
7028
|
amount: string;
|
|
6877
7029
|
} | undefined;
|
|
6878
7030
|
availability?: {
|
|
6879
|
-
status: import("
|
|
6880
|
-
reasons: import("
|
|
7031
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7032
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
6881
7033
|
} | {
|
|
6882
|
-
status: import("
|
|
7034
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
6883
7035
|
} | undefined;
|
|
6884
7036
|
bech32Prefix?: string | undefined;
|
|
6885
7037
|
blockExplorers?: {
|
|
@@ -6887,13 +7039,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6887
7039
|
url: string;
|
|
6888
7040
|
apiUrl: string;
|
|
6889
7041
|
apiKey?: string | undefined;
|
|
6890
|
-
family?: import("
|
|
7042
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
6891
7043
|
}[] | undefined;
|
|
6892
7044
|
blocks?: {
|
|
6893
7045
|
confirmations: number;
|
|
6894
7046
|
reorgPeriod?: string | number | undefined;
|
|
6895
7047
|
estimateBlockTime?: number | undefined;
|
|
6896
7048
|
} | undefined;
|
|
7049
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
6897
7050
|
customGrpcUrls?: string | undefined;
|
|
6898
7051
|
deployer?: {
|
|
6899
7052
|
name: string;
|
|
@@ -6948,7 +7101,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6948
7101
|
public?: boolean | undefined;
|
|
6949
7102
|
}[] | undefined;
|
|
6950
7103
|
slip44?: number | undefined;
|
|
6951
|
-
technicalStack?: import("
|
|
7104
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
6952
7105
|
transactionOverrides?: Record<string, any> | undefined;
|
|
6953
7106
|
signer?: {
|
|
6954
7107
|
key: string;
|
|
@@ -7010,10 +7163,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7010
7163
|
amount: string;
|
|
7011
7164
|
} | undefined;
|
|
7012
7165
|
availability?: {
|
|
7013
|
-
status: import("
|
|
7014
|
-
reasons: import("
|
|
7166
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7167
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
7015
7168
|
} | {
|
|
7016
|
-
status: import("
|
|
7169
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
7017
7170
|
} | undefined;
|
|
7018
7171
|
bech32Prefix?: string | undefined;
|
|
7019
7172
|
blockExplorers?: {
|
|
@@ -7021,13 +7174,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7021
7174
|
url: string;
|
|
7022
7175
|
apiUrl: string;
|
|
7023
7176
|
apiKey?: string | undefined;
|
|
7024
|
-
family?: import("
|
|
7177
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
7025
7178
|
}[] | undefined;
|
|
7026
7179
|
blocks?: {
|
|
7027
7180
|
confirmations: number;
|
|
7028
7181
|
reorgPeriod?: string | number | undefined;
|
|
7029
7182
|
estimateBlockTime?: number | undefined;
|
|
7030
7183
|
} | undefined;
|
|
7184
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
7031
7185
|
customGrpcUrls?: string | undefined;
|
|
7032
7186
|
deployer?: {
|
|
7033
7187
|
name: string;
|
|
@@ -7082,7 +7236,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7082
7236
|
public?: boolean | undefined;
|
|
7083
7237
|
}[] | undefined;
|
|
7084
7238
|
slip44?: number | undefined;
|
|
7085
|
-
technicalStack?: import("
|
|
7239
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
7086
7240
|
transactionOverrides?: Record<string, any> | undefined;
|
|
7087
7241
|
signer?: {
|
|
7088
7242
|
key: string;
|
|
@@ -7144,10 +7298,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7144
7298
|
amount: string;
|
|
7145
7299
|
} | undefined;
|
|
7146
7300
|
availability?: {
|
|
7147
|
-
status: import("
|
|
7148
|
-
reasons: import("
|
|
7301
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7302
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
7149
7303
|
} | {
|
|
7150
|
-
status: import("
|
|
7304
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
7151
7305
|
} | undefined;
|
|
7152
7306
|
bech32Prefix?: string | undefined;
|
|
7153
7307
|
blockExplorers?: {
|
|
@@ -7155,13 +7309,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7155
7309
|
url: string;
|
|
7156
7310
|
apiUrl: string;
|
|
7157
7311
|
apiKey?: string | undefined;
|
|
7158
|
-
family?: import("
|
|
7312
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
7159
7313
|
}[] | undefined;
|
|
7160
7314
|
blocks?: {
|
|
7161
7315
|
confirmations: number;
|
|
7162
7316
|
reorgPeriod?: string | number | undefined;
|
|
7163
7317
|
estimateBlockTime?: number | undefined;
|
|
7164
7318
|
} | undefined;
|
|
7319
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
7165
7320
|
customGrpcUrls?: string | undefined;
|
|
7166
7321
|
deployer?: {
|
|
7167
7322
|
name: string;
|
|
@@ -7216,7 +7371,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7216
7371
|
public?: boolean | undefined;
|
|
7217
7372
|
}[] | undefined;
|
|
7218
7373
|
slip44?: number | undefined;
|
|
7219
|
-
technicalStack?: import("
|
|
7374
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
7220
7375
|
transactionOverrides?: Record<string, any> | undefined;
|
|
7221
7376
|
signer?: {
|
|
7222
7377
|
key: string;
|
|
@@ -7278,10 +7433,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7278
7433
|
amount: string;
|
|
7279
7434
|
} | undefined;
|
|
7280
7435
|
availability?: {
|
|
7281
|
-
status: import("
|
|
7282
|
-
reasons: import("
|
|
7436
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7437
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
7283
7438
|
} | {
|
|
7284
|
-
status: import("
|
|
7439
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
7285
7440
|
} | undefined;
|
|
7286
7441
|
bech32Prefix?: string | undefined;
|
|
7287
7442
|
blockExplorers?: {
|
|
@@ -7289,13 +7444,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7289
7444
|
url: string;
|
|
7290
7445
|
apiUrl: string;
|
|
7291
7446
|
apiKey?: string | undefined;
|
|
7292
|
-
family?: import("
|
|
7447
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
7293
7448
|
}[] | undefined;
|
|
7294
7449
|
blocks?: {
|
|
7295
7450
|
confirmations: number;
|
|
7296
7451
|
reorgPeriod?: string | number | undefined;
|
|
7297
7452
|
estimateBlockTime?: number | undefined;
|
|
7298
7453
|
} | undefined;
|
|
7454
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
7299
7455
|
customGrpcUrls?: string | undefined;
|
|
7300
7456
|
deployer?: {
|
|
7301
7457
|
name: string;
|
|
@@ -7350,7 +7506,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7350
7506
|
public?: boolean | undefined;
|
|
7351
7507
|
}[] | undefined;
|
|
7352
7508
|
slip44?: number | undefined;
|
|
7353
|
-
technicalStack?: import("
|
|
7509
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
7354
7510
|
transactionOverrides?: Record<string, any> | undefined;
|
|
7355
7511
|
signer?: {
|
|
7356
7512
|
key: string;
|
|
@@ -7551,10 +7707,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7551
7707
|
amount: string;
|
|
7552
7708
|
} | undefined;
|
|
7553
7709
|
availability?: {
|
|
7554
|
-
status: import("
|
|
7555
|
-
reasons: import("
|
|
7710
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7711
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
7556
7712
|
} | {
|
|
7557
|
-
status: import("
|
|
7713
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
7558
7714
|
} | undefined;
|
|
7559
7715
|
bech32Prefix?: string | undefined;
|
|
7560
7716
|
blockExplorers?: {
|
|
@@ -7562,13 +7718,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7562
7718
|
url: string;
|
|
7563
7719
|
apiUrl: string;
|
|
7564
7720
|
apiKey?: string | undefined;
|
|
7565
|
-
family?: import("
|
|
7721
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
7566
7722
|
}[] | undefined;
|
|
7567
7723
|
blocks?: {
|
|
7568
7724
|
confirmations: number;
|
|
7569
7725
|
reorgPeriod?: string | number | undefined;
|
|
7570
7726
|
estimateBlockTime?: number | undefined;
|
|
7571
7727
|
} | undefined;
|
|
7728
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
7572
7729
|
customGrpcUrls?: string | undefined;
|
|
7573
7730
|
deployer?: {
|
|
7574
7731
|
name: string;
|
|
@@ -7623,7 +7780,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7623
7780
|
public?: boolean | undefined;
|
|
7624
7781
|
}[] | undefined;
|
|
7625
7782
|
slip44?: number | undefined;
|
|
7626
|
-
technicalStack?: import("
|
|
7783
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
7627
7784
|
transactionOverrides?: Record<string, any> | undefined;
|
|
7628
7785
|
signer?: {
|
|
7629
7786
|
key: string;
|
|
@@ -7753,10 +7910,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7753
7910
|
amount: string;
|
|
7754
7911
|
} | undefined;
|
|
7755
7912
|
availability?: {
|
|
7756
|
-
status: import("
|
|
7757
|
-
reasons: import("
|
|
7913
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Disabled;
|
|
7914
|
+
reasons: import("@hyperlane-xyz/sdk").ChainDisabledReason[];
|
|
7758
7915
|
} | {
|
|
7759
|
-
status: import("
|
|
7916
|
+
status: import("@hyperlane-xyz/sdk").ChainStatus.Live;
|
|
7760
7917
|
} | undefined;
|
|
7761
7918
|
bech32Prefix?: string | undefined;
|
|
7762
7919
|
blockExplorers?: {
|
|
@@ -7764,13 +7921,14 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7764
7921
|
url: string;
|
|
7765
7922
|
apiUrl: string;
|
|
7766
7923
|
apiKey?: string | undefined;
|
|
7767
|
-
family?: import("
|
|
7924
|
+
family?: import("@hyperlane-xyz/sdk").ExplorerFamily | undefined;
|
|
7768
7925
|
}[] | undefined;
|
|
7769
7926
|
blocks?: {
|
|
7770
7927
|
confirmations: number;
|
|
7771
7928
|
reorgPeriod?: string | number | undefined;
|
|
7772
7929
|
estimateBlockTime?: number | undefined;
|
|
7773
7930
|
} | undefined;
|
|
7931
|
+
bypassBatchSimulation?: boolean | undefined;
|
|
7774
7932
|
customGrpcUrls?: string | undefined;
|
|
7775
7933
|
deployer?: {
|
|
7776
7934
|
name: string;
|
|
@@ -7825,7 +7983,7 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7825
7983
|
public?: boolean | undefined;
|
|
7826
7984
|
}[] | undefined;
|
|
7827
7985
|
slip44?: number | undefined;
|
|
7828
|
-
technicalStack?: import("
|
|
7986
|
+
technicalStack?: import("@hyperlane-xyz/sdk").ChainTechnicalStack | undefined;
|
|
7829
7987
|
transactionOverrides?: Record<string, any> | undefined;
|
|
7830
7988
|
signer?: {
|
|
7831
7989
|
key: string;
|