@hyperlane-xyz/sdk 31.1.0 → 31.2.1
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/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/token/ITokenMetadata.d.ts +33 -3
- package/dist/token/ITokenMetadata.d.ts.map +1 -1
- package/dist/token/ITokenMetadata.js +2 -1
- package/dist/token/ITokenMetadata.js.map +1 -1
- package/dist/token/types.d.ts +826 -826
- package/dist/token/types.d.ts.map +1 -1
- package/dist/token/types.js +26 -2
- package/dist/token/types.js.map +1 -1
- package/dist/utils/decimals.d.ts +8 -0
- package/dist/utils/decimals.d.ts.map +1 -1
- package/dist/utils/decimals.js +42 -0
- package/dist/utils/decimals.js.map +1 -1
- package/dist/utils/decimals.test.js +52 -1
- package/dist/utils/decimals.test.js.map +1 -1
- package/dist/warp/WarpCore.d.ts.map +1 -1
- package/dist/warp/WarpCore.js +19 -16
- package/dist/warp/WarpCore.js.map +1 -1
- package/dist/warp/WarpCore.test.js +245 -6
- package/dist/warp/WarpCore.test.js.map +1 -1
- package/dist/warp/types.d.ts +47 -5
- package/dist/warp/types.d.ts.map +1 -1
- package/package.json +10 -10
package/dist/token/types.d.ts
CHANGED
|
@@ -22,14 +22,14 @@ export declare const TokenMetadataSchema: z.ZodObject<{
|
|
|
22
22
|
numerator: number;
|
|
23
23
|
denominator: number;
|
|
24
24
|
}>, z.ZodObject<{
|
|
25
|
-
numerator: z.ZodBigInt
|
|
26
|
-
denominator: z.ZodBigInt
|
|
25
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
26
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
|
28
28
|
numerator: bigint;
|
|
29
29
|
denominator: bigint;
|
|
30
30
|
}, {
|
|
31
|
-
numerator: bigint;
|
|
32
|
-
denominator: bigint;
|
|
31
|
+
numerator: string | bigint;
|
|
32
|
+
denominator: string | bigint;
|
|
33
33
|
}>]>>;
|
|
34
34
|
isNft: z.ZodOptional<z.ZodBoolean>;
|
|
35
35
|
contractVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -55,8 +55,8 @@ export declare const TokenMetadataSchema: z.ZodObject<{
|
|
|
55
55
|
numerator: number;
|
|
56
56
|
denominator: number;
|
|
57
57
|
} | {
|
|
58
|
-
numerator: bigint;
|
|
59
|
-
denominator: bigint;
|
|
58
|
+
numerator: string | bigint;
|
|
59
|
+
denominator: string | bigint;
|
|
60
60
|
} | undefined;
|
|
61
61
|
isNft?: boolean | undefined;
|
|
62
62
|
}>;
|
|
@@ -123,14 +123,14 @@ export declare const NativeTokenConfigSchema: z.ZodObject<{
|
|
|
123
123
|
numerator: number;
|
|
124
124
|
denominator: number;
|
|
125
125
|
}>, z.ZodObject<{
|
|
126
|
-
numerator: z.ZodBigInt
|
|
127
|
-
denominator: z.ZodBigInt
|
|
126
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
127
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
128
128
|
}, "strip", z.ZodTypeAny, {
|
|
129
129
|
numerator: bigint;
|
|
130
130
|
denominator: bigint;
|
|
131
131
|
}, {
|
|
132
|
-
numerator: bigint;
|
|
133
|
-
denominator: bigint;
|
|
132
|
+
numerator: string | bigint;
|
|
133
|
+
denominator: string | bigint;
|
|
134
134
|
}>]>>>;
|
|
135
135
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
136
136
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -176,8 +176,8 @@ export declare const NativeTokenConfigSchema: z.ZodObject<{
|
|
|
176
176
|
numerator: number;
|
|
177
177
|
denominator: number;
|
|
178
178
|
} | {
|
|
179
|
-
numerator: bigint;
|
|
180
|
-
denominator: bigint;
|
|
179
|
+
numerator: string | bigint;
|
|
180
|
+
denominator: string | bigint;
|
|
181
181
|
} | undefined;
|
|
182
182
|
isNft?: boolean | undefined;
|
|
183
183
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -221,14 +221,14 @@ export declare const OpL2TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
221
221
|
numerator: number;
|
|
222
222
|
denominator: number;
|
|
223
223
|
}>, z.ZodObject<{
|
|
224
|
-
numerator: z.ZodBigInt
|
|
225
|
-
denominator: z.ZodBigInt
|
|
224
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
225
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
227
|
numerator: bigint;
|
|
228
228
|
denominator: bigint;
|
|
229
229
|
}, {
|
|
230
|
-
numerator: bigint;
|
|
231
|
-
denominator: bigint;
|
|
230
|
+
numerator: string | bigint;
|
|
231
|
+
denominator: string | bigint;
|
|
232
232
|
}>]>>>;
|
|
233
233
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
234
234
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -279,8 +279,8 @@ export declare const OpL2TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
279
279
|
numerator: number;
|
|
280
280
|
denominator: number;
|
|
281
281
|
} | {
|
|
282
|
-
numerator: bigint;
|
|
283
|
-
denominator: bigint;
|
|
282
|
+
numerator: string | bigint;
|
|
283
|
+
denominator: string | bigint;
|
|
284
284
|
} | undefined;
|
|
285
285
|
isNft?: boolean | undefined;
|
|
286
286
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -303,14 +303,14 @@ export declare const OpL1TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
303
303
|
numerator: number;
|
|
304
304
|
denominator: number;
|
|
305
305
|
}>, z.ZodObject<{
|
|
306
|
-
numerator: z.ZodBigInt
|
|
307
|
-
denominator: z.ZodBigInt
|
|
306
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
307
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
308
308
|
}, "strip", z.ZodTypeAny, {
|
|
309
309
|
numerator: bigint;
|
|
310
310
|
denominator: bigint;
|
|
311
311
|
}, {
|
|
312
|
-
numerator: bigint;
|
|
313
|
-
denominator: bigint;
|
|
312
|
+
numerator: string | bigint;
|
|
313
|
+
denominator: string | bigint;
|
|
314
314
|
}>]>>>;
|
|
315
315
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
316
316
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -374,8 +374,8 @@ export declare const OpL1TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
374
374
|
numerator: number;
|
|
375
375
|
denominator: number;
|
|
376
376
|
} | {
|
|
377
|
-
numerator: bigint;
|
|
378
|
-
denominator: bigint;
|
|
377
|
+
numerator: string | bigint;
|
|
378
|
+
denominator: string | bigint;
|
|
379
379
|
} | undefined;
|
|
380
380
|
isNft?: boolean | undefined;
|
|
381
381
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -445,14 +445,14 @@ export declare const CollateralTokenConfigSchema: z.ZodObject<{
|
|
|
445
445
|
numerator: number;
|
|
446
446
|
denominator: number;
|
|
447
447
|
}>, z.ZodObject<{
|
|
448
|
-
numerator: z.ZodBigInt
|
|
449
|
-
denominator: z.ZodBigInt
|
|
448
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
449
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
450
450
|
}, "strip", z.ZodTypeAny, {
|
|
451
451
|
numerator: bigint;
|
|
452
452
|
denominator: bigint;
|
|
453
453
|
}, {
|
|
454
|
-
numerator: bigint;
|
|
455
|
-
denominator: bigint;
|
|
454
|
+
numerator: string | bigint;
|
|
455
|
+
denominator: string | bigint;
|
|
456
456
|
}>]>>>;
|
|
457
457
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
458
458
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -501,8 +501,8 @@ export declare const CollateralTokenConfigSchema: z.ZodObject<{
|
|
|
501
501
|
numerator: number;
|
|
502
502
|
denominator: number;
|
|
503
503
|
} | {
|
|
504
|
-
numerator: bigint;
|
|
505
|
-
denominator: bigint;
|
|
504
|
+
numerator: string | bigint;
|
|
505
|
+
denominator: string | bigint;
|
|
506
506
|
} | undefined;
|
|
507
507
|
isNft?: boolean | undefined;
|
|
508
508
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -802,14 +802,14 @@ export declare const XERC20TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
802
802
|
numerator: number;
|
|
803
803
|
denominator: number;
|
|
804
804
|
}>, z.ZodObject<{
|
|
805
|
-
numerator: z.ZodBigInt
|
|
806
|
-
denominator: z.ZodBigInt
|
|
805
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
806
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
807
807
|
}, "strip", z.ZodTypeAny, {
|
|
808
808
|
numerator: bigint;
|
|
809
809
|
denominator: bigint;
|
|
810
810
|
}, {
|
|
811
|
-
numerator: bigint;
|
|
812
|
-
denominator: bigint;
|
|
811
|
+
numerator: string | bigint;
|
|
812
|
+
denominator: string | bigint;
|
|
813
813
|
}>]>>>;
|
|
814
814
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
815
815
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1028,8 +1028,8 @@ export declare const XERC20TokenConfigSchema: z.ZodObject<Omit<{
|
|
|
1028
1028
|
numerator: number;
|
|
1029
1029
|
denominator: number;
|
|
1030
1030
|
} | {
|
|
1031
|
-
numerator: bigint;
|
|
1032
|
-
denominator: bigint;
|
|
1031
|
+
numerator: string | bigint;
|
|
1032
|
+
denominator: string | bigint;
|
|
1033
1033
|
} | undefined;
|
|
1034
1034
|
isNft?: boolean | undefined;
|
|
1035
1035
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -1097,14 +1097,14 @@ export declare const CctpTokenConfigSchema: z.ZodObject<{
|
|
|
1097
1097
|
numerator: number;
|
|
1098
1098
|
denominator: number;
|
|
1099
1099
|
}>, z.ZodObject<{
|
|
1100
|
-
numerator: z.ZodBigInt
|
|
1101
|
-
denominator: z.ZodBigInt
|
|
1100
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1101
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1102
1102
|
}, "strip", z.ZodTypeAny, {
|
|
1103
1103
|
numerator: bigint;
|
|
1104
1104
|
denominator: bigint;
|
|
1105
1105
|
}, {
|
|
1106
|
-
numerator: bigint;
|
|
1107
|
-
denominator: bigint;
|
|
1106
|
+
numerator: string | bigint;
|
|
1107
|
+
denominator: string | bigint;
|
|
1108
1108
|
}>]>>>;
|
|
1109
1109
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1110
1110
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1160,8 +1160,8 @@ export declare const CctpTokenConfigSchema: z.ZodObject<{
|
|
|
1160
1160
|
numerator: number;
|
|
1161
1161
|
denominator: number;
|
|
1162
1162
|
} | {
|
|
1163
|
-
numerator: bigint;
|
|
1164
|
-
denominator: bigint;
|
|
1163
|
+
numerator: string | bigint;
|
|
1164
|
+
denominator: string | bigint;
|
|
1165
1165
|
} | undefined;
|
|
1166
1166
|
isNft?: boolean | undefined;
|
|
1167
1167
|
minFinalityThreshold?: number | undefined;
|
|
@@ -1227,14 +1227,14 @@ export declare const DepositAddressTokenConfigSchema: z.ZodObject<{
|
|
|
1227
1227
|
numerator: number;
|
|
1228
1228
|
denominator: number;
|
|
1229
1229
|
}>, z.ZodObject<{
|
|
1230
|
-
numerator: z.ZodBigInt
|
|
1231
|
-
denominator: z.ZodBigInt
|
|
1230
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1231
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1232
1232
|
}, "strip", z.ZodTypeAny, {
|
|
1233
1233
|
numerator: bigint;
|
|
1234
1234
|
denominator: bigint;
|
|
1235
1235
|
}, {
|
|
1236
|
-
numerator: bigint;
|
|
1237
|
-
denominator: bigint;
|
|
1236
|
+
numerator: string | bigint;
|
|
1237
|
+
denominator: string | bigint;
|
|
1238
1238
|
}>]>>>;
|
|
1239
1239
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1240
1240
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1285,8 +1285,8 @@ export declare const DepositAddressTokenConfigSchema: z.ZodObject<{
|
|
|
1285
1285
|
numerator: number;
|
|
1286
1286
|
denominator: number;
|
|
1287
1287
|
} | {
|
|
1288
|
-
numerator: bigint;
|
|
1289
|
-
denominator: bigint;
|
|
1288
|
+
numerator: string | bigint;
|
|
1289
|
+
denominator: string | bigint;
|
|
1290
1290
|
} | undefined;
|
|
1291
1291
|
isNft?: boolean | undefined;
|
|
1292
1292
|
}>;
|
|
@@ -1325,14 +1325,14 @@ export declare const OftTokenConfigSchema: z.ZodObject<{
|
|
|
1325
1325
|
numerator: number;
|
|
1326
1326
|
denominator: number;
|
|
1327
1327
|
}>, z.ZodObject<{
|
|
1328
|
-
numerator: z.ZodBigInt
|
|
1329
|
-
denominator: z.ZodBigInt
|
|
1328
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1329
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1330
1330
|
}, "strip", z.ZodTypeAny, {
|
|
1331
1331
|
numerator: bigint;
|
|
1332
1332
|
denominator: bigint;
|
|
1333
1333
|
}, {
|
|
1334
|
-
numerator: bigint;
|
|
1335
|
-
denominator: bigint;
|
|
1334
|
+
numerator: string | bigint;
|
|
1335
|
+
denominator: string | bigint;
|
|
1336
1336
|
}>]>>>;
|
|
1337
1337
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1338
1338
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1373,8 +1373,8 @@ export declare const OftTokenConfigSchema: z.ZodObject<{
|
|
|
1373
1373
|
numerator: number;
|
|
1374
1374
|
denominator: number;
|
|
1375
1375
|
} | {
|
|
1376
|
-
numerator: bigint;
|
|
1377
|
-
denominator: bigint;
|
|
1376
|
+
numerator: string | bigint;
|
|
1377
|
+
denominator: string | bigint;
|
|
1378
1378
|
} | undefined;
|
|
1379
1379
|
isNft?: boolean | undefined;
|
|
1380
1380
|
extraOptions?: string | undefined;
|
|
@@ -1413,14 +1413,14 @@ export declare const CollateralRebaseTokenConfigSchema: z.ZodObject<{
|
|
|
1413
1413
|
numerator: number;
|
|
1414
1414
|
denominator: number;
|
|
1415
1415
|
}>, z.ZodObject<{
|
|
1416
|
-
numerator: z.ZodBigInt
|
|
1417
|
-
denominator: z.ZodBigInt
|
|
1416
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1417
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1418
1418
|
}, "strip", z.ZodTypeAny, {
|
|
1419
1419
|
numerator: bigint;
|
|
1420
1420
|
denominator: bigint;
|
|
1421
1421
|
}, {
|
|
1422
|
-
numerator: bigint;
|
|
1423
|
-
denominator: bigint;
|
|
1422
|
+
numerator: string | bigint;
|
|
1423
|
+
denominator: string | bigint;
|
|
1424
1424
|
}>]>>>;
|
|
1425
1425
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1426
1426
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1450,8 +1450,8 @@ export declare const CollateralRebaseTokenConfigSchema: z.ZodObject<{
|
|
|
1450
1450
|
numerator: number;
|
|
1451
1451
|
denominator: number;
|
|
1452
1452
|
} | {
|
|
1453
|
-
numerator: bigint;
|
|
1454
|
-
denominator: bigint;
|
|
1453
|
+
numerator: string | bigint;
|
|
1454
|
+
denominator: string | bigint;
|
|
1455
1455
|
} | undefined;
|
|
1456
1456
|
isNft?: boolean | undefined;
|
|
1457
1457
|
}>;
|
|
@@ -1484,14 +1484,14 @@ export declare const SyntheticTokenConfigSchema: z.ZodObject<{
|
|
|
1484
1484
|
numerator: number;
|
|
1485
1485
|
denominator: number;
|
|
1486
1486
|
}>, z.ZodObject<{
|
|
1487
|
-
numerator: z.ZodBigInt
|
|
1488
|
-
denominator: z.ZodBigInt
|
|
1487
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1488
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1489
1489
|
}, "strip", z.ZodTypeAny, {
|
|
1490
1490
|
numerator: bigint;
|
|
1491
1491
|
denominator: bigint;
|
|
1492
1492
|
}, {
|
|
1493
|
-
numerator: bigint;
|
|
1494
|
-
denominator: bigint;
|
|
1493
|
+
numerator: string | bigint;
|
|
1494
|
+
denominator: string | bigint;
|
|
1495
1495
|
}>]>>>;
|
|
1496
1496
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1497
1497
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1525,8 +1525,8 @@ export declare const SyntheticTokenConfigSchema: z.ZodObject<{
|
|
|
1525
1525
|
numerator: number;
|
|
1526
1526
|
denominator: number;
|
|
1527
1527
|
} | {
|
|
1528
|
-
numerator: bigint;
|
|
1529
|
-
denominator: bigint;
|
|
1528
|
+
numerator: string | bigint;
|
|
1529
|
+
denominator: string | bigint;
|
|
1530
1530
|
} | undefined;
|
|
1531
1531
|
isNft?: boolean | undefined;
|
|
1532
1532
|
initialSupply?: string | number | undefined;
|
|
@@ -1564,14 +1564,14 @@ export declare const SyntheticRebaseTokenConfigSchema: z.ZodObject<{
|
|
|
1564
1564
|
numerator: number;
|
|
1565
1565
|
denominator: number;
|
|
1566
1566
|
}>, z.ZodObject<{
|
|
1567
|
-
numerator: z.ZodBigInt
|
|
1568
|
-
denominator: z.ZodBigInt
|
|
1567
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1568
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1569
1569
|
}, "strip", z.ZodTypeAny, {
|
|
1570
1570
|
numerator: bigint;
|
|
1571
1571
|
denominator: bigint;
|
|
1572
1572
|
}, {
|
|
1573
|
-
numerator: bigint;
|
|
1574
|
-
denominator: bigint;
|
|
1573
|
+
numerator: string | bigint;
|
|
1574
|
+
denominator: string | bigint;
|
|
1575
1575
|
}>]>>>;
|
|
1576
1576
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1577
1577
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1604,8 +1604,8 @@ export declare const SyntheticRebaseTokenConfigSchema: z.ZodObject<{
|
|
|
1604
1604
|
numerator: number;
|
|
1605
1605
|
denominator: number;
|
|
1606
1606
|
} | {
|
|
1607
|
-
numerator: bigint;
|
|
1608
|
-
denominator: bigint;
|
|
1607
|
+
numerator: string | bigint;
|
|
1608
|
+
denominator: string | bigint;
|
|
1609
1609
|
} | undefined;
|
|
1610
1610
|
isNft?: boolean | undefined;
|
|
1611
1611
|
}>;
|
|
@@ -1644,14 +1644,14 @@ export declare const CrossCollateralTokenConfigSchema: z.ZodObject<{
|
|
|
1644
1644
|
numerator: number;
|
|
1645
1645
|
denominator: number;
|
|
1646
1646
|
}>, z.ZodObject<{
|
|
1647
|
-
numerator: z.ZodBigInt
|
|
1648
|
-
denominator: z.ZodBigInt
|
|
1647
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1648
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1649
1649
|
}, "strip", z.ZodTypeAny, {
|
|
1650
1650
|
numerator: bigint;
|
|
1651
1651
|
denominator: bigint;
|
|
1652
1652
|
}, {
|
|
1653
|
-
numerator: bigint;
|
|
1654
|
-
denominator: bigint;
|
|
1653
|
+
numerator: string | bigint;
|
|
1654
|
+
denominator: string | bigint;
|
|
1655
1655
|
}>]>>>;
|
|
1656
1656
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1657
1657
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1704,8 +1704,8 @@ export declare const CrossCollateralTokenConfigSchema: z.ZodObject<{
|
|
|
1704
1704
|
numerator: number;
|
|
1705
1705
|
denominator: number;
|
|
1706
1706
|
} | {
|
|
1707
|
-
numerator: bigint;
|
|
1708
|
-
denominator: bigint;
|
|
1707
|
+
numerator: string | bigint;
|
|
1708
|
+
denominator: string | bigint;
|
|
1709
1709
|
} | undefined;
|
|
1710
1710
|
isNft?: boolean | undefined;
|
|
1711
1711
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -1768,14 +1768,14 @@ export declare const EverclearCollateralTokenConfigSchema: z.ZodObject<{
|
|
|
1768
1768
|
numerator: number;
|
|
1769
1769
|
denominator: number;
|
|
1770
1770
|
}>, z.ZodObject<{
|
|
1771
|
-
numerator: z.ZodBigInt
|
|
1772
|
-
denominator: z.ZodBigInt
|
|
1771
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1772
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1773
1773
|
}, "strip", z.ZodTypeAny, {
|
|
1774
1774
|
numerator: bigint;
|
|
1775
1775
|
denominator: bigint;
|
|
1776
1776
|
}, {
|
|
1777
|
-
numerator: bigint;
|
|
1778
|
-
denominator: bigint;
|
|
1777
|
+
numerator: string | bigint;
|
|
1778
|
+
denominator: string | bigint;
|
|
1779
1779
|
}>]>>>;
|
|
1780
1780
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1781
1781
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -1835,8 +1835,8 @@ export declare const EverclearCollateralTokenConfigSchema: z.ZodObject<{
|
|
|
1835
1835
|
numerator: number;
|
|
1836
1836
|
denominator: number;
|
|
1837
1837
|
} | {
|
|
1838
|
-
numerator: bigint;
|
|
1839
|
-
denominator: bigint;
|
|
1838
|
+
numerator: string | bigint;
|
|
1839
|
+
denominator: string | bigint;
|
|
1840
1840
|
} | undefined;
|
|
1841
1841
|
isNft?: boolean | undefined;
|
|
1842
1842
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -1904,14 +1904,14 @@ export declare const EverclearEthBridgeTokenConfigSchema: z.ZodObject<{
|
|
|
1904
1904
|
numerator: number;
|
|
1905
1905
|
denominator: number;
|
|
1906
1906
|
}>, z.ZodObject<{
|
|
1907
|
-
numerator: z.ZodBigInt
|
|
1908
|
-
denominator: z.ZodBigInt
|
|
1907
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1908
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
1909
1909
|
}, "strip", z.ZodTypeAny, {
|
|
1910
1910
|
numerator: bigint;
|
|
1911
1911
|
denominator: bigint;
|
|
1912
1912
|
}, {
|
|
1913
|
-
numerator: bigint;
|
|
1914
|
-
denominator: bigint;
|
|
1913
|
+
numerator: string | bigint;
|
|
1914
|
+
denominator: string | bigint;
|
|
1915
1915
|
}>]>>>;
|
|
1916
1916
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1917
1917
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -1972,8 +1972,8 @@ export declare const EverclearEthBridgeTokenConfigSchema: z.ZodObject<{
|
|
|
1972
1972
|
numerator: number;
|
|
1973
1973
|
denominator: number;
|
|
1974
1974
|
} | {
|
|
1975
|
-
numerator: bigint;
|
|
1976
|
-
denominator: bigint;
|
|
1975
|
+
numerator: string | bigint;
|
|
1976
|
+
denominator: string | bigint;
|
|
1977
1977
|
} | undefined;
|
|
1978
1978
|
isNft?: boolean | undefined;
|
|
1979
1979
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2049,14 +2049,14 @@ export declare const UnknownTokenConfigSchema: z.ZodObject<{
|
|
|
2049
2049
|
numerator: number;
|
|
2050
2050
|
denominator: number;
|
|
2051
2051
|
}>, z.ZodObject<{
|
|
2052
|
-
numerator: z.ZodBigInt
|
|
2053
|
-
denominator: z.ZodBigInt
|
|
2052
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2053
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2054
2054
|
}, "strip", z.ZodTypeAny, {
|
|
2055
2055
|
numerator: bigint;
|
|
2056
2056
|
denominator: bigint;
|
|
2057
2057
|
}, {
|
|
2058
|
-
numerator: bigint;
|
|
2059
|
-
denominator: bigint;
|
|
2058
|
+
numerator: string | bigint;
|
|
2059
|
+
denominator: string | bigint;
|
|
2060
2060
|
}>]>>>;
|
|
2061
2061
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2062
2062
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2076,14 +2076,14 @@ export declare const UnknownTokenConfigSchema: z.ZodObject<{
|
|
|
2076
2076
|
numerator: number;
|
|
2077
2077
|
denominator: number;
|
|
2078
2078
|
}>, z.ZodObject<{
|
|
2079
|
-
numerator: z.ZodBigInt
|
|
2080
|
-
denominator: z.ZodBigInt
|
|
2079
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2080
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2081
2081
|
}, "strip", z.ZodTypeAny, {
|
|
2082
2082
|
numerator: bigint;
|
|
2083
2083
|
denominator: bigint;
|
|
2084
2084
|
}, {
|
|
2085
|
-
numerator: bigint;
|
|
2086
|
-
denominator: bigint;
|
|
2085
|
+
numerator: string | bigint;
|
|
2086
|
+
denominator: string | bigint;
|
|
2087
2087
|
}>]>>>;
|
|
2088
2088
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2089
2089
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2103,14 +2103,14 @@ export declare const UnknownTokenConfigSchema: z.ZodObject<{
|
|
|
2103
2103
|
numerator: number;
|
|
2104
2104
|
denominator: number;
|
|
2105
2105
|
}>, z.ZodObject<{
|
|
2106
|
-
numerator: z.ZodBigInt
|
|
2107
|
-
denominator: z.ZodBigInt
|
|
2106
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2107
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2108
2108
|
}, "strip", z.ZodTypeAny, {
|
|
2109
2109
|
numerator: bigint;
|
|
2110
2110
|
denominator: bigint;
|
|
2111
2111
|
}, {
|
|
2112
|
-
numerator: bigint;
|
|
2113
|
-
denominator: bigint;
|
|
2112
|
+
numerator: string | bigint;
|
|
2113
|
+
denominator: string | bigint;
|
|
2114
2114
|
}>]>>>;
|
|
2115
2115
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2116
2116
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2132,14 +2132,14 @@ export declare const isUnknownTokenConfig: (config: unknown) => config is z.obje
|
|
|
2132
2132
|
numerator: number;
|
|
2133
2133
|
denominator: number;
|
|
2134
2134
|
}>, z.ZodObject<{
|
|
2135
|
-
numerator: z.ZodBigInt
|
|
2136
|
-
denominator: z.ZodBigInt
|
|
2135
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2136
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2137
2137
|
}, "strip", z.ZodTypeAny, {
|
|
2138
2138
|
numerator: bigint;
|
|
2139
2139
|
denominator: bigint;
|
|
2140
2140
|
}, {
|
|
2141
|
-
numerator: bigint;
|
|
2142
|
-
denominator: bigint;
|
|
2141
|
+
numerator: string | bigint;
|
|
2142
|
+
denominator: string | bigint;
|
|
2143
2143
|
}>]>>>;
|
|
2144
2144
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2145
2145
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2160,14 +2160,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2160
2160
|
numerator: number;
|
|
2161
2161
|
denominator: number;
|
|
2162
2162
|
}>, z.ZodObject<{
|
|
2163
|
-
numerator: z.ZodBigInt
|
|
2164
|
-
denominator: z.ZodBigInt
|
|
2163
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2164
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2165
2165
|
}, "strip", z.ZodTypeAny, {
|
|
2166
2166
|
numerator: bigint;
|
|
2167
2167
|
denominator: bigint;
|
|
2168
2168
|
}, {
|
|
2169
|
-
numerator: bigint;
|
|
2170
|
-
denominator: bigint;
|
|
2169
|
+
numerator: string | bigint;
|
|
2170
|
+
denominator: string | bigint;
|
|
2171
2171
|
}>]>>>;
|
|
2172
2172
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2173
2173
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2213,8 +2213,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2213
2213
|
numerator: number;
|
|
2214
2214
|
denominator: number;
|
|
2215
2215
|
} | {
|
|
2216
|
-
numerator: bigint;
|
|
2217
|
-
denominator: bigint;
|
|
2216
|
+
numerator: string | bigint;
|
|
2217
|
+
denominator: string | bigint;
|
|
2218
2218
|
} | undefined;
|
|
2219
2219
|
isNft?: boolean | undefined;
|
|
2220
2220
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2236,14 +2236,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2236
2236
|
numerator: number;
|
|
2237
2237
|
denominator: number;
|
|
2238
2238
|
}>, z.ZodObject<{
|
|
2239
|
-
numerator: z.ZodBigInt
|
|
2240
|
-
denominator: z.ZodBigInt
|
|
2239
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2240
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2241
2241
|
}, "strip", z.ZodTypeAny, {
|
|
2242
2242
|
numerator: bigint;
|
|
2243
2243
|
denominator: bigint;
|
|
2244
2244
|
}, {
|
|
2245
|
-
numerator: bigint;
|
|
2246
|
-
denominator: bigint;
|
|
2245
|
+
numerator: string | bigint;
|
|
2246
|
+
denominator: string | bigint;
|
|
2247
2247
|
}>]>>>;
|
|
2248
2248
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2249
2249
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2294,8 +2294,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2294
2294
|
numerator: number;
|
|
2295
2295
|
denominator: number;
|
|
2296
2296
|
} | {
|
|
2297
|
-
numerator: bigint;
|
|
2298
|
-
denominator: bigint;
|
|
2297
|
+
numerator: string | bigint;
|
|
2298
|
+
denominator: string | bigint;
|
|
2299
2299
|
} | undefined;
|
|
2300
2300
|
isNft?: boolean | undefined;
|
|
2301
2301
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2317,14 +2317,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2317
2317
|
numerator: number;
|
|
2318
2318
|
denominator: number;
|
|
2319
2319
|
}>, z.ZodObject<{
|
|
2320
|
-
numerator: z.ZodBigInt
|
|
2321
|
-
denominator: z.ZodBigInt
|
|
2320
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2321
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2322
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2323
2323
|
numerator: bigint;
|
|
2324
2324
|
denominator: bigint;
|
|
2325
2325
|
}, {
|
|
2326
|
-
numerator: bigint;
|
|
2327
|
-
denominator: bigint;
|
|
2326
|
+
numerator: string | bigint;
|
|
2327
|
+
denominator: string | bigint;
|
|
2328
2328
|
}>]>>>;
|
|
2329
2329
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2330
2330
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2388,8 +2388,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2388
2388
|
numerator: number;
|
|
2389
2389
|
denominator: number;
|
|
2390
2390
|
} | {
|
|
2391
|
-
numerator: bigint;
|
|
2392
|
-
denominator: bigint;
|
|
2391
|
+
numerator: string | bigint;
|
|
2392
|
+
denominator: string | bigint;
|
|
2393
2393
|
} | undefined;
|
|
2394
2394
|
isNft?: boolean | undefined;
|
|
2395
2395
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2411,14 +2411,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2411
2411
|
numerator: number;
|
|
2412
2412
|
denominator: number;
|
|
2413
2413
|
}>, z.ZodObject<{
|
|
2414
|
-
numerator: z.ZodBigInt
|
|
2415
|
-
denominator: z.ZodBigInt
|
|
2414
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2415
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2416
2416
|
}, "strip", z.ZodTypeAny, {
|
|
2417
2417
|
numerator: bigint;
|
|
2418
2418
|
denominator: bigint;
|
|
2419
2419
|
}, {
|
|
2420
|
-
numerator: bigint;
|
|
2421
|
-
denominator: bigint;
|
|
2420
|
+
numerator: string | bigint;
|
|
2421
|
+
denominator: string | bigint;
|
|
2422
2422
|
}>]>>>;
|
|
2423
2423
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2424
2424
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2467,8 +2467,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2467
2467
|
numerator: number;
|
|
2468
2468
|
denominator: number;
|
|
2469
2469
|
} | {
|
|
2470
|
-
numerator: bigint;
|
|
2471
|
-
denominator: bigint;
|
|
2470
|
+
numerator: string | bigint;
|
|
2471
|
+
denominator: string | bigint;
|
|
2472
2472
|
} | undefined;
|
|
2473
2473
|
isNft?: boolean | undefined;
|
|
2474
2474
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2490,14 +2490,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2490
2490
|
numerator: number;
|
|
2491
2491
|
denominator: number;
|
|
2492
2492
|
}>, z.ZodObject<{
|
|
2493
|
-
numerator: z.ZodBigInt
|
|
2494
|
-
denominator: z.ZodBigInt
|
|
2493
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2494
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2495
2495
|
}, "strip", z.ZodTypeAny, {
|
|
2496
2496
|
numerator: bigint;
|
|
2497
2497
|
denominator: bigint;
|
|
2498
2498
|
}, {
|
|
2499
|
-
numerator: bigint;
|
|
2500
|
-
denominator: bigint;
|
|
2499
|
+
numerator: string | bigint;
|
|
2500
|
+
denominator: string | bigint;
|
|
2501
2501
|
}>]>>>;
|
|
2502
2502
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2503
2503
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2716,8 +2716,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2716
2716
|
numerator: number;
|
|
2717
2717
|
denominator: number;
|
|
2718
2718
|
} | {
|
|
2719
|
-
numerator: bigint;
|
|
2720
|
-
denominator: bigint;
|
|
2719
|
+
numerator: string | bigint;
|
|
2720
|
+
denominator: string | bigint;
|
|
2721
2721
|
} | undefined;
|
|
2722
2722
|
isNft?: boolean | undefined;
|
|
2723
2723
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -2739,14 +2739,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2739
2739
|
numerator: number;
|
|
2740
2740
|
denominator: number;
|
|
2741
2741
|
}>, z.ZodObject<{
|
|
2742
|
-
numerator: z.ZodBigInt
|
|
2743
|
-
denominator: z.ZodBigInt
|
|
2742
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2743
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2744
2744
|
}, "strip", z.ZodTypeAny, {
|
|
2745
2745
|
numerator: bigint;
|
|
2746
2746
|
denominator: bigint;
|
|
2747
2747
|
}, {
|
|
2748
|
-
numerator: bigint;
|
|
2749
|
-
denominator: bigint;
|
|
2748
|
+
numerator: string | bigint;
|
|
2749
|
+
denominator: string | bigint;
|
|
2750
2750
|
}>]>>>;
|
|
2751
2751
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2752
2752
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2780,8 +2780,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2780
2780
|
numerator: number;
|
|
2781
2781
|
denominator: number;
|
|
2782
2782
|
} | {
|
|
2783
|
-
numerator: bigint;
|
|
2784
|
-
denominator: bigint;
|
|
2783
|
+
numerator: string | bigint;
|
|
2784
|
+
denominator: string | bigint;
|
|
2785
2785
|
} | undefined;
|
|
2786
2786
|
isNft?: boolean | undefined;
|
|
2787
2787
|
initialSupply?: string | number | undefined;
|
|
@@ -2800,14 +2800,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2800
2800
|
numerator: number;
|
|
2801
2801
|
denominator: number;
|
|
2802
2802
|
}>, z.ZodObject<{
|
|
2803
|
-
numerator: z.ZodBigInt
|
|
2804
|
-
denominator: z.ZodBigInt
|
|
2803
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2804
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2805
2805
|
}, "strip", z.ZodTypeAny, {
|
|
2806
2806
|
numerator: bigint;
|
|
2807
2807
|
denominator: bigint;
|
|
2808
2808
|
}, {
|
|
2809
|
-
numerator: bigint;
|
|
2810
|
-
denominator: bigint;
|
|
2809
|
+
numerator: string | bigint;
|
|
2810
|
+
denominator: string | bigint;
|
|
2811
2811
|
}>]>>>;
|
|
2812
2812
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2813
2813
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2840,8 +2840,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2840
2840
|
numerator: number;
|
|
2841
2841
|
denominator: number;
|
|
2842
2842
|
} | {
|
|
2843
|
-
numerator: bigint;
|
|
2844
|
-
denominator: bigint;
|
|
2843
|
+
numerator: string | bigint;
|
|
2844
|
+
denominator: string | bigint;
|
|
2845
2845
|
} | undefined;
|
|
2846
2846
|
isNft?: boolean | undefined;
|
|
2847
2847
|
}>, z.ZodObject<{
|
|
@@ -2858,14 +2858,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2858
2858
|
numerator: number;
|
|
2859
2859
|
denominator: number;
|
|
2860
2860
|
}>, z.ZodObject<{
|
|
2861
|
-
numerator: z.ZodBigInt
|
|
2862
|
-
denominator: z.ZodBigInt
|
|
2861
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2862
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2863
2863
|
}, "strip", z.ZodTypeAny, {
|
|
2864
2864
|
numerator: bigint;
|
|
2865
2865
|
denominator: bigint;
|
|
2866
2866
|
}, {
|
|
2867
|
-
numerator: bigint;
|
|
2868
|
-
denominator: bigint;
|
|
2867
|
+
numerator: string | bigint;
|
|
2868
|
+
denominator: string | bigint;
|
|
2869
2869
|
}>]>>>;
|
|
2870
2870
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2871
2871
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2921,8 +2921,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2921
2921
|
numerator: number;
|
|
2922
2922
|
denominator: number;
|
|
2923
2923
|
} | {
|
|
2924
|
-
numerator: bigint;
|
|
2925
|
-
denominator: bigint;
|
|
2924
|
+
numerator: string | bigint;
|
|
2925
|
+
denominator: string | bigint;
|
|
2926
2926
|
} | undefined;
|
|
2927
2927
|
isNft?: boolean | undefined;
|
|
2928
2928
|
minFinalityThreshold?: number | undefined;
|
|
@@ -2941,14 +2941,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2941
2941
|
numerator: number;
|
|
2942
2942
|
denominator: number;
|
|
2943
2943
|
}>, z.ZodObject<{
|
|
2944
|
-
numerator: z.ZodBigInt
|
|
2945
|
-
denominator: z.ZodBigInt
|
|
2944
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2945
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
2946
2946
|
}, "strip", z.ZodTypeAny, {
|
|
2947
2947
|
numerator: bigint;
|
|
2948
2948
|
denominator: bigint;
|
|
2949
2949
|
}, {
|
|
2950
|
-
numerator: bigint;
|
|
2951
|
-
denominator: bigint;
|
|
2950
|
+
numerator: string | bigint;
|
|
2951
|
+
denominator: string | bigint;
|
|
2952
2952
|
}>]>>>;
|
|
2953
2953
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2954
2954
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2989,8 +2989,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2989
2989
|
numerator: number;
|
|
2990
2990
|
denominator: number;
|
|
2991
2991
|
} | {
|
|
2992
|
-
numerator: bigint;
|
|
2993
|
-
denominator: bigint;
|
|
2992
|
+
numerator: string | bigint;
|
|
2993
|
+
denominator: string | bigint;
|
|
2994
2994
|
} | undefined;
|
|
2995
2995
|
isNft?: boolean | undefined;
|
|
2996
2996
|
extraOptions?: string | undefined;
|
|
@@ -3025,14 +3025,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3025
3025
|
numerator: number;
|
|
3026
3026
|
denominator: number;
|
|
3027
3027
|
}>, z.ZodObject<{
|
|
3028
|
-
numerator: z.ZodBigInt
|
|
3029
|
-
denominator: z.ZodBigInt
|
|
3028
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3029
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3030
3030
|
}, "strip", z.ZodTypeAny, {
|
|
3031
3031
|
numerator: bigint;
|
|
3032
3032
|
denominator: bigint;
|
|
3033
3033
|
}, {
|
|
3034
|
-
numerator: bigint;
|
|
3035
|
-
denominator: bigint;
|
|
3034
|
+
numerator: string | bigint;
|
|
3035
|
+
denominator: string | bigint;
|
|
3036
3036
|
}>]>>>;
|
|
3037
3037
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3038
3038
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -3092,8 +3092,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3092
3092
|
numerator: number;
|
|
3093
3093
|
denominator: number;
|
|
3094
3094
|
} | {
|
|
3095
|
-
numerator: bigint;
|
|
3096
|
-
denominator: bigint;
|
|
3095
|
+
numerator: string | bigint;
|
|
3096
|
+
denominator: string | bigint;
|
|
3097
3097
|
} | undefined;
|
|
3098
3098
|
isNft?: boolean | undefined;
|
|
3099
3099
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3131,14 +3131,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3131
3131
|
numerator: number;
|
|
3132
3132
|
denominator: number;
|
|
3133
3133
|
}>, z.ZodObject<{
|
|
3134
|
-
numerator: z.ZodBigInt
|
|
3135
|
-
denominator: z.ZodBigInt
|
|
3134
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3135
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3136
3136
|
}, "strip", z.ZodTypeAny, {
|
|
3137
3137
|
numerator: bigint;
|
|
3138
3138
|
denominator: bigint;
|
|
3139
3139
|
}, {
|
|
3140
|
-
numerator: bigint;
|
|
3141
|
-
denominator: bigint;
|
|
3140
|
+
numerator: string | bigint;
|
|
3141
|
+
denominator: string | bigint;
|
|
3142
3142
|
}>]>>>;
|
|
3143
3143
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3144
3144
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -3199,8 +3199,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3199
3199
|
numerator: number;
|
|
3200
3200
|
denominator: number;
|
|
3201
3201
|
} | {
|
|
3202
|
-
numerator: bigint;
|
|
3203
|
-
denominator: bigint;
|
|
3202
|
+
numerator: string | bigint;
|
|
3203
|
+
denominator: string | bigint;
|
|
3204
3204
|
} | undefined;
|
|
3205
3205
|
isNft?: boolean | undefined;
|
|
3206
3206
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3222,14 +3222,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3222
3222
|
numerator: number;
|
|
3223
3223
|
denominator: number;
|
|
3224
3224
|
}>, z.ZodObject<{
|
|
3225
|
-
numerator: z.ZodBigInt
|
|
3226
|
-
denominator: z.ZodBigInt
|
|
3225
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3226
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3227
3227
|
}, "strip", z.ZodTypeAny, {
|
|
3228
3228
|
numerator: bigint;
|
|
3229
3229
|
denominator: bigint;
|
|
3230
3230
|
}, {
|
|
3231
|
-
numerator: bigint;
|
|
3232
|
-
denominator: bigint;
|
|
3231
|
+
numerator: string | bigint;
|
|
3232
|
+
denominator: string | bigint;
|
|
3233
3233
|
}>]>>>;
|
|
3234
3234
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3235
3235
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3280,8 +3280,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3280
3280
|
numerator: number;
|
|
3281
3281
|
denominator: number;
|
|
3282
3282
|
} | {
|
|
3283
|
-
numerator: bigint;
|
|
3284
|
-
denominator: bigint;
|
|
3283
|
+
numerator: string | bigint;
|
|
3284
|
+
denominator: string | bigint;
|
|
3285
3285
|
} | undefined;
|
|
3286
3286
|
isNft?: boolean | undefined;
|
|
3287
3287
|
}>, z.ZodObject<{
|
|
@@ -3298,14 +3298,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3298
3298
|
numerator: number;
|
|
3299
3299
|
denominator: number;
|
|
3300
3300
|
}>, z.ZodObject<{
|
|
3301
|
-
numerator: z.ZodBigInt
|
|
3302
|
-
denominator: z.ZodBigInt
|
|
3301
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3302
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3303
3303
|
}, "strip", z.ZodTypeAny, {
|
|
3304
3304
|
numerator: bigint;
|
|
3305
3305
|
denominator: bigint;
|
|
3306
3306
|
}, {
|
|
3307
|
-
numerator: bigint;
|
|
3308
|
-
denominator: bigint;
|
|
3307
|
+
numerator: string | bigint;
|
|
3308
|
+
denominator: string | bigint;
|
|
3309
3309
|
}>]>>>;
|
|
3310
3310
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3311
3311
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3358,8 +3358,8 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3358
3358
|
numerator: number;
|
|
3359
3359
|
denominator: number;
|
|
3360
3360
|
} | {
|
|
3361
|
-
numerator: bigint;
|
|
3362
|
-
denominator: bigint;
|
|
3361
|
+
numerator: string | bigint;
|
|
3362
|
+
denominator: string | bigint;
|
|
3363
3363
|
} | undefined;
|
|
3364
3364
|
isNft?: boolean | undefined;
|
|
3365
3365
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3381,14 +3381,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3381
3381
|
numerator: number;
|
|
3382
3382
|
denominator: number;
|
|
3383
3383
|
}>, z.ZodObject<{
|
|
3384
|
-
numerator: z.ZodBigInt
|
|
3385
|
-
denominator: z.ZodBigInt
|
|
3384
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3385
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3386
3386
|
}, "strip", z.ZodTypeAny, {
|
|
3387
3387
|
numerator: bigint;
|
|
3388
3388
|
denominator: bigint;
|
|
3389
3389
|
}, {
|
|
3390
|
-
numerator: bigint;
|
|
3391
|
-
denominator: bigint;
|
|
3390
|
+
numerator: string | bigint;
|
|
3391
|
+
denominator: string | bigint;
|
|
3392
3392
|
}>]>>>;
|
|
3393
3393
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3394
3394
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3408,14 +3408,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3408
3408
|
numerator: number;
|
|
3409
3409
|
denominator: number;
|
|
3410
3410
|
}>, z.ZodObject<{
|
|
3411
|
-
numerator: z.ZodBigInt
|
|
3412
|
-
denominator: z.ZodBigInt
|
|
3411
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3412
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3413
3413
|
}, "strip", z.ZodTypeAny, {
|
|
3414
3414
|
numerator: bigint;
|
|
3415
3415
|
denominator: bigint;
|
|
3416
3416
|
}, {
|
|
3417
|
-
numerator: bigint;
|
|
3418
|
-
denominator: bigint;
|
|
3417
|
+
numerator: string | bigint;
|
|
3418
|
+
denominator: string | bigint;
|
|
3419
3419
|
}>]>>>;
|
|
3420
3420
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3421
3421
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3435,14 +3435,14 @@ declare const AllHypTokenConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3435
3435
|
numerator: number;
|
|
3436
3436
|
denominator: number;
|
|
3437
3437
|
}>, z.ZodObject<{
|
|
3438
|
-
numerator: z.ZodBigInt
|
|
3439
|
-
denominator: z.ZodBigInt
|
|
3438
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3439
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3440
3440
|
}, "strip", z.ZodTypeAny, {
|
|
3441
3441
|
numerator: bigint;
|
|
3442
3442
|
denominator: bigint;
|
|
3443
3443
|
}, {
|
|
3444
|
-
numerator: bigint;
|
|
3445
|
-
denominator: bigint;
|
|
3444
|
+
numerator: string | bigint;
|
|
3445
|
+
denominator: string | bigint;
|
|
3446
3446
|
}>]>>>;
|
|
3447
3447
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3448
3448
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3469,14 +3469,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3469
3469
|
numerator: number;
|
|
3470
3470
|
denominator: number;
|
|
3471
3471
|
}>, z.ZodObject<{
|
|
3472
|
-
numerator: z.ZodBigInt
|
|
3473
|
-
denominator: z.ZodBigInt
|
|
3472
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3473
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3474
3474
|
}, "strip", z.ZodTypeAny, {
|
|
3475
3475
|
numerator: bigint;
|
|
3476
3476
|
denominator: bigint;
|
|
3477
3477
|
}, {
|
|
3478
|
-
numerator: bigint;
|
|
3479
|
-
denominator: bigint;
|
|
3478
|
+
numerator: string | bigint;
|
|
3479
|
+
denominator: string | bigint;
|
|
3480
3480
|
}>]>>>;
|
|
3481
3481
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3482
3482
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3522,8 +3522,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3522
3522
|
numerator: number;
|
|
3523
3523
|
denominator: number;
|
|
3524
3524
|
} | {
|
|
3525
|
-
numerator: bigint;
|
|
3526
|
-
denominator: bigint;
|
|
3525
|
+
numerator: string | bigint;
|
|
3526
|
+
denominator: string | bigint;
|
|
3527
3527
|
} | undefined;
|
|
3528
3528
|
isNft?: boolean | undefined;
|
|
3529
3529
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3545,14 +3545,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3545
3545
|
numerator: number;
|
|
3546
3546
|
denominator: number;
|
|
3547
3547
|
}>, z.ZodObject<{
|
|
3548
|
-
numerator: z.ZodBigInt
|
|
3549
|
-
denominator: z.ZodBigInt
|
|
3548
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3549
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3550
3550
|
}, "strip", z.ZodTypeAny, {
|
|
3551
3551
|
numerator: bigint;
|
|
3552
3552
|
denominator: bigint;
|
|
3553
3553
|
}, {
|
|
3554
|
-
numerator: bigint;
|
|
3555
|
-
denominator: bigint;
|
|
3554
|
+
numerator: string | bigint;
|
|
3555
|
+
denominator: string | bigint;
|
|
3556
3556
|
}>]>>>;
|
|
3557
3557
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3558
3558
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3603,8 +3603,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3603
3603
|
numerator: number;
|
|
3604
3604
|
denominator: number;
|
|
3605
3605
|
} | {
|
|
3606
|
-
numerator: bigint;
|
|
3607
|
-
denominator: bigint;
|
|
3606
|
+
numerator: string | bigint;
|
|
3607
|
+
denominator: string | bigint;
|
|
3608
3608
|
} | undefined;
|
|
3609
3609
|
isNft?: boolean | undefined;
|
|
3610
3610
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3626,14 +3626,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3626
3626
|
numerator: number;
|
|
3627
3627
|
denominator: number;
|
|
3628
3628
|
}>, z.ZodObject<{
|
|
3629
|
-
numerator: z.ZodBigInt
|
|
3630
|
-
denominator: z.ZodBigInt
|
|
3629
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3630
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3631
3631
|
}, "strip", z.ZodTypeAny, {
|
|
3632
3632
|
numerator: bigint;
|
|
3633
3633
|
denominator: bigint;
|
|
3634
3634
|
}, {
|
|
3635
|
-
numerator: bigint;
|
|
3636
|
-
denominator: bigint;
|
|
3635
|
+
numerator: string | bigint;
|
|
3636
|
+
denominator: string | bigint;
|
|
3637
3637
|
}>]>>>;
|
|
3638
3638
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3639
3639
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3697,8 +3697,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3697
3697
|
numerator: number;
|
|
3698
3698
|
denominator: number;
|
|
3699
3699
|
} | {
|
|
3700
|
-
numerator: bigint;
|
|
3701
|
-
denominator: bigint;
|
|
3700
|
+
numerator: string | bigint;
|
|
3701
|
+
denominator: string | bigint;
|
|
3702
3702
|
} | undefined;
|
|
3703
3703
|
isNft?: boolean | undefined;
|
|
3704
3704
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3720,14 +3720,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3720
3720
|
numerator: number;
|
|
3721
3721
|
denominator: number;
|
|
3722
3722
|
}>, z.ZodObject<{
|
|
3723
|
-
numerator: z.ZodBigInt
|
|
3724
|
-
denominator: z.ZodBigInt
|
|
3723
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3724
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3725
3725
|
}, "strip", z.ZodTypeAny, {
|
|
3726
3726
|
numerator: bigint;
|
|
3727
3727
|
denominator: bigint;
|
|
3728
3728
|
}, {
|
|
3729
|
-
numerator: bigint;
|
|
3730
|
-
denominator: bigint;
|
|
3729
|
+
numerator: string | bigint;
|
|
3730
|
+
denominator: string | bigint;
|
|
3731
3731
|
}>]>>>;
|
|
3732
3732
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3733
3733
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3776,8 +3776,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3776
3776
|
numerator: number;
|
|
3777
3777
|
denominator: number;
|
|
3778
3778
|
} | {
|
|
3779
|
-
numerator: bigint;
|
|
3780
|
-
denominator: bigint;
|
|
3779
|
+
numerator: string | bigint;
|
|
3780
|
+
denominator: string | bigint;
|
|
3781
3781
|
} | undefined;
|
|
3782
3782
|
isNft?: boolean | undefined;
|
|
3783
3783
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -3799,14 +3799,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
3799
3799
|
numerator: number;
|
|
3800
3800
|
denominator: number;
|
|
3801
3801
|
}>, z.ZodObject<{
|
|
3802
|
-
numerator: z.ZodBigInt
|
|
3803
|
-
denominator: z.ZodBigInt
|
|
3802
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3803
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
3804
3804
|
}, "strip", z.ZodTypeAny, {
|
|
3805
3805
|
numerator: bigint;
|
|
3806
3806
|
denominator: bigint;
|
|
3807
3807
|
}, {
|
|
3808
|
-
numerator: bigint;
|
|
3809
|
-
denominator: bigint;
|
|
3808
|
+
numerator: string | bigint;
|
|
3809
|
+
denominator: string | bigint;
|
|
3810
3810
|
}>]>>>;
|
|
3811
3811
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3812
3812
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4025,8 +4025,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4025
4025
|
numerator: number;
|
|
4026
4026
|
denominator: number;
|
|
4027
4027
|
} | {
|
|
4028
|
-
numerator: bigint;
|
|
4029
|
-
denominator: bigint;
|
|
4028
|
+
numerator: string | bigint;
|
|
4029
|
+
denominator: string | bigint;
|
|
4030
4030
|
} | undefined;
|
|
4031
4031
|
isNft?: boolean | undefined;
|
|
4032
4032
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -4048,14 +4048,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4048
4048
|
numerator: number;
|
|
4049
4049
|
denominator: number;
|
|
4050
4050
|
}>, z.ZodObject<{
|
|
4051
|
-
numerator: z.ZodBigInt
|
|
4052
|
-
denominator: z.ZodBigInt
|
|
4051
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4052
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4053
4053
|
}, "strip", z.ZodTypeAny, {
|
|
4054
4054
|
numerator: bigint;
|
|
4055
4055
|
denominator: bigint;
|
|
4056
4056
|
}, {
|
|
4057
|
-
numerator: bigint;
|
|
4058
|
-
denominator: bigint;
|
|
4057
|
+
numerator: string | bigint;
|
|
4058
|
+
denominator: string | bigint;
|
|
4059
4059
|
}>]>>>;
|
|
4060
4060
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4061
4061
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4089,8 +4089,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4089
4089
|
numerator: number;
|
|
4090
4090
|
denominator: number;
|
|
4091
4091
|
} | {
|
|
4092
|
-
numerator: bigint;
|
|
4093
|
-
denominator: bigint;
|
|
4092
|
+
numerator: string | bigint;
|
|
4093
|
+
denominator: string | bigint;
|
|
4094
4094
|
} | undefined;
|
|
4095
4095
|
isNft?: boolean | undefined;
|
|
4096
4096
|
initialSupply?: string | number | undefined;
|
|
@@ -4109,14 +4109,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4109
4109
|
numerator: number;
|
|
4110
4110
|
denominator: number;
|
|
4111
4111
|
}>, z.ZodObject<{
|
|
4112
|
-
numerator: z.ZodBigInt
|
|
4113
|
-
denominator: z.ZodBigInt
|
|
4112
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4113
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4114
4114
|
}, "strip", z.ZodTypeAny, {
|
|
4115
4115
|
numerator: bigint;
|
|
4116
4116
|
denominator: bigint;
|
|
4117
4117
|
}, {
|
|
4118
|
-
numerator: bigint;
|
|
4119
|
-
denominator: bigint;
|
|
4118
|
+
numerator: string | bigint;
|
|
4119
|
+
denominator: string | bigint;
|
|
4120
4120
|
}>]>>>;
|
|
4121
4121
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4122
4122
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4149,8 +4149,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4149
4149
|
numerator: number;
|
|
4150
4150
|
denominator: number;
|
|
4151
4151
|
} | {
|
|
4152
|
-
numerator: bigint;
|
|
4153
|
-
denominator: bigint;
|
|
4152
|
+
numerator: string | bigint;
|
|
4153
|
+
denominator: string | bigint;
|
|
4154
4154
|
} | undefined;
|
|
4155
4155
|
isNft?: boolean | undefined;
|
|
4156
4156
|
}>, z.ZodObject<{
|
|
@@ -4167,14 +4167,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4167
4167
|
numerator: number;
|
|
4168
4168
|
denominator: number;
|
|
4169
4169
|
}>, z.ZodObject<{
|
|
4170
|
-
numerator: z.ZodBigInt
|
|
4171
|
-
denominator: z.ZodBigInt
|
|
4170
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4171
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4172
4172
|
}, "strip", z.ZodTypeAny, {
|
|
4173
4173
|
numerator: bigint;
|
|
4174
4174
|
denominator: bigint;
|
|
4175
4175
|
}, {
|
|
4176
|
-
numerator: bigint;
|
|
4177
|
-
denominator: bigint;
|
|
4176
|
+
numerator: string | bigint;
|
|
4177
|
+
denominator: string | bigint;
|
|
4178
4178
|
}>]>>>;
|
|
4179
4179
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4180
4180
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4230,8 +4230,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4230
4230
|
numerator: number;
|
|
4231
4231
|
denominator: number;
|
|
4232
4232
|
} | {
|
|
4233
|
-
numerator: bigint;
|
|
4234
|
-
denominator: bigint;
|
|
4233
|
+
numerator: string | bigint;
|
|
4234
|
+
denominator: string | bigint;
|
|
4235
4235
|
} | undefined;
|
|
4236
4236
|
isNft?: boolean | undefined;
|
|
4237
4237
|
minFinalityThreshold?: number | undefined;
|
|
@@ -4250,14 +4250,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4250
4250
|
numerator: number;
|
|
4251
4251
|
denominator: number;
|
|
4252
4252
|
}>, z.ZodObject<{
|
|
4253
|
-
numerator: z.ZodBigInt
|
|
4254
|
-
denominator: z.ZodBigInt
|
|
4253
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4254
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4255
4255
|
}, "strip", z.ZodTypeAny, {
|
|
4256
4256
|
numerator: bigint;
|
|
4257
4257
|
denominator: bigint;
|
|
4258
4258
|
}, {
|
|
4259
|
-
numerator: bigint;
|
|
4260
|
-
denominator: bigint;
|
|
4259
|
+
numerator: string | bigint;
|
|
4260
|
+
denominator: string | bigint;
|
|
4261
4261
|
}>]>>>;
|
|
4262
4262
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4263
4263
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4298,8 +4298,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4298
4298
|
numerator: number;
|
|
4299
4299
|
denominator: number;
|
|
4300
4300
|
} | {
|
|
4301
|
-
numerator: bigint;
|
|
4302
|
-
denominator: bigint;
|
|
4301
|
+
numerator: string | bigint;
|
|
4302
|
+
denominator: string | bigint;
|
|
4303
4303
|
} | undefined;
|
|
4304
4304
|
isNft?: boolean | undefined;
|
|
4305
4305
|
extraOptions?: string | undefined;
|
|
@@ -4334,14 +4334,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4334
4334
|
numerator: number;
|
|
4335
4335
|
denominator: number;
|
|
4336
4336
|
}>, z.ZodObject<{
|
|
4337
|
-
numerator: z.ZodBigInt
|
|
4338
|
-
denominator: z.ZodBigInt
|
|
4337
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4338
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4339
4339
|
}, "strip", z.ZodTypeAny, {
|
|
4340
4340
|
numerator: bigint;
|
|
4341
4341
|
denominator: bigint;
|
|
4342
4342
|
}, {
|
|
4343
|
-
numerator: bigint;
|
|
4344
|
-
denominator: bigint;
|
|
4343
|
+
numerator: string | bigint;
|
|
4344
|
+
denominator: string | bigint;
|
|
4345
4345
|
}>]>>>;
|
|
4346
4346
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4347
4347
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -4401,8 +4401,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4401
4401
|
numerator: number;
|
|
4402
4402
|
denominator: number;
|
|
4403
4403
|
} | {
|
|
4404
|
-
numerator: bigint;
|
|
4405
|
-
denominator: bigint;
|
|
4404
|
+
numerator: string | bigint;
|
|
4405
|
+
denominator: string | bigint;
|
|
4406
4406
|
} | undefined;
|
|
4407
4407
|
isNft?: boolean | undefined;
|
|
4408
4408
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -4440,14 +4440,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4440
4440
|
numerator: number;
|
|
4441
4441
|
denominator: number;
|
|
4442
4442
|
}>, z.ZodObject<{
|
|
4443
|
-
numerator: z.ZodBigInt
|
|
4444
|
-
denominator: z.ZodBigInt
|
|
4443
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4444
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4445
4445
|
}, "strip", z.ZodTypeAny, {
|
|
4446
4446
|
numerator: bigint;
|
|
4447
4447
|
denominator: bigint;
|
|
4448
4448
|
}, {
|
|
4449
|
-
numerator: bigint;
|
|
4450
|
-
denominator: bigint;
|
|
4449
|
+
numerator: string | bigint;
|
|
4450
|
+
denominator: string | bigint;
|
|
4451
4451
|
}>]>>>;
|
|
4452
4452
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4453
4453
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -4508,8 +4508,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4508
4508
|
numerator: number;
|
|
4509
4509
|
denominator: number;
|
|
4510
4510
|
} | {
|
|
4511
|
-
numerator: bigint;
|
|
4512
|
-
denominator: bigint;
|
|
4511
|
+
numerator: string | bigint;
|
|
4512
|
+
denominator: string | bigint;
|
|
4513
4513
|
} | undefined;
|
|
4514
4514
|
isNft?: boolean | undefined;
|
|
4515
4515
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -4531,14 +4531,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4531
4531
|
numerator: number;
|
|
4532
4532
|
denominator: number;
|
|
4533
4533
|
}>, z.ZodObject<{
|
|
4534
|
-
numerator: z.ZodBigInt
|
|
4535
|
-
denominator: z.ZodBigInt
|
|
4534
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4535
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4536
4536
|
}, "strip", z.ZodTypeAny, {
|
|
4537
4537
|
numerator: bigint;
|
|
4538
4538
|
denominator: bigint;
|
|
4539
4539
|
}, {
|
|
4540
|
-
numerator: bigint;
|
|
4541
|
-
denominator: bigint;
|
|
4540
|
+
numerator: string | bigint;
|
|
4541
|
+
denominator: string | bigint;
|
|
4542
4542
|
}>]>>>;
|
|
4543
4543
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4544
4544
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4589,8 +4589,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4589
4589
|
numerator: number;
|
|
4590
4590
|
denominator: number;
|
|
4591
4591
|
} | {
|
|
4592
|
-
numerator: bigint;
|
|
4593
|
-
denominator: bigint;
|
|
4592
|
+
numerator: string | bigint;
|
|
4593
|
+
denominator: string | bigint;
|
|
4594
4594
|
} | undefined;
|
|
4595
4595
|
isNft?: boolean | undefined;
|
|
4596
4596
|
}>, z.ZodObject<{
|
|
@@ -4607,14 +4607,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4607
4607
|
numerator: number;
|
|
4608
4608
|
denominator: number;
|
|
4609
4609
|
}>, z.ZodObject<{
|
|
4610
|
-
numerator: z.ZodBigInt
|
|
4611
|
-
denominator: z.ZodBigInt
|
|
4610
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4611
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4612
4612
|
}, "strip", z.ZodTypeAny, {
|
|
4613
4613
|
numerator: bigint;
|
|
4614
4614
|
denominator: bigint;
|
|
4615
4615
|
}, {
|
|
4616
|
-
numerator: bigint;
|
|
4617
|
-
denominator: bigint;
|
|
4616
|
+
numerator: string | bigint;
|
|
4617
|
+
denominator: string | bigint;
|
|
4618
4618
|
}>]>>>;
|
|
4619
4619
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4620
4620
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4667,8 +4667,8 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4667
4667
|
numerator: number;
|
|
4668
4668
|
denominator: number;
|
|
4669
4669
|
} | {
|
|
4670
|
-
numerator: bigint;
|
|
4671
|
-
denominator: bigint;
|
|
4670
|
+
numerator: string | bigint;
|
|
4671
|
+
denominator: string | bigint;
|
|
4672
4672
|
} | undefined;
|
|
4673
4673
|
isNft?: boolean | undefined;
|
|
4674
4674
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -4690,14 +4690,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4690
4690
|
numerator: number;
|
|
4691
4691
|
denominator: number;
|
|
4692
4692
|
}>, z.ZodObject<{
|
|
4693
|
-
numerator: z.ZodBigInt
|
|
4694
|
-
denominator: z.ZodBigInt
|
|
4693
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4694
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4695
4695
|
}, "strip", z.ZodTypeAny, {
|
|
4696
4696
|
numerator: bigint;
|
|
4697
4697
|
denominator: bigint;
|
|
4698
4698
|
}, {
|
|
4699
|
-
numerator: bigint;
|
|
4700
|
-
denominator: bigint;
|
|
4699
|
+
numerator: string | bigint;
|
|
4700
|
+
denominator: string | bigint;
|
|
4701
4701
|
}>]>>>;
|
|
4702
4702
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4703
4703
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4717,14 +4717,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4717
4717
|
numerator: number;
|
|
4718
4718
|
denominator: number;
|
|
4719
4719
|
}>, z.ZodObject<{
|
|
4720
|
-
numerator: z.ZodBigInt
|
|
4721
|
-
denominator: z.ZodBigInt
|
|
4720
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4721
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4722
4722
|
}, "strip", z.ZodTypeAny, {
|
|
4723
4723
|
numerator: bigint;
|
|
4724
4724
|
denominator: bigint;
|
|
4725
4725
|
}, {
|
|
4726
|
-
numerator: bigint;
|
|
4727
|
-
denominator: bigint;
|
|
4726
|
+
numerator: string | bigint;
|
|
4727
|
+
denominator: string | bigint;
|
|
4728
4728
|
}>]>>>;
|
|
4729
4729
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4730
4730
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4744,14 +4744,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
4744
4744
|
numerator: number;
|
|
4745
4745
|
denominator: number;
|
|
4746
4746
|
}>, z.ZodObject<{
|
|
4747
|
-
numerator: z.ZodBigInt
|
|
4748
|
-
denominator: z.ZodBigInt
|
|
4747
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4748
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
4749
4749
|
}, "strip", z.ZodTypeAny, {
|
|
4750
4750
|
numerator: bigint;
|
|
4751
4751
|
denominator: bigint;
|
|
4752
4752
|
}, {
|
|
4753
|
-
numerator: bigint;
|
|
4754
|
-
denominator: bigint;
|
|
4753
|
+
numerator: string | bigint;
|
|
4754
|
+
denominator: string | bigint;
|
|
4755
4755
|
}>]>>>;
|
|
4756
4756
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4757
4757
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5061,14 +5061,14 @@ export declare const HypTokenConfigSchema: z.ZodEffects<z.ZodDiscriminatedUnion<
|
|
|
5061
5061
|
numerator: number;
|
|
5062
5062
|
denominator: number;
|
|
5063
5063
|
}>, z.ZodObject<{
|
|
5064
|
-
numerator: z.ZodBigInt
|
|
5065
|
-
denominator: z.ZodBigInt
|
|
5064
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5065
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5066
5066
|
}, "strip", z.ZodTypeAny, {
|
|
5067
5067
|
numerator: bigint;
|
|
5068
5068
|
denominator: bigint;
|
|
5069
5069
|
}, {
|
|
5070
|
-
numerator: bigint;
|
|
5071
|
-
denominator: bigint;
|
|
5070
|
+
numerator: string | bigint;
|
|
5071
|
+
denominator: string | bigint;
|
|
5072
5072
|
}>]>>>;
|
|
5073
5073
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5074
5074
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5089,14 +5089,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5089
5089
|
numerator: number;
|
|
5090
5090
|
denominator: number;
|
|
5091
5091
|
}>, z.ZodObject<{
|
|
5092
|
-
numerator: z.ZodBigInt
|
|
5093
|
-
denominator: z.ZodBigInt
|
|
5092
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5093
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5094
5094
|
}, "strip", z.ZodTypeAny, {
|
|
5095
5095
|
numerator: bigint;
|
|
5096
5096
|
denominator: bigint;
|
|
5097
5097
|
}, {
|
|
5098
|
-
numerator: bigint;
|
|
5099
|
-
denominator: bigint;
|
|
5098
|
+
numerator: string | bigint;
|
|
5099
|
+
denominator: string | bigint;
|
|
5100
5100
|
}>]>>>;
|
|
5101
5101
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5102
5102
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5142,8 +5142,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5142
5142
|
numerator: number;
|
|
5143
5143
|
denominator: number;
|
|
5144
5144
|
} | {
|
|
5145
|
-
numerator: bigint;
|
|
5146
|
-
denominator: bigint;
|
|
5145
|
+
numerator: string | bigint;
|
|
5146
|
+
denominator: string | bigint;
|
|
5147
5147
|
} | undefined;
|
|
5148
5148
|
isNft?: boolean | undefined;
|
|
5149
5149
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -5165,14 +5165,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5165
5165
|
numerator: number;
|
|
5166
5166
|
denominator: number;
|
|
5167
5167
|
}>, z.ZodObject<{
|
|
5168
|
-
numerator: z.ZodBigInt
|
|
5169
|
-
denominator: z.ZodBigInt
|
|
5168
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5169
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5170
5170
|
}, "strip", z.ZodTypeAny, {
|
|
5171
5171
|
numerator: bigint;
|
|
5172
5172
|
denominator: bigint;
|
|
5173
5173
|
}, {
|
|
5174
|
-
numerator: bigint;
|
|
5175
|
-
denominator: bigint;
|
|
5174
|
+
numerator: string | bigint;
|
|
5175
|
+
denominator: string | bigint;
|
|
5176
5176
|
}>]>>>;
|
|
5177
5177
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5178
5178
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5223,8 +5223,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5223
5223
|
numerator: number;
|
|
5224
5224
|
denominator: number;
|
|
5225
5225
|
} | {
|
|
5226
|
-
numerator: bigint;
|
|
5227
|
-
denominator: bigint;
|
|
5226
|
+
numerator: string | bigint;
|
|
5227
|
+
denominator: string | bigint;
|
|
5228
5228
|
} | undefined;
|
|
5229
5229
|
isNft?: boolean | undefined;
|
|
5230
5230
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -5246,14 +5246,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5246
5246
|
numerator: number;
|
|
5247
5247
|
denominator: number;
|
|
5248
5248
|
}>, z.ZodObject<{
|
|
5249
|
-
numerator: z.ZodBigInt
|
|
5250
|
-
denominator: z.ZodBigInt
|
|
5249
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5250
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5251
5251
|
}, "strip", z.ZodTypeAny, {
|
|
5252
5252
|
numerator: bigint;
|
|
5253
5253
|
denominator: bigint;
|
|
5254
5254
|
}, {
|
|
5255
|
-
numerator: bigint;
|
|
5256
|
-
denominator: bigint;
|
|
5255
|
+
numerator: string | bigint;
|
|
5256
|
+
denominator: string | bigint;
|
|
5257
5257
|
}>]>>>;
|
|
5258
5258
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5259
5259
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5317,8 +5317,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5317
5317
|
numerator: number;
|
|
5318
5318
|
denominator: number;
|
|
5319
5319
|
} | {
|
|
5320
|
-
numerator: bigint;
|
|
5321
|
-
denominator: bigint;
|
|
5320
|
+
numerator: string | bigint;
|
|
5321
|
+
denominator: string | bigint;
|
|
5322
5322
|
} | undefined;
|
|
5323
5323
|
isNft?: boolean | undefined;
|
|
5324
5324
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -5340,14 +5340,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5340
5340
|
numerator: number;
|
|
5341
5341
|
denominator: number;
|
|
5342
5342
|
}>, z.ZodObject<{
|
|
5343
|
-
numerator: z.ZodBigInt
|
|
5344
|
-
denominator: z.ZodBigInt
|
|
5343
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5344
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5345
5345
|
}, "strip", z.ZodTypeAny, {
|
|
5346
5346
|
numerator: bigint;
|
|
5347
5347
|
denominator: bigint;
|
|
5348
5348
|
}, {
|
|
5349
|
-
numerator: bigint;
|
|
5350
|
-
denominator: bigint;
|
|
5349
|
+
numerator: string | bigint;
|
|
5350
|
+
denominator: string | bigint;
|
|
5351
5351
|
}>]>>>;
|
|
5352
5352
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5353
5353
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5396,8 +5396,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5396
5396
|
numerator: number;
|
|
5397
5397
|
denominator: number;
|
|
5398
5398
|
} | {
|
|
5399
|
-
numerator: bigint;
|
|
5400
|
-
denominator: bigint;
|
|
5399
|
+
numerator: string | bigint;
|
|
5400
|
+
denominator: string | bigint;
|
|
5401
5401
|
} | undefined;
|
|
5402
5402
|
isNft?: boolean | undefined;
|
|
5403
5403
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -5419,14 +5419,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5419
5419
|
numerator: number;
|
|
5420
5420
|
denominator: number;
|
|
5421
5421
|
}>, z.ZodObject<{
|
|
5422
|
-
numerator: z.ZodBigInt
|
|
5423
|
-
denominator: z.ZodBigInt
|
|
5422
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5423
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5424
5424
|
}, "strip", z.ZodTypeAny, {
|
|
5425
5425
|
numerator: bigint;
|
|
5426
5426
|
denominator: bigint;
|
|
5427
5427
|
}, {
|
|
5428
|
-
numerator: bigint;
|
|
5429
|
-
denominator: bigint;
|
|
5428
|
+
numerator: string | bigint;
|
|
5429
|
+
denominator: string | bigint;
|
|
5430
5430
|
}>]>>>;
|
|
5431
5431
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5432
5432
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5645,8 +5645,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5645
5645
|
numerator: number;
|
|
5646
5646
|
denominator: number;
|
|
5647
5647
|
} | {
|
|
5648
|
-
numerator: bigint;
|
|
5649
|
-
denominator: bigint;
|
|
5648
|
+
numerator: string | bigint;
|
|
5649
|
+
denominator: string | bigint;
|
|
5650
5650
|
} | undefined;
|
|
5651
5651
|
isNft?: boolean | undefined;
|
|
5652
5652
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -5668,14 +5668,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5668
5668
|
numerator: number;
|
|
5669
5669
|
denominator: number;
|
|
5670
5670
|
}>, z.ZodObject<{
|
|
5671
|
-
numerator: z.ZodBigInt
|
|
5672
|
-
denominator: z.ZodBigInt
|
|
5671
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5672
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5673
5673
|
}, "strip", z.ZodTypeAny, {
|
|
5674
5674
|
numerator: bigint;
|
|
5675
5675
|
denominator: bigint;
|
|
5676
5676
|
}, {
|
|
5677
|
-
numerator: bigint;
|
|
5678
|
-
denominator: bigint;
|
|
5677
|
+
numerator: string | bigint;
|
|
5678
|
+
denominator: string | bigint;
|
|
5679
5679
|
}>]>>>;
|
|
5680
5680
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5681
5681
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5709,8 +5709,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5709
5709
|
numerator: number;
|
|
5710
5710
|
denominator: number;
|
|
5711
5711
|
} | {
|
|
5712
|
-
numerator: bigint;
|
|
5713
|
-
denominator: bigint;
|
|
5712
|
+
numerator: string | bigint;
|
|
5713
|
+
denominator: string | bigint;
|
|
5714
5714
|
} | undefined;
|
|
5715
5715
|
isNft?: boolean | undefined;
|
|
5716
5716
|
initialSupply?: string | number | undefined;
|
|
@@ -5729,14 +5729,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5729
5729
|
numerator: number;
|
|
5730
5730
|
denominator: number;
|
|
5731
5731
|
}>, z.ZodObject<{
|
|
5732
|
-
numerator: z.ZodBigInt
|
|
5733
|
-
denominator: z.ZodBigInt
|
|
5732
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5733
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5734
5734
|
}, "strip", z.ZodTypeAny, {
|
|
5735
5735
|
numerator: bigint;
|
|
5736
5736
|
denominator: bigint;
|
|
5737
5737
|
}, {
|
|
5738
|
-
numerator: bigint;
|
|
5739
|
-
denominator: bigint;
|
|
5738
|
+
numerator: string | bigint;
|
|
5739
|
+
denominator: string | bigint;
|
|
5740
5740
|
}>]>>>;
|
|
5741
5741
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5742
5742
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5769,8 +5769,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5769
5769
|
numerator: number;
|
|
5770
5770
|
denominator: number;
|
|
5771
5771
|
} | {
|
|
5772
|
-
numerator: bigint;
|
|
5773
|
-
denominator: bigint;
|
|
5772
|
+
numerator: string | bigint;
|
|
5773
|
+
denominator: string | bigint;
|
|
5774
5774
|
} | undefined;
|
|
5775
5775
|
isNft?: boolean | undefined;
|
|
5776
5776
|
}>, z.ZodObject<{
|
|
@@ -5787,14 +5787,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5787
5787
|
numerator: number;
|
|
5788
5788
|
denominator: number;
|
|
5789
5789
|
}>, z.ZodObject<{
|
|
5790
|
-
numerator: z.ZodBigInt
|
|
5791
|
-
denominator: z.ZodBigInt
|
|
5790
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5791
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5792
5792
|
}, "strip", z.ZodTypeAny, {
|
|
5793
5793
|
numerator: bigint;
|
|
5794
5794
|
denominator: bigint;
|
|
5795
5795
|
}, {
|
|
5796
|
-
numerator: bigint;
|
|
5797
|
-
denominator: bigint;
|
|
5796
|
+
numerator: string | bigint;
|
|
5797
|
+
denominator: string | bigint;
|
|
5798
5798
|
}>]>>>;
|
|
5799
5799
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5800
5800
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5850,8 +5850,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5850
5850
|
numerator: number;
|
|
5851
5851
|
denominator: number;
|
|
5852
5852
|
} | {
|
|
5853
|
-
numerator: bigint;
|
|
5854
|
-
denominator: bigint;
|
|
5853
|
+
numerator: string | bigint;
|
|
5854
|
+
denominator: string | bigint;
|
|
5855
5855
|
} | undefined;
|
|
5856
5856
|
isNft?: boolean | undefined;
|
|
5857
5857
|
minFinalityThreshold?: number | undefined;
|
|
@@ -5870,14 +5870,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5870
5870
|
numerator: number;
|
|
5871
5871
|
denominator: number;
|
|
5872
5872
|
}>, z.ZodObject<{
|
|
5873
|
-
numerator: z.ZodBigInt
|
|
5874
|
-
denominator: z.ZodBigInt
|
|
5873
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5874
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5875
5875
|
}, "strip", z.ZodTypeAny, {
|
|
5876
5876
|
numerator: bigint;
|
|
5877
5877
|
denominator: bigint;
|
|
5878
5878
|
}, {
|
|
5879
|
-
numerator: bigint;
|
|
5880
|
-
denominator: bigint;
|
|
5879
|
+
numerator: string | bigint;
|
|
5880
|
+
denominator: string | bigint;
|
|
5881
5881
|
}>]>>>;
|
|
5882
5882
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5883
5883
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5918,8 +5918,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5918
5918
|
numerator: number;
|
|
5919
5919
|
denominator: number;
|
|
5920
5920
|
} | {
|
|
5921
|
-
numerator: bigint;
|
|
5922
|
-
denominator: bigint;
|
|
5921
|
+
numerator: string | bigint;
|
|
5922
|
+
denominator: string | bigint;
|
|
5923
5923
|
} | undefined;
|
|
5924
5924
|
isNft?: boolean | undefined;
|
|
5925
5925
|
extraOptions?: string | undefined;
|
|
@@ -5954,14 +5954,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
5954
5954
|
numerator: number;
|
|
5955
5955
|
denominator: number;
|
|
5956
5956
|
}>, z.ZodObject<{
|
|
5957
|
-
numerator: z.ZodBigInt
|
|
5958
|
-
denominator: z.ZodBigInt
|
|
5957
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5958
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
5959
5959
|
}, "strip", z.ZodTypeAny, {
|
|
5960
5960
|
numerator: bigint;
|
|
5961
5961
|
denominator: bigint;
|
|
5962
5962
|
}, {
|
|
5963
|
-
numerator: bigint;
|
|
5964
|
-
denominator: bigint;
|
|
5963
|
+
numerator: string | bigint;
|
|
5964
|
+
denominator: string | bigint;
|
|
5965
5965
|
}>]>>>;
|
|
5966
5966
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5967
5967
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -6021,8 +6021,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6021
6021
|
numerator: number;
|
|
6022
6022
|
denominator: number;
|
|
6023
6023
|
} | {
|
|
6024
|
-
numerator: bigint;
|
|
6025
|
-
denominator: bigint;
|
|
6024
|
+
numerator: string | bigint;
|
|
6025
|
+
denominator: string | bigint;
|
|
6026
6026
|
} | undefined;
|
|
6027
6027
|
isNft?: boolean | undefined;
|
|
6028
6028
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -6060,14 +6060,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6060
6060
|
numerator: number;
|
|
6061
6061
|
denominator: number;
|
|
6062
6062
|
}>, z.ZodObject<{
|
|
6063
|
-
numerator: z.ZodBigInt
|
|
6064
|
-
denominator: z.ZodBigInt
|
|
6063
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6064
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6065
6065
|
}, "strip", z.ZodTypeAny, {
|
|
6066
6066
|
numerator: bigint;
|
|
6067
6067
|
denominator: bigint;
|
|
6068
6068
|
}, {
|
|
6069
|
-
numerator: bigint;
|
|
6070
|
-
denominator: bigint;
|
|
6069
|
+
numerator: string | bigint;
|
|
6070
|
+
denominator: string | bigint;
|
|
6071
6071
|
}>]>>>;
|
|
6072
6072
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6073
6073
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -6128,8 +6128,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6128
6128
|
numerator: number;
|
|
6129
6129
|
denominator: number;
|
|
6130
6130
|
} | {
|
|
6131
|
-
numerator: bigint;
|
|
6132
|
-
denominator: bigint;
|
|
6131
|
+
numerator: string | bigint;
|
|
6132
|
+
denominator: string | bigint;
|
|
6133
6133
|
} | undefined;
|
|
6134
6134
|
isNft?: boolean | undefined;
|
|
6135
6135
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -6151,14 +6151,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6151
6151
|
numerator: number;
|
|
6152
6152
|
denominator: number;
|
|
6153
6153
|
}>, z.ZodObject<{
|
|
6154
|
-
numerator: z.ZodBigInt
|
|
6155
|
-
denominator: z.ZodBigInt
|
|
6154
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6155
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6156
6156
|
}, "strip", z.ZodTypeAny, {
|
|
6157
6157
|
numerator: bigint;
|
|
6158
6158
|
denominator: bigint;
|
|
6159
6159
|
}, {
|
|
6160
|
-
numerator: bigint;
|
|
6161
|
-
denominator: bigint;
|
|
6160
|
+
numerator: string | bigint;
|
|
6161
|
+
denominator: string | bigint;
|
|
6162
6162
|
}>]>>>;
|
|
6163
6163
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6164
6164
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6209,8 +6209,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6209
6209
|
numerator: number;
|
|
6210
6210
|
denominator: number;
|
|
6211
6211
|
} | {
|
|
6212
|
-
numerator: bigint;
|
|
6213
|
-
denominator: bigint;
|
|
6212
|
+
numerator: string | bigint;
|
|
6213
|
+
denominator: string | bigint;
|
|
6214
6214
|
} | undefined;
|
|
6215
6215
|
isNft?: boolean | undefined;
|
|
6216
6216
|
}>, z.ZodObject<{
|
|
@@ -6227,14 +6227,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6227
6227
|
numerator: number;
|
|
6228
6228
|
denominator: number;
|
|
6229
6229
|
}>, z.ZodObject<{
|
|
6230
|
-
numerator: z.ZodBigInt
|
|
6231
|
-
denominator: z.ZodBigInt
|
|
6230
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6231
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6232
6232
|
}, "strip", z.ZodTypeAny, {
|
|
6233
6233
|
numerator: bigint;
|
|
6234
6234
|
denominator: bigint;
|
|
6235
6235
|
}, {
|
|
6236
|
-
numerator: bigint;
|
|
6237
|
-
denominator: bigint;
|
|
6236
|
+
numerator: string | bigint;
|
|
6237
|
+
denominator: string | bigint;
|
|
6238
6238
|
}>]>>>;
|
|
6239
6239
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6240
6240
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6287,8 +6287,8 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6287
6287
|
numerator: number;
|
|
6288
6288
|
denominator: number;
|
|
6289
6289
|
} | {
|
|
6290
|
-
numerator: bigint;
|
|
6291
|
-
denominator: bigint;
|
|
6290
|
+
numerator: string | bigint;
|
|
6291
|
+
denominator: string | bigint;
|
|
6292
6292
|
} | undefined;
|
|
6293
6293
|
isNft?: boolean | undefined;
|
|
6294
6294
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -6310,14 +6310,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6310
6310
|
numerator: number;
|
|
6311
6311
|
denominator: number;
|
|
6312
6312
|
}>, z.ZodObject<{
|
|
6313
|
-
numerator: z.ZodBigInt
|
|
6314
|
-
denominator: z.ZodBigInt
|
|
6313
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6314
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6315
6315
|
}, "strip", z.ZodTypeAny, {
|
|
6316
6316
|
numerator: bigint;
|
|
6317
6317
|
denominator: bigint;
|
|
6318
6318
|
}, {
|
|
6319
|
-
numerator: bigint;
|
|
6320
|
-
denominator: bigint;
|
|
6319
|
+
numerator: string | bigint;
|
|
6320
|
+
denominator: string | bigint;
|
|
6321
6321
|
}>]>>>;
|
|
6322
6322
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6323
6323
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6337,14 +6337,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6337
6337
|
numerator: number;
|
|
6338
6338
|
denominator: number;
|
|
6339
6339
|
}>, z.ZodObject<{
|
|
6340
|
-
numerator: z.ZodBigInt
|
|
6341
|
-
denominator: z.ZodBigInt
|
|
6340
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6341
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6342
6342
|
}, "strip", z.ZodTypeAny, {
|
|
6343
6343
|
numerator: bigint;
|
|
6344
6344
|
denominator: bigint;
|
|
6345
6345
|
}, {
|
|
6346
|
-
numerator: bigint;
|
|
6347
|
-
denominator: bigint;
|
|
6346
|
+
numerator: string | bigint;
|
|
6347
|
+
denominator: string | bigint;
|
|
6348
6348
|
}>]>>>;
|
|
6349
6349
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6350
6350
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6364,14 +6364,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6364
6364
|
numerator: number;
|
|
6365
6365
|
denominator: number;
|
|
6366
6366
|
}>, z.ZodObject<{
|
|
6367
|
-
numerator: z.ZodBigInt
|
|
6368
|
-
denominator: z.ZodBigInt
|
|
6367
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6368
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6369
6369
|
}, "strip", z.ZodTypeAny, {
|
|
6370
6370
|
numerator: bigint;
|
|
6371
6371
|
denominator: bigint;
|
|
6372
6372
|
}, {
|
|
6373
|
-
numerator: bigint;
|
|
6374
|
-
denominator: bigint;
|
|
6373
|
+
numerator: string | bigint;
|
|
6374
|
+
denominator: string | bigint;
|
|
6375
6375
|
}>]>>>;
|
|
6376
6376
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6377
6377
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6681,14 +6681,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
6681
6681
|
numerator: number;
|
|
6682
6682
|
denominator: number;
|
|
6683
6683
|
}>, z.ZodObject<{
|
|
6684
|
-
numerator: z.ZodBigInt
|
|
6685
|
-
denominator: z.ZodBigInt
|
|
6684
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6685
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
6686
6686
|
}, "strip", z.ZodTypeAny, {
|
|
6687
6687
|
numerator: bigint;
|
|
6688
6688
|
denominator: bigint;
|
|
6689
6689
|
}, {
|
|
6690
|
-
numerator: bigint;
|
|
6691
|
-
denominator: bigint;
|
|
6690
|
+
numerator: string | bigint;
|
|
6691
|
+
denominator: string | bigint;
|
|
6692
6692
|
}>]>>>;
|
|
6693
6693
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6694
6694
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7855,14 +7855,14 @@ export declare const HypTokenRouterConfigSchema: z.ZodEffects<z.ZodIntersection<
|
|
|
7855
7855
|
numerator: number;
|
|
7856
7856
|
denominator: number;
|
|
7857
7857
|
}>, z.ZodObject<{
|
|
7858
|
-
numerator: z.ZodBigInt
|
|
7859
|
-
denominator: z.ZodBigInt
|
|
7858
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
7859
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
7860
7860
|
}, "strip", z.ZodTypeAny, {
|
|
7861
7861
|
numerator: bigint;
|
|
7862
7862
|
denominator: bigint;
|
|
7863
7863
|
}, {
|
|
7864
|
-
numerator: bigint;
|
|
7865
|
-
denominator: bigint;
|
|
7864
|
+
numerator: string | bigint;
|
|
7865
|
+
denominator: string | bigint;
|
|
7866
7866
|
}>]>>>;
|
|
7867
7867
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7868
7868
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8033,14 +8033,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8033
8033
|
numerator: number;
|
|
8034
8034
|
denominator: number;
|
|
8035
8035
|
}>, z.ZodObject<{
|
|
8036
|
-
numerator: z.ZodBigInt
|
|
8037
|
-
denominator: z.ZodBigInt
|
|
8036
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8037
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8038
8038
|
}, "strip", z.ZodTypeAny, {
|
|
8039
8039
|
numerator: bigint;
|
|
8040
8040
|
denominator: bigint;
|
|
8041
8041
|
}, {
|
|
8042
|
-
numerator: bigint;
|
|
8043
|
-
denominator: bigint;
|
|
8042
|
+
numerator: string | bigint;
|
|
8043
|
+
denominator: string | bigint;
|
|
8044
8044
|
}>]>>>;
|
|
8045
8045
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8046
8046
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8086,8 +8086,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8086
8086
|
numerator: number;
|
|
8087
8087
|
denominator: number;
|
|
8088
8088
|
} | {
|
|
8089
|
-
numerator: bigint;
|
|
8090
|
-
denominator: bigint;
|
|
8089
|
+
numerator: string | bigint;
|
|
8090
|
+
denominator: string | bigint;
|
|
8091
8091
|
} | undefined;
|
|
8092
8092
|
isNft?: boolean | undefined;
|
|
8093
8093
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -8109,14 +8109,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8109
8109
|
numerator: number;
|
|
8110
8110
|
denominator: number;
|
|
8111
8111
|
}>, z.ZodObject<{
|
|
8112
|
-
numerator: z.ZodBigInt
|
|
8113
|
-
denominator: z.ZodBigInt
|
|
8112
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8113
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8114
8114
|
}, "strip", z.ZodTypeAny, {
|
|
8115
8115
|
numerator: bigint;
|
|
8116
8116
|
denominator: bigint;
|
|
8117
8117
|
}, {
|
|
8118
|
-
numerator: bigint;
|
|
8119
|
-
denominator: bigint;
|
|
8118
|
+
numerator: string | bigint;
|
|
8119
|
+
denominator: string | bigint;
|
|
8120
8120
|
}>]>>>;
|
|
8121
8121
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8122
8122
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8167,8 +8167,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8167
8167
|
numerator: number;
|
|
8168
8168
|
denominator: number;
|
|
8169
8169
|
} | {
|
|
8170
|
-
numerator: bigint;
|
|
8171
|
-
denominator: bigint;
|
|
8170
|
+
numerator: string | bigint;
|
|
8171
|
+
denominator: string | bigint;
|
|
8172
8172
|
} | undefined;
|
|
8173
8173
|
isNft?: boolean | undefined;
|
|
8174
8174
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -8190,14 +8190,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8190
8190
|
numerator: number;
|
|
8191
8191
|
denominator: number;
|
|
8192
8192
|
}>, z.ZodObject<{
|
|
8193
|
-
numerator: z.ZodBigInt
|
|
8194
|
-
denominator: z.ZodBigInt
|
|
8193
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8194
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8195
8195
|
}, "strip", z.ZodTypeAny, {
|
|
8196
8196
|
numerator: bigint;
|
|
8197
8197
|
denominator: bigint;
|
|
8198
8198
|
}, {
|
|
8199
|
-
numerator: bigint;
|
|
8200
|
-
denominator: bigint;
|
|
8199
|
+
numerator: string | bigint;
|
|
8200
|
+
denominator: string | bigint;
|
|
8201
8201
|
}>]>>>;
|
|
8202
8202
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8203
8203
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8261,8 +8261,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8261
8261
|
numerator: number;
|
|
8262
8262
|
denominator: number;
|
|
8263
8263
|
} | {
|
|
8264
|
-
numerator: bigint;
|
|
8265
|
-
denominator: bigint;
|
|
8264
|
+
numerator: string | bigint;
|
|
8265
|
+
denominator: string | bigint;
|
|
8266
8266
|
} | undefined;
|
|
8267
8267
|
isNft?: boolean | undefined;
|
|
8268
8268
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -8284,14 +8284,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8284
8284
|
numerator: number;
|
|
8285
8285
|
denominator: number;
|
|
8286
8286
|
}>, z.ZodObject<{
|
|
8287
|
-
numerator: z.ZodBigInt
|
|
8288
|
-
denominator: z.ZodBigInt
|
|
8287
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8288
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8289
8289
|
}, "strip", z.ZodTypeAny, {
|
|
8290
8290
|
numerator: bigint;
|
|
8291
8291
|
denominator: bigint;
|
|
8292
8292
|
}, {
|
|
8293
|
-
numerator: bigint;
|
|
8294
|
-
denominator: bigint;
|
|
8293
|
+
numerator: string | bigint;
|
|
8294
|
+
denominator: string | bigint;
|
|
8295
8295
|
}>]>>>;
|
|
8296
8296
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8297
8297
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8340,8 +8340,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8340
8340
|
numerator: number;
|
|
8341
8341
|
denominator: number;
|
|
8342
8342
|
} | {
|
|
8343
|
-
numerator: bigint;
|
|
8344
|
-
denominator: bigint;
|
|
8343
|
+
numerator: string | bigint;
|
|
8344
|
+
denominator: string | bigint;
|
|
8345
8345
|
} | undefined;
|
|
8346
8346
|
isNft?: boolean | undefined;
|
|
8347
8347
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -8363,14 +8363,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8363
8363
|
numerator: number;
|
|
8364
8364
|
denominator: number;
|
|
8365
8365
|
}>, z.ZodObject<{
|
|
8366
|
-
numerator: z.ZodBigInt
|
|
8367
|
-
denominator: z.ZodBigInt
|
|
8366
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8367
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8368
8368
|
}, "strip", z.ZodTypeAny, {
|
|
8369
8369
|
numerator: bigint;
|
|
8370
8370
|
denominator: bigint;
|
|
8371
8371
|
}, {
|
|
8372
|
-
numerator: bigint;
|
|
8373
|
-
denominator: bigint;
|
|
8372
|
+
numerator: string | bigint;
|
|
8373
|
+
denominator: string | bigint;
|
|
8374
8374
|
}>]>>>;
|
|
8375
8375
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8376
8376
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8589,8 +8589,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8589
8589
|
numerator: number;
|
|
8590
8590
|
denominator: number;
|
|
8591
8591
|
} | {
|
|
8592
|
-
numerator: bigint;
|
|
8593
|
-
denominator: bigint;
|
|
8592
|
+
numerator: string | bigint;
|
|
8593
|
+
denominator: string | bigint;
|
|
8594
8594
|
} | undefined;
|
|
8595
8595
|
isNft?: boolean | undefined;
|
|
8596
8596
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -8612,14 +8612,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8612
8612
|
numerator: number;
|
|
8613
8613
|
denominator: number;
|
|
8614
8614
|
}>, z.ZodObject<{
|
|
8615
|
-
numerator: z.ZodBigInt
|
|
8616
|
-
denominator: z.ZodBigInt
|
|
8615
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8616
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8617
8617
|
}, "strip", z.ZodTypeAny, {
|
|
8618
8618
|
numerator: bigint;
|
|
8619
8619
|
denominator: bigint;
|
|
8620
8620
|
}, {
|
|
8621
|
-
numerator: bigint;
|
|
8622
|
-
denominator: bigint;
|
|
8621
|
+
numerator: string | bigint;
|
|
8622
|
+
denominator: string | bigint;
|
|
8623
8623
|
}>]>>>;
|
|
8624
8624
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8625
8625
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8653,8 +8653,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8653
8653
|
numerator: number;
|
|
8654
8654
|
denominator: number;
|
|
8655
8655
|
} | {
|
|
8656
|
-
numerator: bigint;
|
|
8657
|
-
denominator: bigint;
|
|
8656
|
+
numerator: string | bigint;
|
|
8657
|
+
denominator: string | bigint;
|
|
8658
8658
|
} | undefined;
|
|
8659
8659
|
isNft?: boolean | undefined;
|
|
8660
8660
|
initialSupply?: string | number | undefined;
|
|
@@ -8673,14 +8673,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8673
8673
|
numerator: number;
|
|
8674
8674
|
denominator: number;
|
|
8675
8675
|
}>, z.ZodObject<{
|
|
8676
|
-
numerator: z.ZodBigInt
|
|
8677
|
-
denominator: z.ZodBigInt
|
|
8676
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8677
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8678
8678
|
}, "strip", z.ZodTypeAny, {
|
|
8679
8679
|
numerator: bigint;
|
|
8680
8680
|
denominator: bigint;
|
|
8681
8681
|
}, {
|
|
8682
|
-
numerator: bigint;
|
|
8683
|
-
denominator: bigint;
|
|
8682
|
+
numerator: string | bigint;
|
|
8683
|
+
denominator: string | bigint;
|
|
8684
8684
|
}>]>>>;
|
|
8685
8685
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8686
8686
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8713,8 +8713,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8713
8713
|
numerator: number;
|
|
8714
8714
|
denominator: number;
|
|
8715
8715
|
} | {
|
|
8716
|
-
numerator: bigint;
|
|
8717
|
-
denominator: bigint;
|
|
8716
|
+
numerator: string | bigint;
|
|
8717
|
+
denominator: string | bigint;
|
|
8718
8718
|
} | undefined;
|
|
8719
8719
|
isNft?: boolean | undefined;
|
|
8720
8720
|
}>, z.ZodObject<{
|
|
@@ -8731,14 +8731,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8731
8731
|
numerator: number;
|
|
8732
8732
|
denominator: number;
|
|
8733
8733
|
}>, z.ZodObject<{
|
|
8734
|
-
numerator: z.ZodBigInt
|
|
8735
|
-
denominator: z.ZodBigInt
|
|
8734
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8735
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8736
8736
|
}, "strip", z.ZodTypeAny, {
|
|
8737
8737
|
numerator: bigint;
|
|
8738
8738
|
denominator: bigint;
|
|
8739
8739
|
}, {
|
|
8740
|
-
numerator: bigint;
|
|
8741
|
-
denominator: bigint;
|
|
8740
|
+
numerator: string | bigint;
|
|
8741
|
+
denominator: string | bigint;
|
|
8742
8742
|
}>]>>>;
|
|
8743
8743
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8744
8744
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8794,8 +8794,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8794
8794
|
numerator: number;
|
|
8795
8795
|
denominator: number;
|
|
8796
8796
|
} | {
|
|
8797
|
-
numerator: bigint;
|
|
8798
|
-
denominator: bigint;
|
|
8797
|
+
numerator: string | bigint;
|
|
8798
|
+
denominator: string | bigint;
|
|
8799
8799
|
} | undefined;
|
|
8800
8800
|
isNft?: boolean | undefined;
|
|
8801
8801
|
minFinalityThreshold?: number | undefined;
|
|
@@ -8814,14 +8814,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8814
8814
|
numerator: number;
|
|
8815
8815
|
denominator: number;
|
|
8816
8816
|
}>, z.ZodObject<{
|
|
8817
|
-
numerator: z.ZodBigInt
|
|
8818
|
-
denominator: z.ZodBigInt
|
|
8817
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8818
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8819
8819
|
}, "strip", z.ZodTypeAny, {
|
|
8820
8820
|
numerator: bigint;
|
|
8821
8821
|
denominator: bigint;
|
|
8822
8822
|
}, {
|
|
8823
|
-
numerator: bigint;
|
|
8824
|
-
denominator: bigint;
|
|
8823
|
+
numerator: string | bigint;
|
|
8824
|
+
denominator: string | bigint;
|
|
8825
8825
|
}>]>>>;
|
|
8826
8826
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8827
8827
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8862,8 +8862,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8862
8862
|
numerator: number;
|
|
8863
8863
|
denominator: number;
|
|
8864
8864
|
} | {
|
|
8865
|
-
numerator: bigint;
|
|
8866
|
-
denominator: bigint;
|
|
8865
|
+
numerator: string | bigint;
|
|
8866
|
+
denominator: string | bigint;
|
|
8867
8867
|
} | undefined;
|
|
8868
8868
|
isNft?: boolean | undefined;
|
|
8869
8869
|
extraOptions?: string | undefined;
|
|
@@ -8898,14 +8898,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8898
8898
|
numerator: number;
|
|
8899
8899
|
denominator: number;
|
|
8900
8900
|
}>, z.ZodObject<{
|
|
8901
|
-
numerator: z.ZodBigInt
|
|
8902
|
-
denominator: z.ZodBigInt
|
|
8901
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8902
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
8903
8903
|
}, "strip", z.ZodTypeAny, {
|
|
8904
8904
|
numerator: bigint;
|
|
8905
8905
|
denominator: bigint;
|
|
8906
8906
|
}, {
|
|
8907
|
-
numerator: bigint;
|
|
8908
|
-
denominator: bigint;
|
|
8907
|
+
numerator: string | bigint;
|
|
8908
|
+
denominator: string | bigint;
|
|
8909
8909
|
}>]>>>;
|
|
8910
8910
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8911
8911
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -8965,8 +8965,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
8965
8965
|
numerator: number;
|
|
8966
8966
|
denominator: number;
|
|
8967
8967
|
} | {
|
|
8968
|
-
numerator: bigint;
|
|
8969
|
-
denominator: bigint;
|
|
8968
|
+
numerator: string | bigint;
|
|
8969
|
+
denominator: string | bigint;
|
|
8970
8970
|
} | undefined;
|
|
8971
8971
|
isNft?: boolean | undefined;
|
|
8972
8972
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -9004,14 +9004,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9004
9004
|
numerator: number;
|
|
9005
9005
|
denominator: number;
|
|
9006
9006
|
}>, z.ZodObject<{
|
|
9007
|
-
numerator: z.ZodBigInt
|
|
9008
|
-
denominator: z.ZodBigInt
|
|
9007
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9008
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9009
9009
|
}, "strip", z.ZodTypeAny, {
|
|
9010
9010
|
numerator: bigint;
|
|
9011
9011
|
denominator: bigint;
|
|
9012
9012
|
}, {
|
|
9013
|
-
numerator: bigint;
|
|
9014
|
-
denominator: bigint;
|
|
9013
|
+
numerator: string | bigint;
|
|
9014
|
+
denominator: string | bigint;
|
|
9015
9015
|
}>]>>>;
|
|
9016
9016
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9017
9017
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -9072,8 +9072,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9072
9072
|
numerator: number;
|
|
9073
9073
|
denominator: number;
|
|
9074
9074
|
} | {
|
|
9075
|
-
numerator: bigint;
|
|
9076
|
-
denominator: bigint;
|
|
9075
|
+
numerator: string | bigint;
|
|
9076
|
+
denominator: string | bigint;
|
|
9077
9077
|
} | undefined;
|
|
9078
9078
|
isNft?: boolean | undefined;
|
|
9079
9079
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -9095,14 +9095,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9095
9095
|
numerator: number;
|
|
9096
9096
|
denominator: number;
|
|
9097
9097
|
}>, z.ZodObject<{
|
|
9098
|
-
numerator: z.ZodBigInt
|
|
9099
|
-
denominator: z.ZodBigInt
|
|
9098
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9099
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9100
9100
|
}, "strip", z.ZodTypeAny, {
|
|
9101
9101
|
numerator: bigint;
|
|
9102
9102
|
denominator: bigint;
|
|
9103
9103
|
}, {
|
|
9104
|
-
numerator: bigint;
|
|
9105
|
-
denominator: bigint;
|
|
9104
|
+
numerator: string | bigint;
|
|
9105
|
+
denominator: string | bigint;
|
|
9106
9106
|
}>]>>>;
|
|
9107
9107
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9108
9108
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9153,8 +9153,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9153
9153
|
numerator: number;
|
|
9154
9154
|
denominator: number;
|
|
9155
9155
|
} | {
|
|
9156
|
-
numerator: bigint;
|
|
9157
|
-
denominator: bigint;
|
|
9156
|
+
numerator: string | bigint;
|
|
9157
|
+
denominator: string | bigint;
|
|
9158
9158
|
} | undefined;
|
|
9159
9159
|
isNft?: boolean | undefined;
|
|
9160
9160
|
}>, z.ZodObject<{
|
|
@@ -9171,14 +9171,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9171
9171
|
numerator: number;
|
|
9172
9172
|
denominator: number;
|
|
9173
9173
|
}>, z.ZodObject<{
|
|
9174
|
-
numerator: z.ZodBigInt
|
|
9175
|
-
denominator: z.ZodBigInt
|
|
9174
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9175
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9176
9176
|
}, "strip", z.ZodTypeAny, {
|
|
9177
9177
|
numerator: bigint;
|
|
9178
9178
|
denominator: bigint;
|
|
9179
9179
|
}, {
|
|
9180
|
-
numerator: bigint;
|
|
9181
|
-
denominator: bigint;
|
|
9180
|
+
numerator: string | bigint;
|
|
9181
|
+
denominator: string | bigint;
|
|
9182
9182
|
}>]>>>;
|
|
9183
9183
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9184
9184
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9231,8 +9231,8 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9231
9231
|
numerator: number;
|
|
9232
9232
|
denominator: number;
|
|
9233
9233
|
} | {
|
|
9234
|
-
numerator: bigint;
|
|
9235
|
-
denominator: bigint;
|
|
9234
|
+
numerator: string | bigint;
|
|
9235
|
+
denominator: string | bigint;
|
|
9236
9236
|
} | undefined;
|
|
9237
9237
|
isNft?: boolean | undefined;
|
|
9238
9238
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -9254,14 +9254,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9254
9254
|
numerator: number;
|
|
9255
9255
|
denominator: number;
|
|
9256
9256
|
}>, z.ZodObject<{
|
|
9257
|
-
numerator: z.ZodBigInt
|
|
9258
|
-
denominator: z.ZodBigInt
|
|
9257
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9258
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9259
9259
|
}, "strip", z.ZodTypeAny, {
|
|
9260
9260
|
numerator: bigint;
|
|
9261
9261
|
denominator: bigint;
|
|
9262
9262
|
}, {
|
|
9263
|
-
numerator: bigint;
|
|
9264
|
-
denominator: bigint;
|
|
9263
|
+
numerator: string | bigint;
|
|
9264
|
+
denominator: string | bigint;
|
|
9265
9265
|
}>]>>>;
|
|
9266
9266
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9267
9267
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9281,14 +9281,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9281
9281
|
numerator: number;
|
|
9282
9282
|
denominator: number;
|
|
9283
9283
|
}>, z.ZodObject<{
|
|
9284
|
-
numerator: z.ZodBigInt
|
|
9285
|
-
denominator: z.ZodBigInt
|
|
9284
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9285
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9286
9286
|
}, "strip", z.ZodTypeAny, {
|
|
9287
9287
|
numerator: bigint;
|
|
9288
9288
|
denominator: bigint;
|
|
9289
9289
|
}, {
|
|
9290
|
-
numerator: bigint;
|
|
9291
|
-
denominator: bigint;
|
|
9290
|
+
numerator: string | bigint;
|
|
9291
|
+
denominator: string | bigint;
|
|
9292
9292
|
}>]>>>;
|
|
9293
9293
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9294
9294
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9308,14 +9308,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9308
9308
|
numerator: number;
|
|
9309
9309
|
denominator: number;
|
|
9310
9310
|
}>, z.ZodObject<{
|
|
9311
|
-
numerator: z.ZodBigInt
|
|
9312
|
-
denominator: z.ZodBigInt
|
|
9311
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9312
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9313
9313
|
}, "strip", z.ZodTypeAny, {
|
|
9314
9314
|
numerator: bigint;
|
|
9315
9315
|
denominator: bigint;
|
|
9316
9316
|
}, {
|
|
9317
|
-
numerator: bigint;
|
|
9318
|
-
denominator: bigint;
|
|
9317
|
+
numerator: string | bigint;
|
|
9318
|
+
denominator: string | bigint;
|
|
9319
9319
|
}>]>>>;
|
|
9320
9320
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9321
9321
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9625,14 +9625,14 @@ export declare const HypTokenRouterConfigMailboxOptionalBaseSchema: z.ZodInterse
|
|
|
9625
9625
|
numerator: number;
|
|
9626
9626
|
denominator: number;
|
|
9627
9627
|
}>, z.ZodObject<{
|
|
9628
|
-
numerator: z.ZodBigInt
|
|
9629
|
-
denominator: z.ZodBigInt
|
|
9628
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9629
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
9630
9630
|
}, "strip", z.ZodTypeAny, {
|
|
9631
9631
|
numerator: bigint;
|
|
9632
9632
|
denominator: bigint;
|
|
9633
9633
|
}, {
|
|
9634
|
-
numerator: bigint;
|
|
9635
|
-
denominator: bigint;
|
|
9634
|
+
numerator: string | bigint;
|
|
9635
|
+
denominator: string | bigint;
|
|
9636
9636
|
}>]>>>;
|
|
9637
9637
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
9638
9638
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10508,14 +10508,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10508
10508
|
numerator: number;
|
|
10509
10509
|
denominator: number;
|
|
10510
10510
|
}>, z.ZodObject<{
|
|
10511
|
-
numerator: z.ZodBigInt
|
|
10512
|
-
denominator: z.ZodBigInt
|
|
10511
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10512
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10513
10513
|
}, "strip", z.ZodTypeAny, {
|
|
10514
10514
|
numerator: bigint;
|
|
10515
10515
|
denominator: bigint;
|
|
10516
10516
|
}, {
|
|
10517
|
-
numerator: bigint;
|
|
10518
|
-
denominator: bigint;
|
|
10517
|
+
numerator: string | bigint;
|
|
10518
|
+
denominator: string | bigint;
|
|
10519
10519
|
}>]>>>;
|
|
10520
10520
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10521
10521
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10561,8 +10561,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10561
10561
|
numerator: number;
|
|
10562
10562
|
denominator: number;
|
|
10563
10563
|
} | {
|
|
10564
|
-
numerator: bigint;
|
|
10565
|
-
denominator: bigint;
|
|
10564
|
+
numerator: string | bigint;
|
|
10565
|
+
denominator: string | bigint;
|
|
10566
10566
|
} | undefined;
|
|
10567
10567
|
isNft?: boolean | undefined;
|
|
10568
10568
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -10584,14 +10584,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10584
10584
|
numerator: number;
|
|
10585
10585
|
denominator: number;
|
|
10586
10586
|
}>, z.ZodObject<{
|
|
10587
|
-
numerator: z.ZodBigInt
|
|
10588
|
-
denominator: z.ZodBigInt
|
|
10587
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10588
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10589
10589
|
}, "strip", z.ZodTypeAny, {
|
|
10590
10590
|
numerator: bigint;
|
|
10591
10591
|
denominator: bigint;
|
|
10592
10592
|
}, {
|
|
10593
|
-
numerator: bigint;
|
|
10594
|
-
denominator: bigint;
|
|
10593
|
+
numerator: string | bigint;
|
|
10594
|
+
denominator: string | bigint;
|
|
10595
10595
|
}>]>>>;
|
|
10596
10596
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10597
10597
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10642,8 +10642,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10642
10642
|
numerator: number;
|
|
10643
10643
|
denominator: number;
|
|
10644
10644
|
} | {
|
|
10645
|
-
numerator: bigint;
|
|
10646
|
-
denominator: bigint;
|
|
10645
|
+
numerator: string | bigint;
|
|
10646
|
+
denominator: string | bigint;
|
|
10647
10647
|
} | undefined;
|
|
10648
10648
|
isNft?: boolean | undefined;
|
|
10649
10649
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -10665,14 +10665,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10665
10665
|
numerator: number;
|
|
10666
10666
|
denominator: number;
|
|
10667
10667
|
}>, z.ZodObject<{
|
|
10668
|
-
numerator: z.ZodBigInt
|
|
10669
|
-
denominator: z.ZodBigInt
|
|
10668
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10669
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10670
10670
|
}, "strip", z.ZodTypeAny, {
|
|
10671
10671
|
numerator: bigint;
|
|
10672
10672
|
denominator: bigint;
|
|
10673
10673
|
}, {
|
|
10674
|
-
numerator: bigint;
|
|
10675
|
-
denominator: bigint;
|
|
10674
|
+
numerator: string | bigint;
|
|
10675
|
+
denominator: string | bigint;
|
|
10676
10676
|
}>]>>>;
|
|
10677
10677
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10678
10678
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10736,8 +10736,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10736
10736
|
numerator: number;
|
|
10737
10737
|
denominator: number;
|
|
10738
10738
|
} | {
|
|
10739
|
-
numerator: bigint;
|
|
10740
|
-
denominator: bigint;
|
|
10739
|
+
numerator: string | bigint;
|
|
10740
|
+
denominator: string | bigint;
|
|
10741
10741
|
} | undefined;
|
|
10742
10742
|
isNft?: boolean | undefined;
|
|
10743
10743
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -10759,14 +10759,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10759
10759
|
numerator: number;
|
|
10760
10760
|
denominator: number;
|
|
10761
10761
|
}>, z.ZodObject<{
|
|
10762
|
-
numerator: z.ZodBigInt
|
|
10763
|
-
denominator: z.ZodBigInt
|
|
10762
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10763
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10764
10764
|
}, "strip", z.ZodTypeAny, {
|
|
10765
10765
|
numerator: bigint;
|
|
10766
10766
|
denominator: bigint;
|
|
10767
10767
|
}, {
|
|
10768
|
-
numerator: bigint;
|
|
10769
|
-
denominator: bigint;
|
|
10768
|
+
numerator: string | bigint;
|
|
10769
|
+
denominator: string | bigint;
|
|
10770
10770
|
}>]>>>;
|
|
10771
10771
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10772
10772
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10815,8 +10815,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10815
10815
|
numerator: number;
|
|
10816
10816
|
denominator: number;
|
|
10817
10817
|
} | {
|
|
10818
|
-
numerator: bigint;
|
|
10819
|
-
denominator: bigint;
|
|
10818
|
+
numerator: string | bigint;
|
|
10819
|
+
denominator: string | bigint;
|
|
10820
10820
|
} | undefined;
|
|
10821
10821
|
isNft?: boolean | undefined;
|
|
10822
10822
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -10838,14 +10838,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
10838
10838
|
numerator: number;
|
|
10839
10839
|
denominator: number;
|
|
10840
10840
|
}>, z.ZodObject<{
|
|
10841
|
-
numerator: z.ZodBigInt
|
|
10842
|
-
denominator: z.ZodBigInt
|
|
10841
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10842
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
10843
10843
|
}, "strip", z.ZodTypeAny, {
|
|
10844
10844
|
numerator: bigint;
|
|
10845
10845
|
denominator: bigint;
|
|
10846
10846
|
}, {
|
|
10847
|
-
numerator: bigint;
|
|
10848
|
-
denominator: bigint;
|
|
10847
|
+
numerator: string | bigint;
|
|
10848
|
+
denominator: string | bigint;
|
|
10849
10849
|
}>]>>>;
|
|
10850
10850
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10851
10851
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11064,8 +11064,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11064
11064
|
numerator: number;
|
|
11065
11065
|
denominator: number;
|
|
11066
11066
|
} | {
|
|
11067
|
-
numerator: bigint;
|
|
11068
|
-
denominator: bigint;
|
|
11067
|
+
numerator: string | bigint;
|
|
11068
|
+
denominator: string | bigint;
|
|
11069
11069
|
} | undefined;
|
|
11070
11070
|
isNft?: boolean | undefined;
|
|
11071
11071
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -11087,14 +11087,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11087
11087
|
numerator: number;
|
|
11088
11088
|
denominator: number;
|
|
11089
11089
|
}>, z.ZodObject<{
|
|
11090
|
-
numerator: z.ZodBigInt
|
|
11091
|
-
denominator: z.ZodBigInt
|
|
11090
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11091
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11092
11092
|
}, "strip", z.ZodTypeAny, {
|
|
11093
11093
|
numerator: bigint;
|
|
11094
11094
|
denominator: bigint;
|
|
11095
11095
|
}, {
|
|
11096
|
-
numerator: bigint;
|
|
11097
|
-
denominator: bigint;
|
|
11096
|
+
numerator: string | bigint;
|
|
11097
|
+
denominator: string | bigint;
|
|
11098
11098
|
}>]>>>;
|
|
11099
11099
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11100
11100
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11128,8 +11128,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11128
11128
|
numerator: number;
|
|
11129
11129
|
denominator: number;
|
|
11130
11130
|
} | {
|
|
11131
|
-
numerator: bigint;
|
|
11132
|
-
denominator: bigint;
|
|
11131
|
+
numerator: string | bigint;
|
|
11132
|
+
denominator: string | bigint;
|
|
11133
11133
|
} | undefined;
|
|
11134
11134
|
isNft?: boolean | undefined;
|
|
11135
11135
|
initialSupply?: string | number | undefined;
|
|
@@ -11148,14 +11148,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11148
11148
|
numerator: number;
|
|
11149
11149
|
denominator: number;
|
|
11150
11150
|
}>, z.ZodObject<{
|
|
11151
|
-
numerator: z.ZodBigInt
|
|
11152
|
-
denominator: z.ZodBigInt
|
|
11151
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11152
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11153
11153
|
}, "strip", z.ZodTypeAny, {
|
|
11154
11154
|
numerator: bigint;
|
|
11155
11155
|
denominator: bigint;
|
|
11156
11156
|
}, {
|
|
11157
|
-
numerator: bigint;
|
|
11158
|
-
denominator: bigint;
|
|
11157
|
+
numerator: string | bigint;
|
|
11158
|
+
denominator: string | bigint;
|
|
11159
11159
|
}>]>>>;
|
|
11160
11160
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11161
11161
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11188,8 +11188,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11188
11188
|
numerator: number;
|
|
11189
11189
|
denominator: number;
|
|
11190
11190
|
} | {
|
|
11191
|
-
numerator: bigint;
|
|
11192
|
-
denominator: bigint;
|
|
11191
|
+
numerator: string | bigint;
|
|
11192
|
+
denominator: string | bigint;
|
|
11193
11193
|
} | undefined;
|
|
11194
11194
|
isNft?: boolean | undefined;
|
|
11195
11195
|
}>, z.ZodObject<{
|
|
@@ -11206,14 +11206,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11206
11206
|
numerator: number;
|
|
11207
11207
|
denominator: number;
|
|
11208
11208
|
}>, z.ZodObject<{
|
|
11209
|
-
numerator: z.ZodBigInt
|
|
11210
|
-
denominator: z.ZodBigInt
|
|
11209
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11210
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11211
11211
|
}, "strip", z.ZodTypeAny, {
|
|
11212
11212
|
numerator: bigint;
|
|
11213
11213
|
denominator: bigint;
|
|
11214
11214
|
}, {
|
|
11215
|
-
numerator: bigint;
|
|
11216
|
-
denominator: bigint;
|
|
11215
|
+
numerator: string | bigint;
|
|
11216
|
+
denominator: string | bigint;
|
|
11217
11217
|
}>]>>>;
|
|
11218
11218
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11219
11219
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11269,8 +11269,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11269
11269
|
numerator: number;
|
|
11270
11270
|
denominator: number;
|
|
11271
11271
|
} | {
|
|
11272
|
-
numerator: bigint;
|
|
11273
|
-
denominator: bigint;
|
|
11272
|
+
numerator: string | bigint;
|
|
11273
|
+
denominator: string | bigint;
|
|
11274
11274
|
} | undefined;
|
|
11275
11275
|
isNft?: boolean | undefined;
|
|
11276
11276
|
minFinalityThreshold?: number | undefined;
|
|
@@ -11289,14 +11289,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11289
11289
|
numerator: number;
|
|
11290
11290
|
denominator: number;
|
|
11291
11291
|
}>, z.ZodObject<{
|
|
11292
|
-
numerator: z.ZodBigInt
|
|
11293
|
-
denominator: z.ZodBigInt
|
|
11292
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11293
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11294
11294
|
}, "strip", z.ZodTypeAny, {
|
|
11295
11295
|
numerator: bigint;
|
|
11296
11296
|
denominator: bigint;
|
|
11297
11297
|
}, {
|
|
11298
|
-
numerator: bigint;
|
|
11299
|
-
denominator: bigint;
|
|
11298
|
+
numerator: string | bigint;
|
|
11299
|
+
denominator: string | bigint;
|
|
11300
11300
|
}>]>>>;
|
|
11301
11301
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11302
11302
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11337,8 +11337,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11337
11337
|
numerator: number;
|
|
11338
11338
|
denominator: number;
|
|
11339
11339
|
} | {
|
|
11340
|
-
numerator: bigint;
|
|
11341
|
-
denominator: bigint;
|
|
11340
|
+
numerator: string | bigint;
|
|
11341
|
+
denominator: string | bigint;
|
|
11342
11342
|
} | undefined;
|
|
11343
11343
|
isNft?: boolean | undefined;
|
|
11344
11344
|
extraOptions?: string | undefined;
|
|
@@ -11373,14 +11373,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11373
11373
|
numerator: number;
|
|
11374
11374
|
denominator: number;
|
|
11375
11375
|
}>, z.ZodObject<{
|
|
11376
|
-
numerator: z.ZodBigInt
|
|
11377
|
-
denominator: z.ZodBigInt
|
|
11376
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11377
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11378
11378
|
}, "strip", z.ZodTypeAny, {
|
|
11379
11379
|
numerator: bigint;
|
|
11380
11380
|
denominator: bigint;
|
|
11381
11381
|
}, {
|
|
11382
|
-
numerator: bigint;
|
|
11383
|
-
denominator: bigint;
|
|
11382
|
+
numerator: string | bigint;
|
|
11383
|
+
denominator: string | bigint;
|
|
11384
11384
|
}>]>>>;
|
|
11385
11385
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11386
11386
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -11440,8 +11440,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11440
11440
|
numerator: number;
|
|
11441
11441
|
denominator: number;
|
|
11442
11442
|
} | {
|
|
11443
|
-
numerator: bigint;
|
|
11444
|
-
denominator: bigint;
|
|
11443
|
+
numerator: string | bigint;
|
|
11444
|
+
denominator: string | bigint;
|
|
11445
11445
|
} | undefined;
|
|
11446
11446
|
isNft?: boolean | undefined;
|
|
11447
11447
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -11479,14 +11479,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11479
11479
|
numerator: number;
|
|
11480
11480
|
denominator: number;
|
|
11481
11481
|
}>, z.ZodObject<{
|
|
11482
|
-
numerator: z.ZodBigInt
|
|
11483
|
-
denominator: z.ZodBigInt
|
|
11482
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11483
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11484
11484
|
}, "strip", z.ZodTypeAny, {
|
|
11485
11485
|
numerator: bigint;
|
|
11486
11486
|
denominator: bigint;
|
|
11487
11487
|
}, {
|
|
11488
|
-
numerator: bigint;
|
|
11489
|
-
denominator: bigint;
|
|
11488
|
+
numerator: string | bigint;
|
|
11489
|
+
denominator: string | bigint;
|
|
11490
11490
|
}>]>>>;
|
|
11491
11491
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11492
11492
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -11547,8 +11547,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11547
11547
|
numerator: number;
|
|
11548
11548
|
denominator: number;
|
|
11549
11549
|
} | {
|
|
11550
|
-
numerator: bigint;
|
|
11551
|
-
denominator: bigint;
|
|
11550
|
+
numerator: string | bigint;
|
|
11551
|
+
denominator: string | bigint;
|
|
11552
11552
|
} | undefined;
|
|
11553
11553
|
isNft?: boolean | undefined;
|
|
11554
11554
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -11570,14 +11570,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11570
11570
|
numerator: number;
|
|
11571
11571
|
denominator: number;
|
|
11572
11572
|
}>, z.ZodObject<{
|
|
11573
|
-
numerator: z.ZodBigInt
|
|
11574
|
-
denominator: z.ZodBigInt
|
|
11573
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11574
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11575
11575
|
}, "strip", z.ZodTypeAny, {
|
|
11576
11576
|
numerator: bigint;
|
|
11577
11577
|
denominator: bigint;
|
|
11578
11578
|
}, {
|
|
11579
|
-
numerator: bigint;
|
|
11580
|
-
denominator: bigint;
|
|
11579
|
+
numerator: string | bigint;
|
|
11580
|
+
denominator: string | bigint;
|
|
11581
11581
|
}>]>>>;
|
|
11582
11582
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11583
11583
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11628,8 +11628,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11628
11628
|
numerator: number;
|
|
11629
11629
|
denominator: number;
|
|
11630
11630
|
} | {
|
|
11631
|
-
numerator: bigint;
|
|
11632
|
-
denominator: bigint;
|
|
11631
|
+
numerator: string | bigint;
|
|
11632
|
+
denominator: string | bigint;
|
|
11633
11633
|
} | undefined;
|
|
11634
11634
|
isNft?: boolean | undefined;
|
|
11635
11635
|
}>, z.ZodObject<{
|
|
@@ -11646,14 +11646,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11646
11646
|
numerator: number;
|
|
11647
11647
|
denominator: number;
|
|
11648
11648
|
}>, z.ZodObject<{
|
|
11649
|
-
numerator: z.ZodBigInt
|
|
11650
|
-
denominator: z.ZodBigInt
|
|
11649
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11650
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11651
11651
|
}, "strip", z.ZodTypeAny, {
|
|
11652
11652
|
numerator: bigint;
|
|
11653
11653
|
denominator: bigint;
|
|
11654
11654
|
}, {
|
|
11655
|
-
numerator: bigint;
|
|
11656
|
-
denominator: bigint;
|
|
11655
|
+
numerator: string | bigint;
|
|
11656
|
+
denominator: string | bigint;
|
|
11657
11657
|
}>]>>>;
|
|
11658
11658
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11659
11659
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11706,8 +11706,8 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11706
11706
|
numerator: number;
|
|
11707
11707
|
denominator: number;
|
|
11708
11708
|
} | {
|
|
11709
|
-
numerator: bigint;
|
|
11710
|
-
denominator: bigint;
|
|
11709
|
+
numerator: string | bigint;
|
|
11710
|
+
denominator: string | bigint;
|
|
11711
11711
|
} | undefined;
|
|
11712
11712
|
isNft?: boolean | undefined;
|
|
11713
11713
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -11729,14 +11729,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11729
11729
|
numerator: number;
|
|
11730
11730
|
denominator: number;
|
|
11731
11731
|
}>, z.ZodObject<{
|
|
11732
|
-
numerator: z.ZodBigInt
|
|
11733
|
-
denominator: z.ZodBigInt
|
|
11732
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11733
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11734
11734
|
}, "strip", z.ZodTypeAny, {
|
|
11735
11735
|
numerator: bigint;
|
|
11736
11736
|
denominator: bigint;
|
|
11737
11737
|
}, {
|
|
11738
|
-
numerator: bigint;
|
|
11739
|
-
denominator: bigint;
|
|
11738
|
+
numerator: string | bigint;
|
|
11739
|
+
denominator: string | bigint;
|
|
11740
11740
|
}>]>>>;
|
|
11741
11741
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11742
11742
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11756,14 +11756,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11756
11756
|
numerator: number;
|
|
11757
11757
|
denominator: number;
|
|
11758
11758
|
}>, z.ZodObject<{
|
|
11759
|
-
numerator: z.ZodBigInt
|
|
11760
|
-
denominator: z.ZodBigInt
|
|
11759
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11760
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11761
11761
|
}, "strip", z.ZodTypeAny, {
|
|
11762
11762
|
numerator: bigint;
|
|
11763
11763
|
denominator: bigint;
|
|
11764
11764
|
}, {
|
|
11765
|
-
numerator: bigint;
|
|
11766
|
-
denominator: bigint;
|
|
11765
|
+
numerator: string | bigint;
|
|
11766
|
+
denominator: string | bigint;
|
|
11767
11767
|
}>]>>>;
|
|
11768
11768
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11769
11769
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11783,14 +11783,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
11783
11783
|
numerator: number;
|
|
11784
11784
|
denominator: number;
|
|
11785
11785
|
}>, z.ZodObject<{
|
|
11786
|
-
numerator: z.ZodBigInt
|
|
11787
|
-
denominator: z.ZodBigInt
|
|
11786
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11787
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
11788
11788
|
}, "strip", z.ZodTypeAny, {
|
|
11789
11789
|
numerator: bigint;
|
|
11790
11790
|
denominator: bigint;
|
|
11791
11791
|
}, {
|
|
11792
|
-
numerator: bigint;
|
|
11793
|
-
denominator: bigint;
|
|
11792
|
+
numerator: string | bigint;
|
|
11793
|
+
denominator: string | bigint;
|
|
11794
11794
|
}>]>>>;
|
|
11795
11795
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11796
11796
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -12100,14 +12100,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
12100
12100
|
numerator: number;
|
|
12101
12101
|
denominator: number;
|
|
12102
12102
|
}>, z.ZodObject<{
|
|
12103
|
-
numerator: z.ZodBigInt
|
|
12104
|
-
denominator: z.ZodBigInt
|
|
12103
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
12104
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
12105
12105
|
}, "strip", z.ZodTypeAny, {
|
|
12106
12106
|
numerator: bigint;
|
|
12107
12107
|
denominator: bigint;
|
|
12108
12108
|
}, {
|
|
12109
|
-
numerator: bigint;
|
|
12110
|
-
denominator: bigint;
|
|
12109
|
+
numerator: string | bigint;
|
|
12110
|
+
denominator: string | bigint;
|
|
12111
12111
|
}>]>>>;
|
|
12112
12112
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12113
12113
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13271,14 +13271,14 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodEffects<z.Z
|
|
|
13271
13271
|
numerator: number;
|
|
13272
13272
|
denominator: number;
|
|
13273
13273
|
}>, z.ZodObject<{
|
|
13274
|
-
numerator: z.ZodBigInt
|
|
13275
|
-
denominator: z.ZodBigInt
|
|
13274
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13275
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13276
13276
|
}, "strip", z.ZodTypeAny, {
|
|
13277
13277
|
numerator: bigint;
|
|
13278
13278
|
denominator: bigint;
|
|
13279
13279
|
}, {
|
|
13280
|
-
numerator: bigint;
|
|
13281
|
-
denominator: bigint;
|
|
13280
|
+
numerator: string | bigint;
|
|
13281
|
+
denominator: string | bigint;
|
|
13282
13282
|
}>]>>>;
|
|
13283
13283
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13284
13284
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13445,14 +13445,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13445
13445
|
numerator: number;
|
|
13446
13446
|
denominator: number;
|
|
13447
13447
|
}>, z.ZodObject<{
|
|
13448
|
-
numerator: z.ZodBigInt
|
|
13449
|
-
denominator: z.ZodBigInt
|
|
13448
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13449
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13450
13450
|
}, "strip", z.ZodTypeAny, {
|
|
13451
13451
|
numerator: bigint;
|
|
13452
13452
|
denominator: bigint;
|
|
13453
13453
|
}, {
|
|
13454
|
-
numerator: bigint;
|
|
13455
|
-
denominator: bigint;
|
|
13454
|
+
numerator: string | bigint;
|
|
13455
|
+
denominator: string | bigint;
|
|
13456
13456
|
}>]>>>;
|
|
13457
13457
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13458
13458
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13498,8 +13498,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13498
13498
|
numerator: number;
|
|
13499
13499
|
denominator: number;
|
|
13500
13500
|
} | {
|
|
13501
|
-
numerator: bigint;
|
|
13502
|
-
denominator: bigint;
|
|
13501
|
+
numerator: string | bigint;
|
|
13502
|
+
denominator: string | bigint;
|
|
13503
13503
|
} | undefined;
|
|
13504
13504
|
isNft?: boolean | undefined;
|
|
13505
13505
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -13521,14 +13521,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13521
13521
|
numerator: number;
|
|
13522
13522
|
denominator: number;
|
|
13523
13523
|
}>, z.ZodObject<{
|
|
13524
|
-
numerator: z.ZodBigInt
|
|
13525
|
-
denominator: z.ZodBigInt
|
|
13524
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13525
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13526
13526
|
}, "strip", z.ZodTypeAny, {
|
|
13527
13527
|
numerator: bigint;
|
|
13528
13528
|
denominator: bigint;
|
|
13529
13529
|
}, {
|
|
13530
|
-
numerator: bigint;
|
|
13531
|
-
denominator: bigint;
|
|
13530
|
+
numerator: string | bigint;
|
|
13531
|
+
denominator: string | bigint;
|
|
13532
13532
|
}>]>>>;
|
|
13533
13533
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13534
13534
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13579,8 +13579,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13579
13579
|
numerator: number;
|
|
13580
13580
|
denominator: number;
|
|
13581
13581
|
} | {
|
|
13582
|
-
numerator: bigint;
|
|
13583
|
-
denominator: bigint;
|
|
13582
|
+
numerator: string | bigint;
|
|
13583
|
+
denominator: string | bigint;
|
|
13584
13584
|
} | undefined;
|
|
13585
13585
|
isNft?: boolean | undefined;
|
|
13586
13586
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -13602,14 +13602,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13602
13602
|
numerator: number;
|
|
13603
13603
|
denominator: number;
|
|
13604
13604
|
}>, z.ZodObject<{
|
|
13605
|
-
numerator: z.ZodBigInt
|
|
13606
|
-
denominator: z.ZodBigInt
|
|
13605
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13606
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13607
13607
|
}, "strip", z.ZodTypeAny, {
|
|
13608
13608
|
numerator: bigint;
|
|
13609
13609
|
denominator: bigint;
|
|
13610
13610
|
}, {
|
|
13611
|
-
numerator: bigint;
|
|
13612
|
-
denominator: bigint;
|
|
13611
|
+
numerator: string | bigint;
|
|
13612
|
+
denominator: string | bigint;
|
|
13613
13613
|
}>]>>>;
|
|
13614
13614
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13615
13615
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13673,8 +13673,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13673
13673
|
numerator: number;
|
|
13674
13674
|
denominator: number;
|
|
13675
13675
|
} | {
|
|
13676
|
-
numerator: bigint;
|
|
13677
|
-
denominator: bigint;
|
|
13676
|
+
numerator: string | bigint;
|
|
13677
|
+
denominator: string | bigint;
|
|
13678
13678
|
} | undefined;
|
|
13679
13679
|
isNft?: boolean | undefined;
|
|
13680
13680
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -13696,14 +13696,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13696
13696
|
numerator: number;
|
|
13697
13697
|
denominator: number;
|
|
13698
13698
|
}>, z.ZodObject<{
|
|
13699
|
-
numerator: z.ZodBigInt
|
|
13700
|
-
denominator: z.ZodBigInt
|
|
13699
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13700
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13701
13701
|
}, "strip", z.ZodTypeAny, {
|
|
13702
13702
|
numerator: bigint;
|
|
13703
13703
|
denominator: bigint;
|
|
13704
13704
|
}, {
|
|
13705
|
-
numerator: bigint;
|
|
13706
|
-
denominator: bigint;
|
|
13705
|
+
numerator: string | bigint;
|
|
13706
|
+
denominator: string | bigint;
|
|
13707
13707
|
}>]>>>;
|
|
13708
13708
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13709
13709
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13752,8 +13752,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13752
13752
|
numerator: number;
|
|
13753
13753
|
denominator: number;
|
|
13754
13754
|
} | {
|
|
13755
|
-
numerator: bigint;
|
|
13756
|
-
denominator: bigint;
|
|
13755
|
+
numerator: string | bigint;
|
|
13756
|
+
denominator: string | bigint;
|
|
13757
13757
|
} | undefined;
|
|
13758
13758
|
isNft?: boolean | undefined;
|
|
13759
13759
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -13775,14 +13775,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
13775
13775
|
numerator: number;
|
|
13776
13776
|
denominator: number;
|
|
13777
13777
|
}>, z.ZodObject<{
|
|
13778
|
-
numerator: z.ZodBigInt
|
|
13779
|
-
denominator: z.ZodBigInt
|
|
13778
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13779
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
13780
13780
|
}, "strip", z.ZodTypeAny, {
|
|
13781
13781
|
numerator: bigint;
|
|
13782
13782
|
denominator: bigint;
|
|
13783
13783
|
}, {
|
|
13784
|
-
numerator: bigint;
|
|
13785
|
-
denominator: bigint;
|
|
13784
|
+
numerator: string | bigint;
|
|
13785
|
+
denominator: string | bigint;
|
|
13786
13786
|
}>]>>>;
|
|
13787
13787
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13788
13788
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14001,8 +14001,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14001
14001
|
numerator: number;
|
|
14002
14002
|
denominator: number;
|
|
14003
14003
|
} | {
|
|
14004
|
-
numerator: bigint;
|
|
14005
|
-
denominator: bigint;
|
|
14004
|
+
numerator: string | bigint;
|
|
14005
|
+
denominator: string | bigint;
|
|
14006
14006
|
} | undefined;
|
|
14007
14007
|
isNft?: boolean | undefined;
|
|
14008
14008
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -14024,14 +14024,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14024
14024
|
numerator: number;
|
|
14025
14025
|
denominator: number;
|
|
14026
14026
|
}>, z.ZodObject<{
|
|
14027
|
-
numerator: z.ZodBigInt
|
|
14028
|
-
denominator: z.ZodBigInt
|
|
14027
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14028
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14029
14029
|
}, "strip", z.ZodTypeAny, {
|
|
14030
14030
|
numerator: bigint;
|
|
14031
14031
|
denominator: bigint;
|
|
14032
14032
|
}, {
|
|
14033
|
-
numerator: bigint;
|
|
14034
|
-
denominator: bigint;
|
|
14033
|
+
numerator: string | bigint;
|
|
14034
|
+
denominator: string | bigint;
|
|
14035
14035
|
}>]>>>;
|
|
14036
14036
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14037
14037
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14065,8 +14065,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14065
14065
|
numerator: number;
|
|
14066
14066
|
denominator: number;
|
|
14067
14067
|
} | {
|
|
14068
|
-
numerator: bigint;
|
|
14069
|
-
denominator: bigint;
|
|
14068
|
+
numerator: string | bigint;
|
|
14069
|
+
denominator: string | bigint;
|
|
14070
14070
|
} | undefined;
|
|
14071
14071
|
isNft?: boolean | undefined;
|
|
14072
14072
|
initialSupply?: string | number | undefined;
|
|
@@ -14085,14 +14085,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14085
14085
|
numerator: number;
|
|
14086
14086
|
denominator: number;
|
|
14087
14087
|
}>, z.ZodObject<{
|
|
14088
|
-
numerator: z.ZodBigInt
|
|
14089
|
-
denominator: z.ZodBigInt
|
|
14088
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14089
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14090
14090
|
}, "strip", z.ZodTypeAny, {
|
|
14091
14091
|
numerator: bigint;
|
|
14092
14092
|
denominator: bigint;
|
|
14093
14093
|
}, {
|
|
14094
|
-
numerator: bigint;
|
|
14095
|
-
denominator: bigint;
|
|
14094
|
+
numerator: string | bigint;
|
|
14095
|
+
denominator: string | bigint;
|
|
14096
14096
|
}>]>>>;
|
|
14097
14097
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14098
14098
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14125,8 +14125,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14125
14125
|
numerator: number;
|
|
14126
14126
|
denominator: number;
|
|
14127
14127
|
} | {
|
|
14128
|
-
numerator: bigint;
|
|
14129
|
-
denominator: bigint;
|
|
14128
|
+
numerator: string | bigint;
|
|
14129
|
+
denominator: string | bigint;
|
|
14130
14130
|
} | undefined;
|
|
14131
14131
|
isNft?: boolean | undefined;
|
|
14132
14132
|
}>, z.ZodObject<{
|
|
@@ -14143,14 +14143,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14143
14143
|
numerator: number;
|
|
14144
14144
|
denominator: number;
|
|
14145
14145
|
}>, z.ZodObject<{
|
|
14146
|
-
numerator: z.ZodBigInt
|
|
14147
|
-
denominator: z.ZodBigInt
|
|
14146
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14147
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14148
14148
|
}, "strip", z.ZodTypeAny, {
|
|
14149
14149
|
numerator: bigint;
|
|
14150
14150
|
denominator: bigint;
|
|
14151
14151
|
}, {
|
|
14152
|
-
numerator: bigint;
|
|
14153
|
-
denominator: bigint;
|
|
14152
|
+
numerator: string | bigint;
|
|
14153
|
+
denominator: string | bigint;
|
|
14154
14154
|
}>]>>>;
|
|
14155
14155
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14156
14156
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14206,8 +14206,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14206
14206
|
numerator: number;
|
|
14207
14207
|
denominator: number;
|
|
14208
14208
|
} | {
|
|
14209
|
-
numerator: bigint;
|
|
14210
|
-
denominator: bigint;
|
|
14209
|
+
numerator: string | bigint;
|
|
14210
|
+
denominator: string | bigint;
|
|
14211
14211
|
} | undefined;
|
|
14212
14212
|
isNft?: boolean | undefined;
|
|
14213
14213
|
minFinalityThreshold?: number | undefined;
|
|
@@ -14226,14 +14226,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14226
14226
|
numerator: number;
|
|
14227
14227
|
denominator: number;
|
|
14228
14228
|
}>, z.ZodObject<{
|
|
14229
|
-
numerator: z.ZodBigInt
|
|
14230
|
-
denominator: z.ZodBigInt
|
|
14229
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14230
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14231
14231
|
}, "strip", z.ZodTypeAny, {
|
|
14232
14232
|
numerator: bigint;
|
|
14233
14233
|
denominator: bigint;
|
|
14234
14234
|
}, {
|
|
14235
|
-
numerator: bigint;
|
|
14236
|
-
denominator: bigint;
|
|
14235
|
+
numerator: string | bigint;
|
|
14236
|
+
denominator: string | bigint;
|
|
14237
14237
|
}>]>>>;
|
|
14238
14238
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14239
14239
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14274,8 +14274,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14274
14274
|
numerator: number;
|
|
14275
14275
|
denominator: number;
|
|
14276
14276
|
} | {
|
|
14277
|
-
numerator: bigint;
|
|
14278
|
-
denominator: bigint;
|
|
14277
|
+
numerator: string | bigint;
|
|
14278
|
+
denominator: string | bigint;
|
|
14279
14279
|
} | undefined;
|
|
14280
14280
|
isNft?: boolean | undefined;
|
|
14281
14281
|
extraOptions?: string | undefined;
|
|
@@ -14310,14 +14310,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14310
14310
|
numerator: number;
|
|
14311
14311
|
denominator: number;
|
|
14312
14312
|
}>, z.ZodObject<{
|
|
14313
|
-
numerator: z.ZodBigInt
|
|
14314
|
-
denominator: z.ZodBigInt
|
|
14313
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14314
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14315
14315
|
}, "strip", z.ZodTypeAny, {
|
|
14316
14316
|
numerator: bigint;
|
|
14317
14317
|
denominator: bigint;
|
|
14318
14318
|
}, {
|
|
14319
|
-
numerator: bigint;
|
|
14320
|
-
denominator: bigint;
|
|
14319
|
+
numerator: string | bigint;
|
|
14320
|
+
denominator: string | bigint;
|
|
14321
14321
|
}>]>>>;
|
|
14322
14322
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14323
14323
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -14377,8 +14377,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14377
14377
|
numerator: number;
|
|
14378
14378
|
denominator: number;
|
|
14379
14379
|
} | {
|
|
14380
|
-
numerator: bigint;
|
|
14381
|
-
denominator: bigint;
|
|
14380
|
+
numerator: string | bigint;
|
|
14381
|
+
denominator: string | bigint;
|
|
14382
14382
|
} | undefined;
|
|
14383
14383
|
isNft?: boolean | undefined;
|
|
14384
14384
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -14416,14 +14416,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14416
14416
|
numerator: number;
|
|
14417
14417
|
denominator: number;
|
|
14418
14418
|
}>, z.ZodObject<{
|
|
14419
|
-
numerator: z.ZodBigInt
|
|
14420
|
-
denominator: z.ZodBigInt
|
|
14419
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14420
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14421
14421
|
}, "strip", z.ZodTypeAny, {
|
|
14422
14422
|
numerator: bigint;
|
|
14423
14423
|
denominator: bigint;
|
|
14424
14424
|
}, {
|
|
14425
|
-
numerator: bigint;
|
|
14426
|
-
denominator: bigint;
|
|
14425
|
+
numerator: string | bigint;
|
|
14426
|
+
denominator: string | bigint;
|
|
14427
14427
|
}>]>>>;
|
|
14428
14428
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14429
14429
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -14484,8 +14484,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14484
14484
|
numerator: number;
|
|
14485
14485
|
denominator: number;
|
|
14486
14486
|
} | {
|
|
14487
|
-
numerator: bigint;
|
|
14488
|
-
denominator: bigint;
|
|
14487
|
+
numerator: string | bigint;
|
|
14488
|
+
denominator: string | bigint;
|
|
14489
14489
|
} | undefined;
|
|
14490
14490
|
isNft?: boolean | undefined;
|
|
14491
14491
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -14507,14 +14507,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14507
14507
|
numerator: number;
|
|
14508
14508
|
denominator: number;
|
|
14509
14509
|
}>, z.ZodObject<{
|
|
14510
|
-
numerator: z.ZodBigInt
|
|
14511
|
-
denominator: z.ZodBigInt
|
|
14510
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14511
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14512
14512
|
}, "strip", z.ZodTypeAny, {
|
|
14513
14513
|
numerator: bigint;
|
|
14514
14514
|
denominator: bigint;
|
|
14515
14515
|
}, {
|
|
14516
|
-
numerator: bigint;
|
|
14517
|
-
denominator: bigint;
|
|
14516
|
+
numerator: string | bigint;
|
|
14517
|
+
denominator: string | bigint;
|
|
14518
14518
|
}>]>>>;
|
|
14519
14519
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14520
14520
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14565,8 +14565,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14565
14565
|
numerator: number;
|
|
14566
14566
|
denominator: number;
|
|
14567
14567
|
} | {
|
|
14568
|
-
numerator: bigint;
|
|
14569
|
-
denominator: bigint;
|
|
14568
|
+
numerator: string | bigint;
|
|
14569
|
+
denominator: string | bigint;
|
|
14570
14570
|
} | undefined;
|
|
14571
14571
|
isNft?: boolean | undefined;
|
|
14572
14572
|
}>, z.ZodObject<{
|
|
@@ -14583,14 +14583,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14583
14583
|
numerator: number;
|
|
14584
14584
|
denominator: number;
|
|
14585
14585
|
}>, z.ZodObject<{
|
|
14586
|
-
numerator: z.ZodBigInt
|
|
14587
|
-
denominator: z.ZodBigInt
|
|
14586
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14587
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14588
14588
|
}, "strip", z.ZodTypeAny, {
|
|
14589
14589
|
numerator: bigint;
|
|
14590
14590
|
denominator: bigint;
|
|
14591
14591
|
}, {
|
|
14592
|
-
numerator: bigint;
|
|
14593
|
-
denominator: bigint;
|
|
14592
|
+
numerator: string | bigint;
|
|
14593
|
+
denominator: string | bigint;
|
|
14594
14594
|
}>]>>>;
|
|
14595
14595
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14596
14596
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14643,8 +14643,8 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14643
14643
|
numerator: number;
|
|
14644
14644
|
denominator: number;
|
|
14645
14645
|
} | {
|
|
14646
|
-
numerator: bigint;
|
|
14647
|
-
denominator: bigint;
|
|
14646
|
+
numerator: string | bigint;
|
|
14647
|
+
denominator: string | bigint;
|
|
14648
14648
|
} | undefined;
|
|
14649
14649
|
isNft?: boolean | undefined;
|
|
14650
14650
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -14666,14 +14666,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14666
14666
|
numerator: number;
|
|
14667
14667
|
denominator: number;
|
|
14668
14668
|
}>, z.ZodObject<{
|
|
14669
|
-
numerator: z.ZodBigInt
|
|
14670
|
-
denominator: z.ZodBigInt
|
|
14669
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14670
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14671
14671
|
}, "strip", z.ZodTypeAny, {
|
|
14672
14672
|
numerator: bigint;
|
|
14673
14673
|
denominator: bigint;
|
|
14674
14674
|
}, {
|
|
14675
|
-
numerator: bigint;
|
|
14676
|
-
denominator: bigint;
|
|
14675
|
+
numerator: string | bigint;
|
|
14676
|
+
denominator: string | bigint;
|
|
14677
14677
|
}>]>>>;
|
|
14678
14678
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14679
14679
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14693,14 +14693,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14693
14693
|
numerator: number;
|
|
14694
14694
|
denominator: number;
|
|
14695
14695
|
}>, z.ZodObject<{
|
|
14696
|
-
numerator: z.ZodBigInt
|
|
14697
|
-
denominator: z.ZodBigInt
|
|
14696
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14697
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14698
14698
|
}, "strip", z.ZodTypeAny, {
|
|
14699
14699
|
numerator: bigint;
|
|
14700
14700
|
denominator: bigint;
|
|
14701
14701
|
}, {
|
|
14702
|
-
numerator: bigint;
|
|
14703
|
-
denominator: bigint;
|
|
14702
|
+
numerator: string | bigint;
|
|
14703
|
+
denominator: string | bigint;
|
|
14704
14704
|
}>]>>>;
|
|
14705
14705
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14706
14706
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14720,14 +14720,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
14720
14720
|
numerator: number;
|
|
14721
14721
|
denominator: number;
|
|
14722
14722
|
}>, z.ZodObject<{
|
|
14723
|
-
numerator: z.ZodBigInt
|
|
14724
|
-
denominator: z.ZodBigInt
|
|
14723
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14724
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
14725
14725
|
}, "strip", z.ZodTypeAny, {
|
|
14726
14726
|
numerator: bigint;
|
|
14727
14727
|
denominator: bigint;
|
|
14728
14728
|
}, {
|
|
14729
|
-
numerator: bigint;
|
|
14730
|
-
denominator: bigint;
|
|
14729
|
+
numerator: string | bigint;
|
|
14730
|
+
denominator: string | bigint;
|
|
14731
14731
|
}>]>>>;
|
|
14732
14732
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14733
14733
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15037,14 +15037,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
15037
15037
|
numerator: number;
|
|
15038
15038
|
denominator: number;
|
|
15039
15039
|
}>, z.ZodObject<{
|
|
15040
|
-
numerator: z.ZodBigInt
|
|
15041
|
-
denominator: z.ZodBigInt
|
|
15040
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
15041
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
15042
15042
|
}, "strip", z.ZodTypeAny, {
|
|
15043
15043
|
numerator: bigint;
|
|
15044
15044
|
denominator: bigint;
|
|
15045
15045
|
}, {
|
|
15046
|
-
numerator: bigint;
|
|
15047
|
-
denominator: bigint;
|
|
15046
|
+
numerator: string | bigint;
|
|
15047
|
+
denominator: string | bigint;
|
|
15048
15048
|
}>]>>>;
|
|
15049
15049
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15050
15050
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16208,14 +16208,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
16208
16208
|
numerator: number;
|
|
16209
16209
|
denominator: number;
|
|
16210
16210
|
}>, z.ZodObject<{
|
|
16211
|
-
numerator: z.ZodBigInt
|
|
16212
|
-
denominator: z.ZodBigInt
|
|
16211
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
16212
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
16213
16213
|
}, "strip", z.ZodTypeAny, {
|
|
16214
16214
|
numerator: bigint;
|
|
16215
16215
|
denominator: bigint;
|
|
16216
16216
|
}, {
|
|
16217
|
-
numerator: bigint;
|
|
16218
|
-
denominator: bigint;
|
|
16217
|
+
numerator: string | bigint;
|
|
16218
|
+
denominator: string | bigint;
|
|
16219
16219
|
}>]>>>;
|
|
16220
16220
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16221
16221
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16670,14 +16670,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
16670
16670
|
numerator: number;
|
|
16671
16671
|
denominator: number;
|
|
16672
16672
|
}>, z.ZodObject<{
|
|
16673
|
-
numerator: z.ZodBigInt
|
|
16674
|
-
denominator: z.ZodBigInt
|
|
16673
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
16674
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
16675
16675
|
}, "strip", z.ZodTypeAny, {
|
|
16676
16676
|
numerator: bigint;
|
|
16677
16677
|
denominator: bigint;
|
|
16678
16678
|
}, {
|
|
16679
|
-
numerator: bigint;
|
|
16680
|
-
denominator: bigint;
|
|
16679
|
+
numerator: string | bigint;
|
|
16680
|
+
denominator: string | bigint;
|
|
16681
16681
|
}>]>>>;
|
|
16682
16682
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16683
16683
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -17132,14 +17132,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
17132
17132
|
numerator: number;
|
|
17133
17133
|
denominator: number;
|
|
17134
17134
|
}>, z.ZodObject<{
|
|
17135
|
-
numerator: z.ZodBigInt
|
|
17136
|
-
denominator: z.ZodBigInt
|
|
17135
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
17136
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
17137
17137
|
}, "strip", z.ZodTypeAny, {
|
|
17138
17138
|
numerator: bigint;
|
|
17139
17139
|
denominator: bigint;
|
|
17140
17140
|
}, {
|
|
17141
|
-
numerator: bigint;
|
|
17142
|
-
denominator: bigint;
|
|
17141
|
+
numerator: string | bigint;
|
|
17142
|
+
denominator: string | bigint;
|
|
17143
17143
|
}>]>>>;
|
|
17144
17144
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17145
17145
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -17594,14 +17594,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
17594
17594
|
numerator: number;
|
|
17595
17595
|
denominator: number;
|
|
17596
17596
|
}>, z.ZodObject<{
|
|
17597
|
-
numerator: z.ZodBigInt
|
|
17598
|
-
denominator: z.ZodBigInt
|
|
17597
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
17598
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
17599
17599
|
}, "strip", z.ZodTypeAny, {
|
|
17600
17600
|
numerator: bigint;
|
|
17601
17601
|
denominator: bigint;
|
|
17602
17602
|
}, {
|
|
17603
|
-
numerator: bigint;
|
|
17604
|
-
denominator: bigint;
|
|
17603
|
+
numerator: string | bigint;
|
|
17604
|
+
denominator: string | bigint;
|
|
17605
17605
|
}>]>>>;
|
|
17606
17606
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17607
17607
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18056,14 +18056,14 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
18056
18056
|
numerator: number;
|
|
18057
18057
|
denominator: number;
|
|
18058
18058
|
}>, z.ZodObject<{
|
|
18059
|
-
numerator: z.ZodBigInt
|
|
18060
|
-
denominator: z.ZodBigInt
|
|
18059
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18060
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18061
18061
|
}, "strip", z.ZodTypeAny, {
|
|
18062
18062
|
numerator: bigint;
|
|
18063
18063
|
denominator: bigint;
|
|
18064
18064
|
}, {
|
|
18065
|
-
numerator: bigint;
|
|
18066
|
-
denominator: bigint;
|
|
18065
|
+
numerator: string | bigint;
|
|
18066
|
+
denominator: string | bigint;
|
|
18067
18067
|
}>]>>>;
|
|
18068
18068
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18069
18069
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18230,14 +18230,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18230
18230
|
numerator: number;
|
|
18231
18231
|
denominator: number;
|
|
18232
18232
|
}>, z.ZodObject<{
|
|
18233
|
-
numerator: z.ZodBigInt
|
|
18234
|
-
denominator: z.ZodBigInt
|
|
18233
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18234
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18235
18235
|
}, "strip", z.ZodTypeAny, {
|
|
18236
18236
|
numerator: bigint;
|
|
18237
18237
|
denominator: bigint;
|
|
18238
18238
|
}, {
|
|
18239
|
-
numerator: bigint;
|
|
18240
|
-
denominator: bigint;
|
|
18239
|
+
numerator: string | bigint;
|
|
18240
|
+
denominator: string | bigint;
|
|
18241
18241
|
}>]>>>;
|
|
18242
18242
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18243
18243
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18283,8 +18283,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18283
18283
|
numerator: number;
|
|
18284
18284
|
denominator: number;
|
|
18285
18285
|
} | {
|
|
18286
|
-
numerator: bigint;
|
|
18287
|
-
denominator: bigint;
|
|
18286
|
+
numerator: string | bigint;
|
|
18287
|
+
denominator: string | bigint;
|
|
18288
18288
|
} | undefined;
|
|
18289
18289
|
isNft?: boolean | undefined;
|
|
18290
18290
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -18306,14 +18306,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18306
18306
|
numerator: number;
|
|
18307
18307
|
denominator: number;
|
|
18308
18308
|
}>, z.ZodObject<{
|
|
18309
|
-
numerator: z.ZodBigInt
|
|
18310
|
-
denominator: z.ZodBigInt
|
|
18309
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18310
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18311
18311
|
}, "strip", z.ZodTypeAny, {
|
|
18312
18312
|
numerator: bigint;
|
|
18313
18313
|
denominator: bigint;
|
|
18314
18314
|
}, {
|
|
18315
|
-
numerator: bigint;
|
|
18316
|
-
denominator: bigint;
|
|
18315
|
+
numerator: string | bigint;
|
|
18316
|
+
denominator: string | bigint;
|
|
18317
18317
|
}>]>>>;
|
|
18318
18318
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18319
18319
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18364,8 +18364,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18364
18364
|
numerator: number;
|
|
18365
18365
|
denominator: number;
|
|
18366
18366
|
} | {
|
|
18367
|
-
numerator: bigint;
|
|
18368
|
-
denominator: bigint;
|
|
18367
|
+
numerator: string | bigint;
|
|
18368
|
+
denominator: string | bigint;
|
|
18369
18369
|
} | undefined;
|
|
18370
18370
|
isNft?: boolean | undefined;
|
|
18371
18371
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -18387,14 +18387,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18387
18387
|
numerator: number;
|
|
18388
18388
|
denominator: number;
|
|
18389
18389
|
}>, z.ZodObject<{
|
|
18390
|
-
numerator: z.ZodBigInt
|
|
18391
|
-
denominator: z.ZodBigInt
|
|
18390
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18391
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18392
18392
|
}, "strip", z.ZodTypeAny, {
|
|
18393
18393
|
numerator: bigint;
|
|
18394
18394
|
denominator: bigint;
|
|
18395
18395
|
}, {
|
|
18396
|
-
numerator: bigint;
|
|
18397
|
-
denominator: bigint;
|
|
18396
|
+
numerator: string | bigint;
|
|
18397
|
+
denominator: string | bigint;
|
|
18398
18398
|
}>]>>>;
|
|
18399
18399
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18400
18400
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18458,8 +18458,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18458
18458
|
numerator: number;
|
|
18459
18459
|
denominator: number;
|
|
18460
18460
|
} | {
|
|
18461
|
-
numerator: bigint;
|
|
18462
|
-
denominator: bigint;
|
|
18461
|
+
numerator: string | bigint;
|
|
18462
|
+
denominator: string | bigint;
|
|
18463
18463
|
} | undefined;
|
|
18464
18464
|
isNft?: boolean | undefined;
|
|
18465
18465
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -18481,14 +18481,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18481
18481
|
numerator: number;
|
|
18482
18482
|
denominator: number;
|
|
18483
18483
|
}>, z.ZodObject<{
|
|
18484
|
-
numerator: z.ZodBigInt
|
|
18485
|
-
denominator: z.ZodBigInt
|
|
18484
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18485
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18486
18486
|
}, "strip", z.ZodTypeAny, {
|
|
18487
18487
|
numerator: bigint;
|
|
18488
18488
|
denominator: bigint;
|
|
18489
18489
|
}, {
|
|
18490
|
-
numerator: bigint;
|
|
18491
|
-
denominator: bigint;
|
|
18490
|
+
numerator: string | bigint;
|
|
18491
|
+
denominator: string | bigint;
|
|
18492
18492
|
}>]>>>;
|
|
18493
18493
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18494
18494
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18537,8 +18537,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18537
18537
|
numerator: number;
|
|
18538
18538
|
denominator: number;
|
|
18539
18539
|
} | {
|
|
18540
|
-
numerator: bigint;
|
|
18541
|
-
denominator: bigint;
|
|
18540
|
+
numerator: string | bigint;
|
|
18541
|
+
denominator: string | bigint;
|
|
18542
18542
|
} | undefined;
|
|
18543
18543
|
isNft?: boolean | undefined;
|
|
18544
18544
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -18560,14 +18560,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18560
18560
|
numerator: number;
|
|
18561
18561
|
denominator: number;
|
|
18562
18562
|
}>, z.ZodObject<{
|
|
18563
|
-
numerator: z.ZodBigInt
|
|
18564
|
-
denominator: z.ZodBigInt
|
|
18563
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18564
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18565
18565
|
}, "strip", z.ZodTypeAny, {
|
|
18566
18566
|
numerator: bigint;
|
|
18567
18567
|
denominator: bigint;
|
|
18568
18568
|
}, {
|
|
18569
|
-
numerator: bigint;
|
|
18570
|
-
denominator: bigint;
|
|
18569
|
+
numerator: string | bigint;
|
|
18570
|
+
denominator: string | bigint;
|
|
18571
18571
|
}>]>>>;
|
|
18572
18572
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18573
18573
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18786,8 +18786,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18786
18786
|
numerator: number;
|
|
18787
18787
|
denominator: number;
|
|
18788
18788
|
} | {
|
|
18789
|
-
numerator: bigint;
|
|
18790
|
-
denominator: bigint;
|
|
18789
|
+
numerator: string | bigint;
|
|
18790
|
+
denominator: string | bigint;
|
|
18791
18791
|
} | undefined;
|
|
18792
18792
|
isNft?: boolean | undefined;
|
|
18793
18793
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -18809,14 +18809,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18809
18809
|
numerator: number;
|
|
18810
18810
|
denominator: number;
|
|
18811
18811
|
}>, z.ZodObject<{
|
|
18812
|
-
numerator: z.ZodBigInt
|
|
18813
|
-
denominator: z.ZodBigInt
|
|
18812
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18813
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18814
18814
|
}, "strip", z.ZodTypeAny, {
|
|
18815
18815
|
numerator: bigint;
|
|
18816
18816
|
denominator: bigint;
|
|
18817
18817
|
}, {
|
|
18818
|
-
numerator: bigint;
|
|
18819
|
-
denominator: bigint;
|
|
18818
|
+
numerator: string | bigint;
|
|
18819
|
+
denominator: string | bigint;
|
|
18820
18820
|
}>]>>>;
|
|
18821
18821
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18822
18822
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18850,8 +18850,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18850
18850
|
numerator: number;
|
|
18851
18851
|
denominator: number;
|
|
18852
18852
|
} | {
|
|
18853
|
-
numerator: bigint;
|
|
18854
|
-
denominator: bigint;
|
|
18853
|
+
numerator: string | bigint;
|
|
18854
|
+
denominator: string | bigint;
|
|
18855
18855
|
} | undefined;
|
|
18856
18856
|
isNft?: boolean | undefined;
|
|
18857
18857
|
initialSupply?: string | number | undefined;
|
|
@@ -18870,14 +18870,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18870
18870
|
numerator: number;
|
|
18871
18871
|
denominator: number;
|
|
18872
18872
|
}>, z.ZodObject<{
|
|
18873
|
-
numerator: z.ZodBigInt
|
|
18874
|
-
denominator: z.ZodBigInt
|
|
18873
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18874
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18875
18875
|
}, "strip", z.ZodTypeAny, {
|
|
18876
18876
|
numerator: bigint;
|
|
18877
18877
|
denominator: bigint;
|
|
18878
18878
|
}, {
|
|
18879
|
-
numerator: bigint;
|
|
18880
|
-
denominator: bigint;
|
|
18879
|
+
numerator: string | bigint;
|
|
18880
|
+
denominator: string | bigint;
|
|
18881
18881
|
}>]>>>;
|
|
18882
18882
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18883
18883
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18910,8 +18910,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18910
18910
|
numerator: number;
|
|
18911
18911
|
denominator: number;
|
|
18912
18912
|
} | {
|
|
18913
|
-
numerator: bigint;
|
|
18914
|
-
denominator: bigint;
|
|
18913
|
+
numerator: string | bigint;
|
|
18914
|
+
denominator: string | bigint;
|
|
18915
18915
|
} | undefined;
|
|
18916
18916
|
isNft?: boolean | undefined;
|
|
18917
18917
|
}>, z.ZodObject<{
|
|
@@ -18928,14 +18928,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18928
18928
|
numerator: number;
|
|
18929
18929
|
denominator: number;
|
|
18930
18930
|
}>, z.ZodObject<{
|
|
18931
|
-
numerator: z.ZodBigInt
|
|
18932
|
-
denominator: z.ZodBigInt
|
|
18931
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18932
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
18933
18933
|
}, "strip", z.ZodTypeAny, {
|
|
18934
18934
|
numerator: bigint;
|
|
18935
18935
|
denominator: bigint;
|
|
18936
18936
|
}, {
|
|
18937
|
-
numerator: bigint;
|
|
18938
|
-
denominator: bigint;
|
|
18937
|
+
numerator: string | bigint;
|
|
18938
|
+
denominator: string | bigint;
|
|
18939
18939
|
}>]>>>;
|
|
18940
18940
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18941
18941
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18991,8 +18991,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
18991
18991
|
numerator: number;
|
|
18992
18992
|
denominator: number;
|
|
18993
18993
|
} | {
|
|
18994
|
-
numerator: bigint;
|
|
18995
|
-
denominator: bigint;
|
|
18994
|
+
numerator: string | bigint;
|
|
18995
|
+
denominator: string | bigint;
|
|
18996
18996
|
} | undefined;
|
|
18997
18997
|
isNft?: boolean | undefined;
|
|
18998
18998
|
minFinalityThreshold?: number | undefined;
|
|
@@ -19011,14 +19011,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19011
19011
|
numerator: number;
|
|
19012
19012
|
denominator: number;
|
|
19013
19013
|
}>, z.ZodObject<{
|
|
19014
|
-
numerator: z.ZodBigInt
|
|
19015
|
-
denominator: z.ZodBigInt
|
|
19014
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19015
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19016
19016
|
}, "strip", z.ZodTypeAny, {
|
|
19017
19017
|
numerator: bigint;
|
|
19018
19018
|
denominator: bigint;
|
|
19019
19019
|
}, {
|
|
19020
|
-
numerator: bigint;
|
|
19021
|
-
denominator: bigint;
|
|
19020
|
+
numerator: string | bigint;
|
|
19021
|
+
denominator: string | bigint;
|
|
19022
19022
|
}>]>>>;
|
|
19023
19023
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19024
19024
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19059,8 +19059,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19059
19059
|
numerator: number;
|
|
19060
19060
|
denominator: number;
|
|
19061
19061
|
} | {
|
|
19062
|
-
numerator: bigint;
|
|
19063
|
-
denominator: bigint;
|
|
19062
|
+
numerator: string | bigint;
|
|
19063
|
+
denominator: string | bigint;
|
|
19064
19064
|
} | undefined;
|
|
19065
19065
|
isNft?: boolean | undefined;
|
|
19066
19066
|
extraOptions?: string | undefined;
|
|
@@ -19095,14 +19095,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19095
19095
|
numerator: number;
|
|
19096
19096
|
denominator: number;
|
|
19097
19097
|
}>, z.ZodObject<{
|
|
19098
|
-
numerator: z.ZodBigInt
|
|
19099
|
-
denominator: z.ZodBigInt
|
|
19098
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19099
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19100
19100
|
}, "strip", z.ZodTypeAny, {
|
|
19101
19101
|
numerator: bigint;
|
|
19102
19102
|
denominator: bigint;
|
|
19103
19103
|
}, {
|
|
19104
|
-
numerator: bigint;
|
|
19105
|
-
denominator: bigint;
|
|
19104
|
+
numerator: string | bigint;
|
|
19105
|
+
denominator: string | bigint;
|
|
19106
19106
|
}>]>>>;
|
|
19107
19107
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19108
19108
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -19162,8 +19162,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19162
19162
|
numerator: number;
|
|
19163
19163
|
denominator: number;
|
|
19164
19164
|
} | {
|
|
19165
|
-
numerator: bigint;
|
|
19166
|
-
denominator: bigint;
|
|
19165
|
+
numerator: string | bigint;
|
|
19166
|
+
denominator: string | bigint;
|
|
19167
19167
|
} | undefined;
|
|
19168
19168
|
isNft?: boolean | undefined;
|
|
19169
19169
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -19201,14 +19201,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19201
19201
|
numerator: number;
|
|
19202
19202
|
denominator: number;
|
|
19203
19203
|
}>, z.ZodObject<{
|
|
19204
|
-
numerator: z.ZodBigInt
|
|
19205
|
-
denominator: z.ZodBigInt
|
|
19204
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19205
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19206
19206
|
}, "strip", z.ZodTypeAny, {
|
|
19207
19207
|
numerator: bigint;
|
|
19208
19208
|
denominator: bigint;
|
|
19209
19209
|
}, {
|
|
19210
|
-
numerator: bigint;
|
|
19211
|
-
denominator: bigint;
|
|
19210
|
+
numerator: string | bigint;
|
|
19211
|
+
denominator: string | bigint;
|
|
19212
19212
|
}>]>>>;
|
|
19213
19213
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19214
19214
|
allowedRebalancingBridges: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodArray<z.ZodObject<{
|
|
@@ -19269,8 +19269,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19269
19269
|
numerator: number;
|
|
19270
19270
|
denominator: number;
|
|
19271
19271
|
} | {
|
|
19272
|
-
numerator: bigint;
|
|
19273
|
-
denominator: bigint;
|
|
19272
|
+
numerator: string | bigint;
|
|
19273
|
+
denominator: string | bigint;
|
|
19274
19274
|
} | undefined;
|
|
19275
19275
|
isNft?: boolean | undefined;
|
|
19276
19276
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -19292,14 +19292,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19292
19292
|
numerator: number;
|
|
19293
19293
|
denominator: number;
|
|
19294
19294
|
}>, z.ZodObject<{
|
|
19295
|
-
numerator: z.ZodBigInt
|
|
19296
|
-
denominator: z.ZodBigInt
|
|
19295
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19296
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19297
19297
|
}, "strip", z.ZodTypeAny, {
|
|
19298
19298
|
numerator: bigint;
|
|
19299
19299
|
denominator: bigint;
|
|
19300
19300
|
}, {
|
|
19301
|
-
numerator: bigint;
|
|
19302
|
-
denominator: bigint;
|
|
19301
|
+
numerator: string | bigint;
|
|
19302
|
+
denominator: string | bigint;
|
|
19303
19303
|
}>]>>>;
|
|
19304
19304
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19305
19305
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19350,8 +19350,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19350
19350
|
numerator: number;
|
|
19351
19351
|
denominator: number;
|
|
19352
19352
|
} | {
|
|
19353
|
-
numerator: bigint;
|
|
19354
|
-
denominator: bigint;
|
|
19353
|
+
numerator: string | bigint;
|
|
19354
|
+
denominator: string | bigint;
|
|
19355
19355
|
} | undefined;
|
|
19356
19356
|
isNft?: boolean | undefined;
|
|
19357
19357
|
}>, z.ZodObject<{
|
|
@@ -19368,14 +19368,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19368
19368
|
numerator: number;
|
|
19369
19369
|
denominator: number;
|
|
19370
19370
|
}>, z.ZodObject<{
|
|
19371
|
-
numerator: z.ZodBigInt
|
|
19372
|
-
denominator: z.ZodBigInt
|
|
19371
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19372
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19373
19373
|
}, "strip", z.ZodTypeAny, {
|
|
19374
19374
|
numerator: bigint;
|
|
19375
19375
|
denominator: bigint;
|
|
19376
19376
|
}, {
|
|
19377
|
-
numerator: bigint;
|
|
19378
|
-
denominator: bigint;
|
|
19377
|
+
numerator: string | bigint;
|
|
19378
|
+
denominator: string | bigint;
|
|
19379
19379
|
}>]>>>;
|
|
19380
19380
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19381
19381
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19428,8 +19428,8 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19428
19428
|
numerator: number;
|
|
19429
19429
|
denominator: number;
|
|
19430
19430
|
} | {
|
|
19431
|
-
numerator: bigint;
|
|
19432
|
-
denominator: bigint;
|
|
19431
|
+
numerator: string | bigint;
|
|
19432
|
+
denominator: string | bigint;
|
|
19433
19433
|
} | undefined;
|
|
19434
19434
|
isNft?: boolean | undefined;
|
|
19435
19435
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -19451,14 +19451,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19451
19451
|
numerator: number;
|
|
19452
19452
|
denominator: number;
|
|
19453
19453
|
}>, z.ZodObject<{
|
|
19454
|
-
numerator: z.ZodBigInt
|
|
19455
|
-
denominator: z.ZodBigInt
|
|
19454
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19455
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19456
19456
|
}, "strip", z.ZodTypeAny, {
|
|
19457
19457
|
numerator: bigint;
|
|
19458
19458
|
denominator: bigint;
|
|
19459
19459
|
}, {
|
|
19460
|
-
numerator: bigint;
|
|
19461
|
-
denominator: bigint;
|
|
19460
|
+
numerator: string | bigint;
|
|
19461
|
+
denominator: string | bigint;
|
|
19462
19462
|
}>]>>>;
|
|
19463
19463
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19464
19464
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19478,14 +19478,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19478
19478
|
numerator: number;
|
|
19479
19479
|
denominator: number;
|
|
19480
19480
|
}>, z.ZodObject<{
|
|
19481
|
-
numerator: z.ZodBigInt
|
|
19482
|
-
denominator: z.ZodBigInt
|
|
19481
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19482
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19483
19483
|
}, "strip", z.ZodTypeAny, {
|
|
19484
19484
|
numerator: bigint;
|
|
19485
19485
|
denominator: bigint;
|
|
19486
19486
|
}, {
|
|
19487
|
-
numerator: bigint;
|
|
19488
|
-
denominator: bigint;
|
|
19487
|
+
numerator: string | bigint;
|
|
19488
|
+
denominator: string | bigint;
|
|
19489
19489
|
}>]>>>;
|
|
19490
19490
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19491
19491
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19505,14 +19505,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19505
19505
|
numerator: number;
|
|
19506
19506
|
denominator: number;
|
|
19507
19507
|
}>, z.ZodObject<{
|
|
19508
|
-
numerator: z.ZodBigInt
|
|
19509
|
-
denominator: z.ZodBigInt
|
|
19508
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19509
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19510
19510
|
}, "strip", z.ZodTypeAny, {
|
|
19511
19511
|
numerator: bigint;
|
|
19512
19512
|
denominator: bigint;
|
|
19513
19513
|
}, {
|
|
19514
|
-
numerator: bigint;
|
|
19515
|
-
denominator: bigint;
|
|
19514
|
+
numerator: string | bigint;
|
|
19515
|
+
denominator: string | bigint;
|
|
19516
19516
|
}>]>>>;
|
|
19517
19517
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19518
19518
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -19822,14 +19822,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
19822
19822
|
numerator: number;
|
|
19823
19823
|
denominator: number;
|
|
19824
19824
|
}>, z.ZodObject<{
|
|
19825
|
-
numerator: z.ZodBigInt
|
|
19826
|
-
denominator: z.ZodBigInt
|
|
19825
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19826
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
19827
19827
|
}, "strip", z.ZodTypeAny, {
|
|
19828
19828
|
numerator: bigint;
|
|
19829
19829
|
denominator: bigint;
|
|
19830
19830
|
}, {
|
|
19831
|
-
numerator: bigint;
|
|
19832
|
-
denominator: bigint;
|
|
19831
|
+
numerator: string | bigint;
|
|
19832
|
+
denominator: string | bigint;
|
|
19833
19833
|
}>]>>>;
|
|
19834
19834
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19835
19835
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -20993,14 +20993,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
20993
20993
|
numerator: number;
|
|
20994
20994
|
denominator: number;
|
|
20995
20995
|
}>, z.ZodObject<{
|
|
20996
|
-
numerator: z.ZodBigInt
|
|
20997
|
-
denominator: z.ZodBigInt
|
|
20996
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
20997
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
20998
20998
|
}, "strip", z.ZodTypeAny, {
|
|
20999
20999
|
numerator: bigint;
|
|
21000
21000
|
denominator: bigint;
|
|
21001
21001
|
}, {
|
|
21002
|
-
numerator: bigint;
|
|
21003
|
-
denominator: bigint;
|
|
21002
|
+
numerator: string | bigint;
|
|
21003
|
+
denominator: string | bigint;
|
|
21004
21004
|
}>]>>>;
|
|
21005
21005
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
21006
21006
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21455,14 +21455,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
21455
21455
|
numerator: number;
|
|
21456
21456
|
denominator: number;
|
|
21457
21457
|
}>, z.ZodObject<{
|
|
21458
|
-
numerator: z.ZodBigInt
|
|
21459
|
-
denominator: z.ZodBigInt
|
|
21458
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
21459
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
21460
21460
|
}, "strip", z.ZodTypeAny, {
|
|
21461
21461
|
numerator: bigint;
|
|
21462
21462
|
denominator: bigint;
|
|
21463
21463
|
}, {
|
|
21464
|
-
numerator: bigint;
|
|
21465
|
-
denominator: bigint;
|
|
21464
|
+
numerator: string | bigint;
|
|
21465
|
+
denominator: string | bigint;
|
|
21466
21466
|
}>]>>>;
|
|
21467
21467
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
21468
21468
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21917,14 +21917,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
21917
21917
|
numerator: number;
|
|
21918
21918
|
denominator: number;
|
|
21919
21919
|
}>, z.ZodObject<{
|
|
21920
|
-
numerator: z.ZodBigInt
|
|
21921
|
-
denominator: z.ZodBigInt
|
|
21920
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
21921
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
21922
21922
|
}, "strip", z.ZodTypeAny, {
|
|
21923
21923
|
numerator: bigint;
|
|
21924
21924
|
denominator: bigint;
|
|
21925
21925
|
}, {
|
|
21926
|
-
numerator: bigint;
|
|
21927
|
-
denominator: bigint;
|
|
21926
|
+
numerator: string | bigint;
|
|
21927
|
+
denominator: string | bigint;
|
|
21928
21928
|
}>]>>>;
|
|
21929
21929
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
21930
21930
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22379,14 +22379,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
22379
22379
|
numerator: number;
|
|
22380
22380
|
denominator: number;
|
|
22381
22381
|
}>, z.ZodObject<{
|
|
22382
|
-
numerator: z.ZodBigInt
|
|
22383
|
-
denominator: z.ZodBigInt
|
|
22382
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
22383
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
22384
22384
|
}, "strip", z.ZodTypeAny, {
|
|
22385
22385
|
numerator: bigint;
|
|
22386
22386
|
denominator: bigint;
|
|
22387
22387
|
}, {
|
|
22388
|
-
numerator: bigint;
|
|
22389
|
-
denominator: bigint;
|
|
22388
|
+
numerator: string | bigint;
|
|
22389
|
+
denominator: string | bigint;
|
|
22390
22390
|
}>]>>>;
|
|
22391
22391
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22392
22392
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22841,14 +22841,14 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
22841
22841
|
numerator: number;
|
|
22842
22842
|
denominator: number;
|
|
22843
22843
|
}>, z.ZodObject<{
|
|
22844
|
-
numerator: z.ZodBigInt
|
|
22845
|
-
denominator: z.ZodBigInt
|
|
22844
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
22845
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
22846
22846
|
}, "strip", z.ZodTypeAny, {
|
|
22847
22847
|
numerator: bigint;
|
|
22848
22848
|
denominator: bigint;
|
|
22849
22849
|
}, {
|
|
22850
|
-
numerator: bigint;
|
|
22851
|
-
denominator: bigint;
|
|
22850
|
+
numerator: string | bigint;
|
|
22851
|
+
denominator: string | bigint;
|
|
22852
22852
|
}>]>>>;
|
|
22853
22853
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
22854
22854
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23021,14 +23021,14 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23021
23021
|
numerator: number;
|
|
23022
23022
|
denominator: number;
|
|
23023
23023
|
}>, z.ZodObject<{
|
|
23024
|
-
numerator: z.ZodBigInt
|
|
23025
|
-
denominator: z.ZodBigInt
|
|
23024
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23025
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23026
23026
|
}, "strip", z.ZodTypeAny, {
|
|
23027
23027
|
numerator: bigint;
|
|
23028
23028
|
denominator: bigint;
|
|
23029
23029
|
}, {
|
|
23030
|
-
numerator: bigint;
|
|
23031
|
-
denominator: bigint;
|
|
23030
|
+
numerator: string | bigint;
|
|
23031
|
+
denominator: string | bigint;
|
|
23032
23032
|
}>]>>>;
|
|
23033
23033
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
23034
23034
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23077,8 +23077,8 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23077
23077
|
numerator: number;
|
|
23078
23078
|
denominator: number;
|
|
23079
23079
|
} | {
|
|
23080
|
-
numerator: bigint;
|
|
23081
|
-
denominator: bigint;
|
|
23080
|
+
numerator: string | bigint;
|
|
23081
|
+
denominator: string | bigint;
|
|
23082
23082
|
} | undefined;
|
|
23083
23083
|
isNft?: boolean | undefined;
|
|
23084
23084
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -23100,14 +23100,14 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23100
23100
|
numerator: number;
|
|
23101
23101
|
denominator: number;
|
|
23102
23102
|
}>, z.ZodObject<{
|
|
23103
|
-
numerator: z.ZodBigInt
|
|
23104
|
-
denominator: z.ZodBigInt
|
|
23103
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23104
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23105
23105
|
}, "strip", z.ZodTypeAny, {
|
|
23106
23106
|
numerator: bigint;
|
|
23107
23107
|
denominator: bigint;
|
|
23108
23108
|
}, {
|
|
23109
|
-
numerator: bigint;
|
|
23110
|
-
denominator: bigint;
|
|
23109
|
+
numerator: string | bigint;
|
|
23110
|
+
denominator: string | bigint;
|
|
23111
23111
|
}>]>>>;
|
|
23112
23112
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
23113
23113
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23160,8 +23160,8 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23160
23160
|
numerator: number;
|
|
23161
23161
|
denominator: number;
|
|
23162
23162
|
} | {
|
|
23163
|
-
numerator: bigint;
|
|
23164
|
-
denominator: bigint;
|
|
23163
|
+
numerator: string | bigint;
|
|
23164
|
+
denominator: string | bigint;
|
|
23165
23165
|
} | undefined;
|
|
23166
23166
|
isNft?: boolean | undefined;
|
|
23167
23167
|
allowedRebalancingBridges?: Record<string | number, {
|
|
@@ -23183,14 +23183,14 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23183
23183
|
numerator: number;
|
|
23184
23184
|
denominator: number;
|
|
23185
23185
|
}>, z.ZodObject<{
|
|
23186
|
-
numerator: z.ZodBigInt
|
|
23187
|
-
denominator: z.ZodBigInt
|
|
23186
|
+
numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23187
|
+
denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
|
|
23188
23188
|
}, "strip", z.ZodTypeAny, {
|
|
23189
23189
|
numerator: bigint;
|
|
23190
23190
|
denominator: bigint;
|
|
23191
23191
|
}, {
|
|
23192
|
-
numerator: bigint;
|
|
23193
|
-
denominator: bigint;
|
|
23192
|
+
numerator: string | bigint;
|
|
23193
|
+
denominator: string | bigint;
|
|
23194
23194
|
}>]>>>;
|
|
23195
23195
|
isNft: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
23196
23196
|
contractVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23236,8 +23236,8 @@ declare const MovableTokenSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
23236
23236
|
numerator: number;
|
|
23237
23237
|
denominator: number;
|
|
23238
23238
|
} | {
|
|
23239
|
-
numerator: bigint;
|
|
23240
|
-
denominator: bigint;
|
|
23239
|
+
numerator: string | bigint;
|
|
23240
|
+
denominator: string | bigint;
|
|
23241
23241
|
} | undefined;
|
|
23242
23242
|
isNft?: boolean | undefined;
|
|
23243
23243
|
allowedRebalancingBridges?: Record<string | number, {
|