@hyperlane-xyz/sdk 14.2.0 → 14.4.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/consts/testChains.d.ts +2 -0
- package/dist/consts/testChains.d.ts.map +1 -1
- package/dist/consts/testChains.js +16 -0
- package/dist/consts/testChains.js.map +1 -1
- package/dist/core/HyperlaneRelayer.d.ts +8 -8
- package/dist/core/types.d.ts +132 -132
- package/dist/deploy/proxy.js +1 -1
- package/dist/fork/types.d.ts +15 -15
- package/dist/hook/types.d.ts +1 -1
- package/dist/hook/types.d.ts.map +1 -1
- package/dist/hook/types.js +1 -1
- package/dist/hook/types.js.map +1 -1
- package/dist/ica/types.d.ts +18 -18
- package/dist/index.d.ts +26 -30
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -26
- package/dist/index.js.map +1 -1
- package/dist/ism/types.d.ts +10 -10
- package/dist/metadata/agentConfig.d.ts +4 -4
- package/dist/middleware/account/InterchainAccount.d.ts +7 -7
- package/dist/middleware/account/InterchainAccount.d.ts.map +1 -1
- package/dist/middleware/account/InterchainAccount.js +10 -9
- package/dist/middleware/account/InterchainAccount.js.map +1 -1
- package/dist/middleware/account/types.d.ts +6 -6
- package/dist/providers/transactions/submitter/builder/types.d.ts +11 -11
- package/dist/providers/transactions/submitter/submitterBuilderGetter.d.ts +16 -1
- package/dist/providers/transactions/submitter/submitterBuilderGetter.d.ts.map +1 -1
- package/dist/providers/transactions/submitter/submitterBuilderGetter.js +46 -22
- package/dist/providers/transactions/submitter/submitterBuilderGetter.js.map +1 -1
- package/dist/providers/transactions/submitter/types.d.ts +4 -4
- package/dist/providers/transactions/types.d.ts +2 -2
- package/dist/router/types.d.ts +24 -24
- package/dist/token/IToken.d.ts +3 -0
- package/dist/token/IToken.d.ts.map +1 -1
- package/dist/token/IToken.js +1 -0
- package/dist/token/IToken.js.map +1 -1
- package/dist/token/checker.d.ts.map +1 -1
- package/dist/token/checker.js +2 -1
- package/dist/token/checker.js.map +1 -1
- package/dist/token/deploy.d.ts.map +1 -1
- package/dist/token/deploy.js +5 -2
- package/dist/token/deploy.js.map +1 -1
- package/dist/token/types.d.ts +103 -103
- package/dist/types.d.ts +3 -3
- package/dist/utils/cosmos.d.ts +2 -2
- package/dist/warp/WarpCore.d.ts.map +1 -1
- package/dist/warp/WarpCore.js +10 -0
- package/dist/warp/WarpCore.js.map +1 -1
- package/dist/warp/WarpCore.test.js +25 -1
- package/dist/warp/WarpCore.test.js.map +1 -1
- package/dist/warp/types.d.ts +19 -14
- package/dist/warp/types.d.ts.map +1 -1
- package/package.json +5 -5
- package/dist/middleware/liquidity-layer/LiquidityLayerApp.d.ts +0 -35
- package/dist/middleware/liquidity-layer/LiquidityLayerApp.d.ts.map +0 -1
- package/dist/middleware/liquidity-layer/LiquidityLayerApp.js +0 -171
- package/dist/middleware/liquidity-layer/LiquidityLayerApp.js.map +0 -1
- package/dist/middleware/liquidity-layer/LiquidityLayerRouterDeployer.d.ts +0 -49
- package/dist/middleware/liquidity-layer/LiquidityLayerRouterDeployer.d.ts.map +0 -1
- package/dist/middleware/liquidity-layer/LiquidityLayerRouterDeployer.js +0 -115
- package/dist/middleware/liquidity-layer/LiquidityLayerRouterDeployer.js.map +0 -1
- package/dist/middleware/liquidity-layer/contracts.d.ts +0 -10
- package/dist/middleware/liquidity-layer/contracts.d.ts.map +0 -1
- package/dist/middleware/liquidity-layer/contracts.js +0 -9
- package/dist/middleware/liquidity-layer/contracts.js.map +0 -1
- package/dist/middleware/liquidity-layer/liquidity-layer.hardhat-test.d.ts +0 -2
- package/dist/middleware/liquidity-layer/liquidity-layer.hardhat-test.d.ts.map +0 -1
- package/dist/middleware/liquidity-layer/liquidity-layer.hardhat-test.js +0 -112
- package/dist/middleware/liquidity-layer/liquidity-layer.hardhat-test.js.map +0 -1
package/dist/token/types.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const WarpRouteDeployConfigSchemaErrors: {
|
|
|
9
9
|
NO_SYNTHETIC_ONLY: string;
|
|
10
10
|
};
|
|
11
11
|
export declare const contractVersionMatchesDependency: (version: string) => boolean;
|
|
12
|
-
export declare const VERSION_ERROR_MESSAGE = "Contract version must match the @hyperlane-xyz/core dependency version (
|
|
12
|
+
export declare const VERSION_ERROR_MESSAGE = "Contract version must match the @hyperlane-xyz/core dependency version (9.0.0)";
|
|
13
13
|
export declare const TokenMetadataSchema: z.ZodObject<{
|
|
14
14
|
name: z.ZodString;
|
|
15
15
|
symbol: z.ZodString;
|
|
@@ -201,8 +201,8 @@ export declare const OpL1TokenConfigSchema: z.ZodObject<{
|
|
|
201
201
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
202
202
|
}, "strip", z.ZodTypeAny, {
|
|
203
203
|
type: TokenType.nativeOpL1;
|
|
204
|
-
urls: string[];
|
|
205
204
|
version: number;
|
|
205
|
+
urls: string[];
|
|
206
206
|
portal: string;
|
|
207
207
|
symbol?: string | undefined;
|
|
208
208
|
name?: string | undefined;
|
|
@@ -218,8 +218,8 @@ export declare const OpL1TokenConfigSchema: z.ZodObject<{
|
|
|
218
218
|
ownerOverrides?: Record<string, string> | undefined;
|
|
219
219
|
}, {
|
|
220
220
|
type: TokenType.nativeOpL1;
|
|
221
|
-
urls: string[];
|
|
222
221
|
version: number;
|
|
222
|
+
urls: string[];
|
|
223
223
|
portal: string;
|
|
224
224
|
symbol?: string | undefined;
|
|
225
225
|
name?: string | undefined;
|
|
@@ -237,8 +237,8 @@ export declare const OpL1TokenConfigSchema: z.ZodObject<{
|
|
|
237
237
|
export type OpL1TokenConfig = z.infer<typeof OpL1TokenConfigSchema>;
|
|
238
238
|
export declare const isOpL1TokenConfig: (config: unknown) => config is {
|
|
239
239
|
type: TokenType.nativeOpL1;
|
|
240
|
-
urls: string[];
|
|
241
240
|
version: number;
|
|
241
|
+
urls: string[];
|
|
242
242
|
portal: string;
|
|
243
243
|
symbol?: string | undefined;
|
|
244
244
|
name?: string | undefined;
|
|
@@ -968,8 +968,8 @@ export declare const HypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
968
968
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
969
969
|
}, "strip", z.ZodTypeAny, {
|
|
970
970
|
type: TokenType.nativeOpL1;
|
|
971
|
-
urls: string[];
|
|
972
971
|
version: number;
|
|
972
|
+
urls: string[];
|
|
973
973
|
portal: string;
|
|
974
974
|
symbol?: string | undefined;
|
|
975
975
|
name?: string | undefined;
|
|
@@ -985,8 +985,8 @@ export declare const HypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
985
985
|
ownerOverrides?: Record<string, string> | undefined;
|
|
986
986
|
}, {
|
|
987
987
|
type: TokenType.nativeOpL1;
|
|
988
|
-
urls: string[];
|
|
989
988
|
version: number;
|
|
989
|
+
urls: string[];
|
|
990
990
|
portal: string;
|
|
991
991
|
symbol?: string | undefined;
|
|
992
992
|
name?: string | undefined;
|
|
@@ -1417,8 +1417,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1417
1417
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
1418
1418
|
}, "strip", z.ZodTypeAny, {
|
|
1419
1419
|
type: TokenType.nativeOpL1;
|
|
1420
|
-
urls: string[];
|
|
1421
1420
|
version: number;
|
|
1421
|
+
urls: string[];
|
|
1422
1422
|
portal: string;
|
|
1423
1423
|
symbol?: string | undefined;
|
|
1424
1424
|
name?: string | undefined;
|
|
@@ -1434,8 +1434,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1434
1434
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1435
1435
|
}, {
|
|
1436
1436
|
type: TokenType.nativeOpL1;
|
|
1437
|
-
urls: string[];
|
|
1438
1437
|
version: number;
|
|
1438
|
+
urls: string[];
|
|
1439
1439
|
portal: string;
|
|
1440
1440
|
symbol?: string | undefined;
|
|
1441
1441
|
name?: string | undefined;
|
|
@@ -1946,12 +1946,12 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1946
1946
|
nativeBridge: z.ZodString;
|
|
1947
1947
|
}, "strip", z.ZodTypeAny, {
|
|
1948
1948
|
type: IsmType.OP_STACK;
|
|
1949
|
-
origin: string;
|
|
1950
1949
|
nativeBridge: string;
|
|
1950
|
+
origin: string;
|
|
1951
1951
|
}, {
|
|
1952
1952
|
type: IsmType.OP_STACK;
|
|
1953
|
-
origin: string;
|
|
1954
1953
|
nativeBridge: string;
|
|
1954
|
+
origin: string;
|
|
1955
1955
|
}>, z.ZodIntersection<z.ZodObject<{
|
|
1956
1956
|
owner: z.ZodString;
|
|
1957
1957
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -1992,11 +1992,11 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1992
1992
|
validators: z.ZodArray<z.ZodString, "many">;
|
|
1993
1993
|
threshold: z.ZodNumber;
|
|
1994
1994
|
}, "strip", z.ZodTypeAny, {
|
|
1995
|
-
validators: string[];
|
|
1996
1995
|
threshold: number;
|
|
1997
|
-
}, {
|
|
1998
1996
|
validators: string[];
|
|
1997
|
+
}, {
|
|
1999
1998
|
threshold: number;
|
|
1999
|
+
validators: string[];
|
|
2000
2000
|
}>, z.ZodObject<{
|
|
2001
2001
|
type: z.ZodUnion<[z.ZodLiteral<IsmType.MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.MESSAGE_ID_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MESSAGE_ID_MULTISIG>]>;
|
|
2002
2002
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2142,8 +2142,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2142
2142
|
destinationChain: string;
|
|
2143
2143
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
2144
2144
|
interchainSecurityModule?: string | ({
|
|
2145
|
-
validators: string[];
|
|
2146
2145
|
threshold: number;
|
|
2146
|
+
validators: string[];
|
|
2147
2147
|
} & {
|
|
2148
2148
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
2149
2149
|
}) | ({
|
|
@@ -2164,8 +2164,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2164
2164
|
type: IsmType.PAUSABLE;
|
|
2165
2165
|
}) | {
|
|
2166
2166
|
type: IsmType.OP_STACK;
|
|
2167
|
-
origin: string;
|
|
2168
2167
|
nativeBridge: string;
|
|
2168
|
+
origin: string;
|
|
2169
2169
|
} | {
|
|
2170
2170
|
type: IsmType.TRUSTED_RELAYER;
|
|
2171
2171
|
relayer: string;
|
|
@@ -2246,8 +2246,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2246
2246
|
destinationChain: string;
|
|
2247
2247
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
2248
2248
|
interchainSecurityModule?: string | ({
|
|
2249
|
-
validators: string[];
|
|
2250
2249
|
threshold: number;
|
|
2250
|
+
validators: string[];
|
|
2251
2251
|
} & {
|
|
2252
2252
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
2253
2253
|
}) | ({
|
|
@@ -2268,8 +2268,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2268
2268
|
type: IsmType.PAUSABLE;
|
|
2269
2269
|
}) | {
|
|
2270
2270
|
type: IsmType.OP_STACK;
|
|
2271
|
-
origin: string;
|
|
2272
2271
|
nativeBridge: string;
|
|
2272
|
+
origin: string;
|
|
2273
2273
|
} | {
|
|
2274
2274
|
type: IsmType.TRUSTED_RELAYER;
|
|
2275
2275
|
relayer: string;
|
|
@@ -2429,8 +2429,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2429
2429
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
2430
2430
|
}, "strip", z.ZodTypeAny, {
|
|
2431
2431
|
type: TokenType.nativeOpL1;
|
|
2432
|
-
urls: string[];
|
|
2433
2432
|
version: number;
|
|
2433
|
+
urls: string[];
|
|
2434
2434
|
portal: string;
|
|
2435
2435
|
symbol?: string | undefined;
|
|
2436
2436
|
name?: string | undefined;
|
|
@@ -2446,8 +2446,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2446
2446
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2447
2447
|
}, {
|
|
2448
2448
|
type: TokenType.nativeOpL1;
|
|
2449
|
-
urls: string[];
|
|
2450
2449
|
version: number;
|
|
2450
|
+
urls: string[];
|
|
2451
2451
|
portal: string;
|
|
2452
2452
|
symbol?: string | undefined;
|
|
2453
2453
|
name?: string | undefined;
|
|
@@ -2759,9 +2759,9 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2759
2759
|
allowedRebalancers?: string[] | undefined;
|
|
2760
2760
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2761
2761
|
}>]>, z.ZodObject<{
|
|
2762
|
+
gas: z.ZodOptional<z.ZodNumber>;
|
|
2762
2763
|
owner: z.ZodString;
|
|
2763
2764
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2764
|
-
gas: z.ZodOptional<z.ZodNumber>;
|
|
2765
2765
|
proxyAdmin: z.ZodOptional<z.ZodObject<{
|
|
2766
2766
|
owner: z.ZodString;
|
|
2767
2767
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -2958,12 +2958,12 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2958
2958
|
nativeBridge: z.ZodString;
|
|
2959
2959
|
}, "strip", z.ZodTypeAny, {
|
|
2960
2960
|
type: IsmType.OP_STACK;
|
|
2961
|
-
origin: string;
|
|
2962
2961
|
nativeBridge: string;
|
|
2962
|
+
origin: string;
|
|
2963
2963
|
}, {
|
|
2964
2964
|
type: IsmType.OP_STACK;
|
|
2965
|
-
origin: string;
|
|
2966
2965
|
nativeBridge: string;
|
|
2966
|
+
origin: string;
|
|
2967
2967
|
}>, z.ZodIntersection<z.ZodObject<{
|
|
2968
2968
|
owner: z.ZodString;
|
|
2969
2969
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -3004,11 +3004,11 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3004
3004
|
validators: z.ZodArray<z.ZodString, "many">;
|
|
3005
3005
|
threshold: z.ZodNumber;
|
|
3006
3006
|
}, "strip", z.ZodTypeAny, {
|
|
3007
|
-
validators: string[];
|
|
3008
3007
|
threshold: number;
|
|
3009
|
-
}, {
|
|
3010
3008
|
validators: string[];
|
|
3009
|
+
}, {
|
|
3011
3010
|
threshold: number;
|
|
3011
|
+
validators: string[];
|
|
3012
3012
|
}>, z.ZodObject<{
|
|
3013
3013
|
type: z.ZodUnion<[z.ZodLiteral<IsmType.MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.MESSAGE_ID_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MESSAGE_ID_MULTISIG>]>;
|
|
3014
3014
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3097,8 +3097,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3097
3097
|
mailbox: z.ZodOptional<z.ZodString>;
|
|
3098
3098
|
}, "strip", z.ZodTypeAny, {
|
|
3099
3099
|
owner: string;
|
|
3100
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
3101
3100
|
gas?: number | undefined;
|
|
3101
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
3102
3102
|
proxyAdmin?: {
|
|
3103
3103
|
owner: string;
|
|
3104
3104
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -3154,8 +3154,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3154
3154
|
destinationChain: string;
|
|
3155
3155
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
3156
3156
|
interchainSecurityModule?: string | ({
|
|
3157
|
-
validators: string[];
|
|
3158
3157
|
threshold: number;
|
|
3158
|
+
validators: string[];
|
|
3159
3159
|
} & {
|
|
3160
3160
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
3161
3161
|
}) | ({
|
|
@@ -3176,8 +3176,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3176
3176
|
type: IsmType.PAUSABLE;
|
|
3177
3177
|
}) | {
|
|
3178
3178
|
type: IsmType.OP_STACK;
|
|
3179
|
-
origin: string;
|
|
3180
3179
|
nativeBridge: string;
|
|
3180
|
+
origin: string;
|
|
3181
3181
|
} | {
|
|
3182
3182
|
type: IsmType.TRUSTED_RELAYER;
|
|
3183
3183
|
relayer: string;
|
|
@@ -3201,8 +3201,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3201
3201
|
mailbox?: string | undefined;
|
|
3202
3202
|
}, {
|
|
3203
3203
|
owner: string;
|
|
3204
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
3205
3204
|
gas?: number | undefined;
|
|
3205
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
3206
3206
|
proxyAdmin?: {
|
|
3207
3207
|
owner: string;
|
|
3208
3208
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -3258,8 +3258,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3258
3258
|
destinationChain: string;
|
|
3259
3259
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
3260
3260
|
interchainSecurityModule?: string | ({
|
|
3261
|
-
validators: string[];
|
|
3262
3261
|
threshold: number;
|
|
3262
|
+
validators: string[];
|
|
3263
3263
|
} & {
|
|
3264
3264
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
3265
3265
|
}) | ({
|
|
@@ -3280,8 +3280,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3280
3280
|
type: IsmType.PAUSABLE;
|
|
3281
3281
|
}) | {
|
|
3282
3282
|
type: IsmType.OP_STACK;
|
|
3283
|
-
origin: string;
|
|
3284
3283
|
nativeBridge: string;
|
|
3284
|
+
origin: string;
|
|
3285
3285
|
} | {
|
|
3286
3286
|
type: IsmType.TRUSTED_RELAYER;
|
|
3287
3287
|
relayer: string;
|
|
@@ -3437,8 +3437,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3437
3437
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
3438
3438
|
}, "strip", z.ZodTypeAny, {
|
|
3439
3439
|
type: TokenType.nativeOpL1;
|
|
3440
|
-
urls: string[];
|
|
3441
3440
|
version: number;
|
|
3441
|
+
urls: string[];
|
|
3442
3442
|
portal: string;
|
|
3443
3443
|
symbol?: string | undefined;
|
|
3444
3444
|
name?: string | undefined;
|
|
@@ -3454,8 +3454,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3454
3454
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3455
3455
|
}, {
|
|
3456
3456
|
type: TokenType.nativeOpL1;
|
|
3457
|
-
urls: string[];
|
|
3458
3457
|
version: number;
|
|
3458
|
+
urls: string[];
|
|
3459
3459
|
portal: string;
|
|
3460
3460
|
symbol?: string | undefined;
|
|
3461
3461
|
name?: string | undefined;
|
|
@@ -3767,9 +3767,9 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3767
3767
|
allowedRebalancers?: string[] | undefined;
|
|
3768
3768
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3769
3769
|
}>]>, z.ZodObject<{
|
|
3770
|
+
gas: z.ZodOptional<z.ZodNumber>;
|
|
3770
3771
|
owner: z.ZodString;
|
|
3771
3772
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3772
|
-
gas: z.ZodOptional<z.ZodNumber>;
|
|
3773
3773
|
proxyAdmin: z.ZodOptional<z.ZodObject<{
|
|
3774
3774
|
owner: z.ZodString;
|
|
3775
3775
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -3966,12 +3966,12 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3966
3966
|
nativeBridge: z.ZodString;
|
|
3967
3967
|
}, "strip", z.ZodTypeAny, {
|
|
3968
3968
|
type: IsmType.OP_STACK;
|
|
3969
|
-
origin: string;
|
|
3970
3969
|
nativeBridge: string;
|
|
3970
|
+
origin: string;
|
|
3971
3971
|
}, {
|
|
3972
3972
|
type: IsmType.OP_STACK;
|
|
3973
|
-
origin: string;
|
|
3974
3973
|
nativeBridge: string;
|
|
3974
|
+
origin: string;
|
|
3975
3975
|
}>, z.ZodIntersection<z.ZodObject<{
|
|
3976
3976
|
owner: z.ZodString;
|
|
3977
3977
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -4012,11 +4012,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4012
4012
|
validators: z.ZodArray<z.ZodString, "many">;
|
|
4013
4013
|
threshold: z.ZodNumber;
|
|
4014
4014
|
}, "strip", z.ZodTypeAny, {
|
|
4015
|
-
validators: string[];
|
|
4016
4015
|
threshold: number;
|
|
4017
|
-
}, {
|
|
4018
4016
|
validators: string[];
|
|
4017
|
+
}, {
|
|
4019
4018
|
threshold: number;
|
|
4019
|
+
validators: string[];
|
|
4020
4020
|
}>, z.ZodObject<{
|
|
4021
4021
|
type: z.ZodUnion<[z.ZodLiteral<IsmType.MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.MESSAGE_ID_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MESSAGE_ID_MULTISIG>]>;
|
|
4022
4022
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4105,8 +4105,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4105
4105
|
mailbox: z.ZodOptional<z.ZodString>;
|
|
4106
4106
|
}, "strip", z.ZodTypeAny, {
|
|
4107
4107
|
owner: string;
|
|
4108
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
4109
4108
|
gas?: number | undefined;
|
|
4109
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
4110
4110
|
proxyAdmin?: {
|
|
4111
4111
|
owner: string;
|
|
4112
4112
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -4162,8 +4162,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4162
4162
|
destinationChain: string;
|
|
4163
4163
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
4164
4164
|
interchainSecurityModule?: string | ({
|
|
4165
|
-
validators: string[];
|
|
4166
4165
|
threshold: number;
|
|
4166
|
+
validators: string[];
|
|
4167
4167
|
} & {
|
|
4168
4168
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
4169
4169
|
}) | ({
|
|
@@ -4184,8 +4184,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4184
4184
|
type: IsmType.PAUSABLE;
|
|
4185
4185
|
}) | {
|
|
4186
4186
|
type: IsmType.OP_STACK;
|
|
4187
|
-
origin: string;
|
|
4188
4187
|
nativeBridge: string;
|
|
4188
|
+
origin: string;
|
|
4189
4189
|
} | {
|
|
4190
4190
|
type: IsmType.TRUSTED_RELAYER;
|
|
4191
4191
|
relayer: string;
|
|
@@ -4209,8 +4209,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4209
4209
|
mailbox?: string | undefined;
|
|
4210
4210
|
}, {
|
|
4211
4211
|
owner: string;
|
|
4212
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
4213
4212
|
gas?: number | undefined;
|
|
4213
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
4214
4214
|
proxyAdmin?: {
|
|
4215
4215
|
owner: string;
|
|
4216
4216
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -4266,8 +4266,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4266
4266
|
destinationChain: string;
|
|
4267
4267
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
4268
4268
|
interchainSecurityModule?: string | ({
|
|
4269
|
-
validators: string[];
|
|
4270
4269
|
threshold: number;
|
|
4270
|
+
validators: string[];
|
|
4271
4271
|
} & {
|
|
4272
4272
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
4273
4273
|
}) | ({
|
|
@@ -4288,8 +4288,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4288
4288
|
type: IsmType.PAUSABLE;
|
|
4289
4289
|
}) | {
|
|
4290
4290
|
type: IsmType.OP_STACK;
|
|
4291
|
-
origin: string;
|
|
4292
4291
|
nativeBridge: string;
|
|
4292
|
+
origin: string;
|
|
4293
4293
|
} | {
|
|
4294
4294
|
type: IsmType.TRUSTED_RELAYER;
|
|
4295
4295
|
relayer: string;
|
|
@@ -4354,8 +4354,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4354
4354
|
allowedRebalancers?: string[] | undefined;
|
|
4355
4355
|
} | {
|
|
4356
4356
|
type: TokenType.nativeOpL1;
|
|
4357
|
-
urls: string[];
|
|
4358
4357
|
version: number;
|
|
4358
|
+
urls: string[];
|
|
4359
4359
|
portal: string;
|
|
4360
4360
|
symbol?: string | undefined;
|
|
4361
4361
|
name?: string | undefined;
|
|
@@ -4448,8 +4448,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4448
4448
|
contractVersion?: string | undefined;
|
|
4449
4449
|
}) & {
|
|
4450
4450
|
owner: string;
|
|
4451
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
4452
4451
|
gas?: number | undefined;
|
|
4452
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
4453
4453
|
proxyAdmin?: {
|
|
4454
4454
|
owner: string;
|
|
4455
4455
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -4505,8 +4505,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4505
4505
|
destinationChain: string;
|
|
4506
4506
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
4507
4507
|
interchainSecurityModule?: string | ({
|
|
4508
|
-
validators: string[];
|
|
4509
4508
|
threshold: number;
|
|
4509
|
+
validators: string[];
|
|
4510
4510
|
} & {
|
|
4511
4511
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
4512
4512
|
}) | ({
|
|
@@ -4527,8 +4527,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4527
4527
|
type: IsmType.PAUSABLE;
|
|
4528
4528
|
}) | {
|
|
4529
4529
|
type: IsmType.OP_STACK;
|
|
4530
|
-
origin: string;
|
|
4531
4530
|
nativeBridge: string;
|
|
4531
|
+
origin: string;
|
|
4532
4532
|
} | {
|
|
4533
4533
|
type: IsmType.TRUSTED_RELAYER;
|
|
4534
4534
|
relayer: string;
|
|
@@ -4582,8 +4582,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4582
4582
|
allowedRebalancers?: string[] | undefined;
|
|
4583
4583
|
} | {
|
|
4584
4584
|
type: TokenType.nativeOpL1;
|
|
4585
|
-
urls: string[];
|
|
4586
4585
|
version: number;
|
|
4586
|
+
urls: string[];
|
|
4587
4587
|
portal: string;
|
|
4588
4588
|
symbol?: string | undefined;
|
|
4589
4589
|
name?: string | undefined;
|
|
@@ -4676,8 +4676,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4676
4676
|
contractVersion?: string | undefined;
|
|
4677
4677
|
}) & {
|
|
4678
4678
|
owner: string;
|
|
4679
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
4680
4679
|
gas?: number | undefined;
|
|
4680
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
4681
4681
|
proxyAdmin?: {
|
|
4682
4682
|
owner: string;
|
|
4683
4683
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -4733,8 +4733,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4733
4733
|
destinationChain: string;
|
|
4734
4734
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
4735
4735
|
interchainSecurityModule?: string | ({
|
|
4736
|
-
validators: string[];
|
|
4737
4736
|
threshold: number;
|
|
4737
|
+
validators: string[];
|
|
4738
4738
|
} & {
|
|
4739
4739
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
4740
4740
|
}) | ({
|
|
@@ -4755,8 +4755,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4755
4755
|
type: IsmType.PAUSABLE;
|
|
4756
4756
|
}) | {
|
|
4757
4757
|
type: IsmType.OP_STACK;
|
|
4758
|
-
origin: string;
|
|
4759
4758
|
nativeBridge: string;
|
|
4759
|
+
origin: string;
|
|
4760
4760
|
} | {
|
|
4761
4761
|
type: IsmType.TRUSTED_RELAYER;
|
|
4762
4762
|
relayer: string;
|
|
@@ -4815,8 +4815,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4815
4815
|
allowedRebalancers?: string[] | undefined;
|
|
4816
4816
|
} | {
|
|
4817
4817
|
type: TokenType.nativeOpL1;
|
|
4818
|
-
urls: string[];
|
|
4819
4818
|
version: number;
|
|
4819
|
+
urls: string[];
|
|
4820
4820
|
portal: string;
|
|
4821
4821
|
symbol?: string | undefined;
|
|
4822
4822
|
name?: string | undefined;
|
|
@@ -4909,8 +4909,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4909
4909
|
contractVersion?: string | undefined;
|
|
4910
4910
|
}) & {
|
|
4911
4911
|
owner: string;
|
|
4912
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
4913
4912
|
gas?: number | undefined;
|
|
4913
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
4914
4914
|
proxyAdmin?: {
|
|
4915
4915
|
owner: string;
|
|
4916
4916
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -4966,8 +4966,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4966
4966
|
destinationChain: string;
|
|
4967
4967
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
4968
4968
|
interchainSecurityModule?: string | ({
|
|
4969
|
-
validators: string[];
|
|
4970
4969
|
threshold: number;
|
|
4970
|
+
validators: string[];
|
|
4971
4971
|
} & {
|
|
4972
4972
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
4973
4973
|
}) | ({
|
|
@@ -4988,8 +4988,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4988
4988
|
type: IsmType.PAUSABLE;
|
|
4989
4989
|
}) | {
|
|
4990
4990
|
type: IsmType.OP_STACK;
|
|
4991
|
-
origin: string;
|
|
4992
4991
|
nativeBridge: string;
|
|
4992
|
+
origin: string;
|
|
4993
4993
|
} | {
|
|
4994
4994
|
type: IsmType.TRUSTED_RELAYER;
|
|
4995
4995
|
relayer: string;
|
|
@@ -5043,8 +5043,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5043
5043
|
allowedRebalancers?: string[] | undefined;
|
|
5044
5044
|
} | {
|
|
5045
5045
|
type: TokenType.nativeOpL1;
|
|
5046
|
-
urls: string[];
|
|
5047
5046
|
version: number;
|
|
5047
|
+
urls: string[];
|
|
5048
5048
|
portal: string;
|
|
5049
5049
|
symbol?: string | undefined;
|
|
5050
5050
|
name?: string | undefined;
|
|
@@ -5137,8 +5137,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5137
5137
|
contractVersion?: string | undefined;
|
|
5138
5138
|
}) & {
|
|
5139
5139
|
owner: string;
|
|
5140
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
5141
5140
|
gas?: number | undefined;
|
|
5141
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
5142
5142
|
proxyAdmin?: {
|
|
5143
5143
|
owner: string;
|
|
5144
5144
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -5194,8 +5194,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5194
5194
|
destinationChain: string;
|
|
5195
5195
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
5196
5196
|
interchainSecurityModule?: string | ({
|
|
5197
|
-
validators: string[];
|
|
5198
5197
|
threshold: number;
|
|
5198
|
+
validators: string[];
|
|
5199
5199
|
} & {
|
|
5200
5200
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
5201
5201
|
}) | ({
|
|
@@ -5216,8 +5216,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5216
5216
|
type: IsmType.PAUSABLE;
|
|
5217
5217
|
}) | {
|
|
5218
5218
|
type: IsmType.OP_STACK;
|
|
5219
|
-
origin: string;
|
|
5220
5219
|
nativeBridge: string;
|
|
5220
|
+
origin: string;
|
|
5221
5221
|
} | {
|
|
5222
5222
|
type: IsmType.TRUSTED_RELAYER;
|
|
5223
5223
|
relayer: string;
|
|
@@ -5276,8 +5276,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5276
5276
|
allowedRebalancers?: string[] | undefined;
|
|
5277
5277
|
} | {
|
|
5278
5278
|
type: TokenType.nativeOpL1;
|
|
5279
|
-
urls: string[];
|
|
5280
5279
|
version: number;
|
|
5280
|
+
urls: string[];
|
|
5281
5281
|
portal: string;
|
|
5282
5282
|
symbol?: string | undefined;
|
|
5283
5283
|
name?: string | undefined;
|
|
@@ -5370,8 +5370,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5370
5370
|
contractVersion?: string | undefined;
|
|
5371
5371
|
}) & {
|
|
5372
5372
|
owner: string;
|
|
5373
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
5374
5373
|
gas?: number | undefined;
|
|
5374
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
5375
5375
|
proxyAdmin?: {
|
|
5376
5376
|
owner: string;
|
|
5377
5377
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -5427,8 +5427,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5427
5427
|
destinationChain: string;
|
|
5428
5428
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
5429
5429
|
interchainSecurityModule?: string | ({
|
|
5430
|
-
validators: string[];
|
|
5431
5430
|
threshold: number;
|
|
5431
|
+
validators: string[];
|
|
5432
5432
|
} & {
|
|
5433
5433
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
5434
5434
|
}) | ({
|
|
@@ -5449,8 +5449,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5449
5449
|
type: IsmType.PAUSABLE;
|
|
5450
5450
|
}) | {
|
|
5451
5451
|
type: IsmType.OP_STACK;
|
|
5452
|
-
origin: string;
|
|
5453
5452
|
nativeBridge: string;
|
|
5453
|
+
origin: string;
|
|
5454
5454
|
} | {
|
|
5455
5455
|
type: IsmType.TRUSTED_RELAYER;
|
|
5456
5456
|
relayer: string;
|
|
@@ -5504,8 +5504,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5504
5504
|
allowedRebalancers?: string[] | undefined;
|
|
5505
5505
|
} | {
|
|
5506
5506
|
type: TokenType.nativeOpL1;
|
|
5507
|
-
urls: string[];
|
|
5508
5507
|
version: number;
|
|
5508
|
+
urls: string[];
|
|
5509
5509
|
portal: string;
|
|
5510
5510
|
symbol?: string | undefined;
|
|
5511
5511
|
name?: string | undefined;
|
|
@@ -5598,8 +5598,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5598
5598
|
contractVersion?: string | undefined;
|
|
5599
5599
|
}) & {
|
|
5600
5600
|
owner: string;
|
|
5601
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
5602
5601
|
gas?: number | undefined;
|
|
5602
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
5603
5603
|
proxyAdmin?: {
|
|
5604
5604
|
owner: string;
|
|
5605
5605
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -5655,8 +5655,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5655
5655
|
destinationChain: string;
|
|
5656
5656
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
5657
5657
|
interchainSecurityModule?: string | ({
|
|
5658
|
-
validators: string[];
|
|
5659
5658
|
threshold: number;
|
|
5659
|
+
validators: string[];
|
|
5660
5660
|
} & {
|
|
5661
5661
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
5662
5662
|
}) | ({
|
|
@@ -5677,8 +5677,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5677
5677
|
type: IsmType.PAUSABLE;
|
|
5678
5678
|
}) | {
|
|
5679
5679
|
type: IsmType.OP_STACK;
|
|
5680
|
-
origin: string;
|
|
5681
5680
|
nativeBridge: string;
|
|
5681
|
+
origin: string;
|
|
5682
5682
|
} | {
|
|
5683
5683
|
type: IsmType.TRUSTED_RELAYER;
|
|
5684
5684
|
relayer: string;
|
|
@@ -5828,8 +5828,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
5828
5828
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
5829
5829
|
}, "strip", z.ZodTypeAny, {
|
|
5830
5830
|
type: TokenType.nativeOpL1;
|
|
5831
|
-
urls: string[];
|
|
5832
5831
|
version: number;
|
|
5832
|
+
urls: string[];
|
|
5833
5833
|
portal: string;
|
|
5834
5834
|
symbol?: string | undefined;
|
|
5835
5835
|
name?: string | undefined;
|
|
@@ -5845,8 +5845,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
5845
5845
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5846
5846
|
}, {
|
|
5847
5847
|
type: TokenType.nativeOpL1;
|
|
5848
|
-
urls: string[];
|
|
5849
5848
|
version: number;
|
|
5849
|
+
urls: string[];
|
|
5850
5850
|
portal: string;
|
|
5851
5851
|
symbol?: string | undefined;
|
|
5852
5852
|
name?: string | undefined;
|
|
@@ -6158,9 +6158,9 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6158
6158
|
allowedRebalancers?: string[] | undefined;
|
|
6159
6159
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6160
6160
|
}>]>, z.ZodObject<{
|
|
6161
|
+
gas: z.ZodOptional<z.ZodNumber>;
|
|
6161
6162
|
owner: z.ZodString;
|
|
6162
6163
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6163
|
-
gas: z.ZodOptional<z.ZodNumber>;
|
|
6164
6164
|
proxyAdmin: z.ZodOptional<z.ZodObject<{
|
|
6165
6165
|
owner: z.ZodString;
|
|
6166
6166
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -6357,12 +6357,12 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6357
6357
|
nativeBridge: z.ZodString;
|
|
6358
6358
|
}, "strip", z.ZodTypeAny, {
|
|
6359
6359
|
type: IsmType.OP_STACK;
|
|
6360
|
-
origin: string;
|
|
6361
6360
|
nativeBridge: string;
|
|
6361
|
+
origin: string;
|
|
6362
6362
|
}, {
|
|
6363
6363
|
type: IsmType.OP_STACK;
|
|
6364
|
-
origin: string;
|
|
6365
6364
|
nativeBridge: string;
|
|
6365
|
+
origin: string;
|
|
6366
6366
|
}>, z.ZodIntersection<z.ZodObject<{
|
|
6367
6367
|
owner: z.ZodString;
|
|
6368
6368
|
ownerOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -6403,11 +6403,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6403
6403
|
validators: z.ZodArray<z.ZodString, "many">;
|
|
6404
6404
|
threshold: z.ZodNumber;
|
|
6405
6405
|
}, "strip", z.ZodTypeAny, {
|
|
6406
|
-
validators: string[];
|
|
6407
6406
|
threshold: number;
|
|
6408
|
-
}, {
|
|
6409
6407
|
validators: string[];
|
|
6408
|
+
}, {
|
|
6410
6409
|
threshold: number;
|
|
6410
|
+
validators: string[];
|
|
6411
6411
|
}>, z.ZodObject<{
|
|
6412
6412
|
type: z.ZodUnion<[z.ZodLiteral<IsmType.MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.MESSAGE_ID_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MERKLE_ROOT_MULTISIG>, z.ZodLiteral<IsmType.STORAGE_MESSAGE_ID_MULTISIG>]>;
|
|
6413
6413
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6496,8 +6496,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6496
6496
|
mailbox: z.ZodOptional<z.ZodString>;
|
|
6497
6497
|
}, "strip", z.ZodTypeAny, {
|
|
6498
6498
|
owner: string;
|
|
6499
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
6500
6499
|
gas?: number | undefined;
|
|
6500
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
6501
6501
|
proxyAdmin?: {
|
|
6502
6502
|
owner: string;
|
|
6503
6503
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -6553,8 +6553,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6553
6553
|
destinationChain: string;
|
|
6554
6554
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
6555
6555
|
interchainSecurityModule?: string | ({
|
|
6556
|
-
validators: string[];
|
|
6557
6556
|
threshold: number;
|
|
6557
|
+
validators: string[];
|
|
6558
6558
|
} & {
|
|
6559
6559
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
6560
6560
|
}) | ({
|
|
@@ -6575,8 +6575,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6575
6575
|
type: IsmType.PAUSABLE;
|
|
6576
6576
|
}) | {
|
|
6577
6577
|
type: IsmType.OP_STACK;
|
|
6578
|
-
origin: string;
|
|
6579
6578
|
nativeBridge: string;
|
|
6579
|
+
origin: string;
|
|
6580
6580
|
} | {
|
|
6581
6581
|
type: IsmType.TRUSTED_RELAYER;
|
|
6582
6582
|
relayer: string;
|
|
@@ -6600,8 +6600,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6600
6600
|
mailbox?: string | undefined;
|
|
6601
6601
|
}, {
|
|
6602
6602
|
owner: string;
|
|
6603
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
6604
6603
|
gas?: number | undefined;
|
|
6604
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
6605
6605
|
proxyAdmin?: {
|
|
6606
6606
|
owner: string;
|
|
6607
6607
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -6657,8 +6657,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6657
6657
|
destinationChain: string;
|
|
6658
6658
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
6659
6659
|
interchainSecurityModule?: string | ({
|
|
6660
|
-
validators: string[];
|
|
6661
6660
|
threshold: number;
|
|
6661
|
+
validators: string[];
|
|
6662
6662
|
} & {
|
|
6663
6663
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
6664
6664
|
}) | ({
|
|
@@ -6679,8 +6679,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6679
6679
|
type: IsmType.PAUSABLE;
|
|
6680
6680
|
}) | {
|
|
6681
6681
|
type: IsmType.OP_STACK;
|
|
6682
|
-
origin: string;
|
|
6683
6682
|
nativeBridge: string;
|
|
6683
|
+
origin: string;
|
|
6684
6684
|
} | {
|
|
6685
6685
|
type: IsmType.TRUSTED_RELAYER;
|
|
6686
6686
|
relayer: string;
|
|
@@ -6745,8 +6745,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6745
6745
|
allowedRebalancers?: string[] | undefined;
|
|
6746
6746
|
} | {
|
|
6747
6747
|
type: TokenType.nativeOpL1;
|
|
6748
|
-
urls: string[];
|
|
6749
6748
|
version: number;
|
|
6749
|
+
urls: string[];
|
|
6750
6750
|
portal: string;
|
|
6751
6751
|
symbol?: string | undefined;
|
|
6752
6752
|
name?: string | undefined;
|
|
@@ -6839,8 +6839,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6839
6839
|
contractVersion?: string | undefined;
|
|
6840
6840
|
}) & {
|
|
6841
6841
|
owner: string;
|
|
6842
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
6843
6842
|
gas?: number | undefined;
|
|
6843
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
6844
6844
|
proxyAdmin?: {
|
|
6845
6845
|
owner: string;
|
|
6846
6846
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -6896,8 +6896,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6896
6896
|
destinationChain: string;
|
|
6897
6897
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
6898
6898
|
interchainSecurityModule?: string | ({
|
|
6899
|
-
validators: string[];
|
|
6900
6899
|
threshold: number;
|
|
6900
|
+
validators: string[];
|
|
6901
6901
|
} & {
|
|
6902
6902
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
6903
6903
|
}) | ({
|
|
@@ -6918,8 +6918,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6918
6918
|
type: IsmType.PAUSABLE;
|
|
6919
6919
|
}) | {
|
|
6920
6920
|
type: IsmType.OP_STACK;
|
|
6921
|
-
origin: string;
|
|
6922
6921
|
nativeBridge: string;
|
|
6922
|
+
origin: string;
|
|
6923
6923
|
} | {
|
|
6924
6924
|
type: IsmType.TRUSTED_RELAYER;
|
|
6925
6925
|
relayer: string;
|
|
@@ -6973,8 +6973,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6973
6973
|
allowedRebalancers?: string[] | undefined;
|
|
6974
6974
|
} | {
|
|
6975
6975
|
type: TokenType.nativeOpL1;
|
|
6976
|
-
urls: string[];
|
|
6977
6976
|
version: number;
|
|
6977
|
+
urls: string[];
|
|
6978
6978
|
portal: string;
|
|
6979
6979
|
symbol?: string | undefined;
|
|
6980
6980
|
name?: string | undefined;
|
|
@@ -7067,8 +7067,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7067
7067
|
contractVersion?: string | undefined;
|
|
7068
7068
|
}) & {
|
|
7069
7069
|
owner: string;
|
|
7070
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
7071
7070
|
gas?: number | undefined;
|
|
7071
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
7072
7072
|
proxyAdmin?: {
|
|
7073
7073
|
owner: string;
|
|
7074
7074
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -7124,8 +7124,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7124
7124
|
destinationChain: string;
|
|
7125
7125
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
7126
7126
|
interchainSecurityModule?: string | ({
|
|
7127
|
-
validators: string[];
|
|
7128
7127
|
threshold: number;
|
|
7128
|
+
validators: string[];
|
|
7129
7129
|
} & {
|
|
7130
7130
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
7131
7131
|
}) | ({
|
|
@@ -7146,8 +7146,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7146
7146
|
type: IsmType.PAUSABLE;
|
|
7147
7147
|
}) | {
|
|
7148
7148
|
type: IsmType.OP_STACK;
|
|
7149
|
-
origin: string;
|
|
7150
7149
|
nativeBridge: string;
|
|
7150
|
+
origin: string;
|
|
7151
7151
|
} | {
|
|
7152
7152
|
type: IsmType.TRUSTED_RELAYER;
|
|
7153
7153
|
relayer: string;
|
|
@@ -7206,8 +7206,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7206
7206
|
allowedRebalancers?: string[] | undefined;
|
|
7207
7207
|
} | {
|
|
7208
7208
|
type: TokenType.nativeOpL1;
|
|
7209
|
-
urls: string[];
|
|
7210
7209
|
version: number;
|
|
7210
|
+
urls: string[];
|
|
7211
7211
|
portal: string;
|
|
7212
7212
|
symbol?: string | undefined;
|
|
7213
7213
|
name?: string | undefined;
|
|
@@ -7300,8 +7300,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7300
7300
|
contractVersion?: string | undefined;
|
|
7301
7301
|
}) & {
|
|
7302
7302
|
owner: string;
|
|
7303
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
7304
7303
|
gas?: number | undefined;
|
|
7304
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
7305
7305
|
proxyAdmin?: {
|
|
7306
7306
|
owner: string;
|
|
7307
7307
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -7357,8 +7357,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7357
7357
|
destinationChain: string;
|
|
7358
7358
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
7359
7359
|
interchainSecurityModule?: string | ({
|
|
7360
|
-
validators: string[];
|
|
7361
7360
|
threshold: number;
|
|
7361
|
+
validators: string[];
|
|
7362
7362
|
} & {
|
|
7363
7363
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
7364
7364
|
}) | ({
|
|
@@ -7379,8 +7379,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7379
7379
|
type: IsmType.PAUSABLE;
|
|
7380
7380
|
}) | {
|
|
7381
7381
|
type: IsmType.OP_STACK;
|
|
7382
|
-
origin: string;
|
|
7383
7382
|
nativeBridge: string;
|
|
7383
|
+
origin: string;
|
|
7384
7384
|
} | {
|
|
7385
7385
|
type: IsmType.TRUSTED_RELAYER;
|
|
7386
7386
|
relayer: string;
|
|
@@ -7434,8 +7434,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7434
7434
|
allowedRebalancers?: string[] | undefined;
|
|
7435
7435
|
} | {
|
|
7436
7436
|
type: TokenType.nativeOpL1;
|
|
7437
|
-
urls: string[];
|
|
7438
7437
|
version: number;
|
|
7438
|
+
urls: string[];
|
|
7439
7439
|
portal: string;
|
|
7440
7440
|
symbol?: string | undefined;
|
|
7441
7441
|
name?: string | undefined;
|
|
@@ -7528,8 +7528,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7528
7528
|
contractVersion?: string | undefined;
|
|
7529
7529
|
}) & {
|
|
7530
7530
|
owner: string;
|
|
7531
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
7532
7531
|
gas?: number | undefined;
|
|
7532
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
7533
7533
|
proxyAdmin?: {
|
|
7534
7534
|
owner: string;
|
|
7535
7535
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -7585,8 +7585,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7585
7585
|
destinationChain: string;
|
|
7586
7586
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
7587
7587
|
interchainSecurityModule?: string | ({
|
|
7588
|
-
validators: string[];
|
|
7589
7588
|
threshold: number;
|
|
7589
|
+
validators: string[];
|
|
7590
7590
|
} & {
|
|
7591
7591
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
7592
7592
|
}) | ({
|
|
@@ -7607,8 +7607,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7607
7607
|
type: IsmType.PAUSABLE;
|
|
7608
7608
|
}) | {
|
|
7609
7609
|
type: IsmType.OP_STACK;
|
|
7610
|
-
origin: string;
|
|
7611
7610
|
nativeBridge: string;
|
|
7611
|
+
origin: string;
|
|
7612
7612
|
} | {
|
|
7613
7613
|
type: IsmType.TRUSTED_RELAYER;
|
|
7614
7614
|
relayer: string;
|
|
@@ -7667,8 +7667,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7667
7667
|
allowedRebalancers?: string[] | undefined;
|
|
7668
7668
|
} | {
|
|
7669
7669
|
type: TokenType.nativeOpL1;
|
|
7670
|
-
urls: string[];
|
|
7671
7670
|
version: number;
|
|
7671
|
+
urls: string[];
|
|
7672
7672
|
portal: string;
|
|
7673
7673
|
symbol?: string | undefined;
|
|
7674
7674
|
name?: string | undefined;
|
|
@@ -7761,8 +7761,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7761
7761
|
contractVersion?: string | undefined;
|
|
7762
7762
|
}) & {
|
|
7763
7763
|
owner: string;
|
|
7764
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
7765
7764
|
gas?: number | undefined;
|
|
7765
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
7766
7766
|
proxyAdmin?: {
|
|
7767
7767
|
owner: string;
|
|
7768
7768
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -7818,8 +7818,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7818
7818
|
destinationChain: string;
|
|
7819
7819
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
7820
7820
|
interchainSecurityModule?: string | ({
|
|
7821
|
-
validators: string[];
|
|
7822
7821
|
threshold: number;
|
|
7822
|
+
validators: string[];
|
|
7823
7823
|
} & {
|
|
7824
7824
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
7825
7825
|
}) | ({
|
|
@@ -7840,8 +7840,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7840
7840
|
type: IsmType.PAUSABLE;
|
|
7841
7841
|
}) | {
|
|
7842
7842
|
type: IsmType.OP_STACK;
|
|
7843
|
-
origin: string;
|
|
7844
7843
|
nativeBridge: string;
|
|
7844
|
+
origin: string;
|
|
7845
7845
|
} | {
|
|
7846
7846
|
type: IsmType.TRUSTED_RELAYER;
|
|
7847
7847
|
relayer: string;
|
|
@@ -7895,8 +7895,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7895
7895
|
allowedRebalancers?: string[] | undefined;
|
|
7896
7896
|
} | {
|
|
7897
7897
|
type: TokenType.nativeOpL1;
|
|
7898
|
-
urls: string[];
|
|
7899
7898
|
version: number;
|
|
7899
|
+
urls: string[];
|
|
7900
7900
|
portal: string;
|
|
7901
7901
|
symbol?: string | undefined;
|
|
7902
7902
|
name?: string | undefined;
|
|
@@ -7989,8 +7989,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7989
7989
|
contractVersion?: string | undefined;
|
|
7990
7990
|
}) & {
|
|
7991
7991
|
owner: string;
|
|
7992
|
-
ownerOverrides?: Record<string, string> | undefined;
|
|
7993
7992
|
gas?: number | undefined;
|
|
7993
|
+
ownerOverrides?: Record<string, string> | undefined;
|
|
7994
7994
|
proxyAdmin?: {
|
|
7995
7995
|
owner: string;
|
|
7996
7996
|
ownerOverrides?: Record<string, string> | undefined;
|
|
@@ -8046,8 +8046,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
8046
8046
|
destinationChain: string;
|
|
8047
8047
|
} | import("../hook/types.js").DomainRoutingHookConfig | import("../hook/types.js").FallbackRoutingHookConfig | import("../hook/types.js").AmountRoutingHookConfig | import("../hook/types.js").AggregationHookConfig | undefined;
|
|
8048
8048
|
interchainSecurityModule?: string | ({
|
|
8049
|
-
validators: string[];
|
|
8050
8049
|
threshold: number;
|
|
8050
|
+
validators: string[];
|
|
8051
8051
|
} & {
|
|
8052
8052
|
type: IsmType.MERKLE_ROOT_MULTISIG | IsmType.MESSAGE_ID_MULTISIG | IsmType.STORAGE_MERKLE_ROOT_MULTISIG | IsmType.STORAGE_MESSAGE_ID_MULTISIG;
|
|
8053
8053
|
}) | ({
|
|
@@ -8068,8 +8068,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
8068
8068
|
type: IsmType.PAUSABLE;
|
|
8069
8069
|
}) | {
|
|
8070
8070
|
type: IsmType.OP_STACK;
|
|
8071
|
-
origin: string;
|
|
8072
8071
|
nativeBridge: string;
|
|
8072
|
+
origin: string;
|
|
8073
8073
|
} | {
|
|
8074
8074
|
type: IsmType.TRUSTED_RELAYER;
|
|
8075
8075
|
relayer: string;
|