@hyperlane-xyz/cli 8.2.0 → 8.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/config/hooks.d.ts +145 -0
- package/dist/src/config/hooks.d.ts.map +1 -1
- package/dist/src/config/hooks.js +1 -0
- package/dist/src/config/hooks.js.map +1 -1
- package/dist/src/context/strategies/chain/MultiChainResolver.js +1 -1
- package/dist/src/context/strategies/chain/MultiChainResolver.js.map +1 -1
- package/dist/src/deploy/warp.d.ts.map +1 -1
- package/dist/src/deploy/warp.js +8 -8
- package/dist/src/deploy/warp.js.map +1 -1
- package/dist/src/tests/commands/helpers.d.ts +4 -1
- package/dist/src/tests/commands/helpers.d.ts.map +1 -1
- package/dist/src/tests/commands/helpers.js +8 -3
- package/dist/src/tests/commands/helpers.js.map +1 -1
- package/dist/src/tests/commands/warp.d.ts +37 -4
- package/dist/src/tests/commands/warp.d.ts.map +1 -1
- package/dist/src/tests/commands/warp.js +171 -13
- package/dist/src/tests/commands/warp.js.map +1 -1
- package/dist/src/tests/core/core-check.e2e-test.js +4 -4
- package/dist/src/tests/core/core-check.e2e-test.js.map +1 -1
- package/dist/src/tests/warp/warp-apply.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/{warp-apply.e2e-test.js → warp/warp-apply.e2e-test.js} +19 -7
- package/dist/src/tests/warp/warp-apply.e2e-test.js.map +1 -0
- package/dist/src/tests/warp/warp-check.e2e-test.d.ts +2 -0
- package/dist/src/tests/warp/warp-check.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/warp/warp-check.e2e-test.js +120 -0
- package/dist/src/tests/warp/warp-check.e2e-test.js.map +1 -0
- package/dist/src/tests/warp/warp-deploy.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/warp/warp-deploy.e2e-test.js +409 -0
- package/dist/src/tests/warp/warp-deploy.e2e-test.js.map +1 -0
- package/dist/src/tests/warp/warp-init.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/{warp-init.e2e-test.js → warp/warp-init.e2e-test.js} +3 -3
- package/dist/src/tests/warp/warp-init.e2e-test.js.map +1 -0
- package/dist/src/tests/warp/warp-read.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/warp/warp-read.e2e-test.js +107 -0
- package/dist/src/tests/warp/warp-read.e2e-test.js.map +1 -0
- package/dist/src/tests/warp/warp-send.e2e-test.d.ts +2 -0
- package/dist/src/tests/warp/warp-send.e2e-test.d.ts.map +1 -0
- package/dist/src/tests/warp/warp-send.e2e-test.js +249 -0
- package/dist/src/tests/warp/warp-send.e2e-test.js.map +1 -0
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +4 -4
- package/dist/src/tests/warp-apply.e2e-test.d.ts.map +0 -1
- package/dist/src/tests/warp-apply.e2e-test.js.map +0 -1
- package/dist/src/tests/warp-deploy.e2e-test.d.ts.map +0 -1
- package/dist/src/tests/warp-deploy.e2e-test.js +0 -154
- package/dist/src/tests/warp-deploy.e2e-test.js.map +0 -1
- package/dist/src/tests/warp-init.e2e-test.d.ts.map +0 -1
- package/dist/src/tests/warp-init.e2e-test.js.map +0 -1
- package/dist/src/tests/warp-read.e2e-test.d.ts.map +0 -1
- package/dist/src/tests/warp-read.e2e-test.js +0 -24
- package/dist/src/tests/warp-read.e2e-test.js.map +0 -1
- /package/dist/src/tests/{warp-apply.e2e-test.d.ts → warp/warp-apply.e2e-test.d.ts} +0 -0
- /package/dist/src/tests/{warp-deploy.e2e-test.d.ts → warp/warp-deploy.e2e-test.d.ts} +0 -0
- /package/dist/src/tests/{warp-init.e2e-test.d.ts → warp/warp-init.e2e-test.d.ts} +0 -0
- /package/dist/src/tests/{warp-read.e2e-test.d.ts → warp/warp-read.e2e-test.d.ts} +0 -0
|
@@ -73,12 +73,15 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
73
73
|
oracleConfig: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
74
74
|
gasPrice: z.ZodString;
|
|
75
75
|
tokenExchangeRate: z.ZodString;
|
|
76
|
+
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
76
77
|
}, "strip", z.ZodTypeAny, {
|
|
77
78
|
gasPrice: string;
|
|
78
79
|
tokenExchangeRate: string;
|
|
80
|
+
tokenDecimals?: number | undefined;
|
|
79
81
|
}, {
|
|
80
82
|
gasPrice: string;
|
|
81
83
|
tokenExchangeRate: string;
|
|
84
|
+
tokenDecimals?: number | undefined;
|
|
82
85
|
}>>;
|
|
83
86
|
}, "strip", z.ZodTypeAny, {
|
|
84
87
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -89,6 +92,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
89
92
|
oracleConfig: Record<string, {
|
|
90
93
|
gasPrice: string;
|
|
91
94
|
tokenExchangeRate: string;
|
|
95
|
+
tokenDecimals?: number | undefined;
|
|
92
96
|
}>;
|
|
93
97
|
ownerOverrides?: Record<string, string> | undefined;
|
|
94
98
|
}, {
|
|
@@ -100,6 +104,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
100
104
|
oracleConfig: Record<string, {
|
|
101
105
|
gasPrice: string;
|
|
102
106
|
tokenExchangeRate: string;
|
|
107
|
+
tokenDecimals?: number | undefined;
|
|
103
108
|
}>;
|
|
104
109
|
ownerOverrides?: Record<string, string> | undefined;
|
|
105
110
|
}>, z.ZodType<import("@hyperlane-xyz/sdk").DomainRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").DomainRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").AggregationHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -191,12 +196,15 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
191
196
|
oracleConfig: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
192
197
|
gasPrice: z.ZodString;
|
|
193
198
|
tokenExchangeRate: z.ZodString;
|
|
199
|
+
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
194
200
|
}, "strip", z.ZodTypeAny, {
|
|
195
201
|
gasPrice: string;
|
|
196
202
|
tokenExchangeRate: string;
|
|
203
|
+
tokenDecimals?: number | undefined;
|
|
197
204
|
}, {
|
|
198
205
|
gasPrice: string;
|
|
199
206
|
tokenExchangeRate: string;
|
|
207
|
+
tokenDecimals?: number | undefined;
|
|
200
208
|
}>>;
|
|
201
209
|
}, "strip", z.ZodTypeAny, {
|
|
202
210
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -207,6 +215,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
207
215
|
oracleConfig: Record<string, {
|
|
208
216
|
gasPrice: string;
|
|
209
217
|
tokenExchangeRate: string;
|
|
218
|
+
tokenDecimals?: number | undefined;
|
|
210
219
|
}>;
|
|
211
220
|
ownerOverrides?: Record<string, string> | undefined;
|
|
212
221
|
}, {
|
|
@@ -218,6 +227,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
218
227
|
oracleConfig: Record<string, {
|
|
219
228
|
gasPrice: string;
|
|
220
229
|
tokenExchangeRate: string;
|
|
230
|
+
tokenDecimals?: number | undefined;
|
|
221
231
|
}>;
|
|
222
232
|
ownerOverrides?: Record<string, string> | undefined;
|
|
223
233
|
}>, z.ZodType<import("@hyperlane-xyz/sdk").DomainRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").DomainRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").AggregationHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -269,6 +279,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
269
279
|
oracleConfig: Record<string, {
|
|
270
280
|
gasPrice: string;
|
|
271
281
|
tokenExchangeRate: string;
|
|
282
|
+
tokenDecimals?: number | undefined;
|
|
272
283
|
}>;
|
|
273
284
|
ownerOverrides?: Record<string, string> | undefined;
|
|
274
285
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -306,6 +317,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
306
317
|
oracleConfig: Record<string, {
|
|
307
318
|
gasPrice: string;
|
|
308
319
|
tokenExchangeRate: string;
|
|
320
|
+
tokenDecimals?: number | undefined;
|
|
309
321
|
}>;
|
|
310
322
|
ownerOverrides?: Record<string, string> | undefined;
|
|
311
323
|
}) | (string & {
|
|
@@ -341,6 +353,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
341
353
|
oracleConfig: Record<string, {
|
|
342
354
|
gasPrice: string;
|
|
343
355
|
tokenExchangeRate: string;
|
|
356
|
+
tokenDecimals?: number | undefined;
|
|
344
357
|
}>;
|
|
345
358
|
ownerOverrides?: Record<string, string> | undefined;
|
|
346
359
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -385,6 +398,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
385
398
|
oracleConfig: Record<string, {
|
|
386
399
|
gasPrice: string;
|
|
387
400
|
tokenExchangeRate: string;
|
|
401
|
+
tokenDecimals?: number | undefined;
|
|
388
402
|
}>;
|
|
389
403
|
ownerOverrides?: Record<string, string> | undefined;
|
|
390
404
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -425,6 +439,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
425
439
|
oracleConfig: Record<string, {
|
|
426
440
|
gasPrice: string;
|
|
427
441
|
tokenExchangeRate: string;
|
|
442
|
+
tokenDecimals?: number | undefined;
|
|
428
443
|
}>;
|
|
429
444
|
ownerOverrides?: Record<string, string> | undefined;
|
|
430
445
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -469,6 +484,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
469
484
|
oracleConfig: Record<string, {
|
|
470
485
|
gasPrice: string;
|
|
471
486
|
tokenExchangeRate: string;
|
|
487
|
+
tokenDecimals?: number | undefined;
|
|
472
488
|
}>;
|
|
473
489
|
ownerOverrides?: Record<string, string> | undefined;
|
|
474
490
|
} & string) | ({
|
|
@@ -504,6 +520,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
504
520
|
oracleConfig: Record<string, {
|
|
505
521
|
gasPrice: string;
|
|
506
522
|
tokenExchangeRate: string;
|
|
523
|
+
tokenDecimals?: number | undefined;
|
|
507
524
|
}>;
|
|
508
525
|
ownerOverrides?: Record<string, string> | undefined;
|
|
509
526
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -548,6 +565,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
548
565
|
oracleConfig: Record<string, {
|
|
549
566
|
gasPrice: string;
|
|
550
567
|
tokenExchangeRate: string;
|
|
568
|
+
tokenDecimals?: number | undefined;
|
|
551
569
|
}>;
|
|
552
570
|
ownerOverrides?: Record<string, string> | undefined;
|
|
553
571
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -592,6 +610,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
592
610
|
oracleConfig: Record<string, {
|
|
593
611
|
gasPrice: string;
|
|
594
612
|
tokenExchangeRate: string;
|
|
613
|
+
tokenDecimals?: number | undefined;
|
|
595
614
|
}>;
|
|
596
615
|
ownerOverrides?: Record<string, string> | undefined;
|
|
597
616
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -632,6 +651,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
632
651
|
oracleConfig: Record<string, {
|
|
633
652
|
gasPrice: string;
|
|
634
653
|
tokenExchangeRate: string;
|
|
654
|
+
tokenDecimals?: number | undefined;
|
|
635
655
|
}>;
|
|
636
656
|
ownerOverrides?: Record<string, string> | undefined;
|
|
637
657
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -674,6 +694,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
674
694
|
oracleConfig: Record<string, {
|
|
675
695
|
gasPrice: string;
|
|
676
696
|
tokenExchangeRate: string;
|
|
697
|
+
tokenDecimals?: number | undefined;
|
|
677
698
|
}>;
|
|
678
699
|
ownerOverrides?: Record<string, string> | undefined;
|
|
679
700
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -714,6 +735,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
714
735
|
oracleConfig: Record<string, {
|
|
715
736
|
gasPrice: string;
|
|
716
737
|
tokenExchangeRate: string;
|
|
738
|
+
tokenDecimals?: number | undefined;
|
|
717
739
|
}>;
|
|
718
740
|
ownerOverrides?: Record<string, string> | undefined;
|
|
719
741
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -759,6 +781,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
759
781
|
oracleConfig: Record<string, {
|
|
760
782
|
gasPrice: string;
|
|
761
783
|
tokenExchangeRate: string;
|
|
784
|
+
tokenDecimals?: number | undefined;
|
|
762
785
|
}>;
|
|
763
786
|
ownerOverrides?: Record<string, string> | undefined;
|
|
764
787
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -796,6 +819,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
796
819
|
oracleConfig: Record<string, {
|
|
797
820
|
gasPrice: string;
|
|
798
821
|
tokenExchangeRate: string;
|
|
822
|
+
tokenDecimals?: number | undefined;
|
|
799
823
|
}>;
|
|
800
824
|
ownerOverrides?: Record<string, string> | undefined;
|
|
801
825
|
}) | (string & {
|
|
@@ -831,6 +855,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
831
855
|
oracleConfig: Record<string, {
|
|
832
856
|
gasPrice: string;
|
|
833
857
|
tokenExchangeRate: string;
|
|
858
|
+
tokenDecimals?: number | undefined;
|
|
834
859
|
}>;
|
|
835
860
|
ownerOverrides?: Record<string, string> | undefined;
|
|
836
861
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -875,6 +900,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
875
900
|
oracleConfig: Record<string, {
|
|
876
901
|
gasPrice: string;
|
|
877
902
|
tokenExchangeRate: string;
|
|
903
|
+
tokenDecimals?: number | undefined;
|
|
878
904
|
}>;
|
|
879
905
|
ownerOverrides?: Record<string, string> | undefined;
|
|
880
906
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -915,6 +941,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
915
941
|
oracleConfig: Record<string, {
|
|
916
942
|
gasPrice: string;
|
|
917
943
|
tokenExchangeRate: string;
|
|
944
|
+
tokenDecimals?: number | undefined;
|
|
918
945
|
}>;
|
|
919
946
|
ownerOverrides?: Record<string, string> | undefined;
|
|
920
947
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -959,6 +986,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
959
986
|
oracleConfig: Record<string, {
|
|
960
987
|
gasPrice: string;
|
|
961
988
|
tokenExchangeRate: string;
|
|
989
|
+
tokenDecimals?: number | undefined;
|
|
962
990
|
}>;
|
|
963
991
|
ownerOverrides?: Record<string, string> | undefined;
|
|
964
992
|
} & string) | ({
|
|
@@ -994,6 +1022,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
994
1022
|
oracleConfig: Record<string, {
|
|
995
1023
|
gasPrice: string;
|
|
996
1024
|
tokenExchangeRate: string;
|
|
1025
|
+
tokenDecimals?: number | undefined;
|
|
997
1026
|
}>;
|
|
998
1027
|
ownerOverrides?: Record<string, string> | undefined;
|
|
999
1028
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1038,6 +1067,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1038
1067
|
oracleConfig: Record<string, {
|
|
1039
1068
|
gasPrice: string;
|
|
1040
1069
|
tokenExchangeRate: string;
|
|
1070
|
+
tokenDecimals?: number | undefined;
|
|
1041
1071
|
}>;
|
|
1042
1072
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1043
1073
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1082,6 +1112,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1082
1112
|
oracleConfig: Record<string, {
|
|
1083
1113
|
gasPrice: string;
|
|
1084
1114
|
tokenExchangeRate: string;
|
|
1115
|
+
tokenDecimals?: number | undefined;
|
|
1085
1116
|
}>;
|
|
1086
1117
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1087
1118
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1122,6 +1153,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1122
1153
|
oracleConfig: Record<string, {
|
|
1123
1154
|
gasPrice: string;
|
|
1124
1155
|
tokenExchangeRate: string;
|
|
1156
|
+
tokenDecimals?: number | undefined;
|
|
1125
1157
|
}>;
|
|
1126
1158
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1127
1159
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1164,6 +1196,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1164
1196
|
oracleConfig: Record<string, {
|
|
1165
1197
|
gasPrice: string;
|
|
1166
1198
|
tokenExchangeRate: string;
|
|
1199
|
+
tokenDecimals?: number | undefined;
|
|
1167
1200
|
}>;
|
|
1168
1201
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1169
1202
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1204,6 +1237,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1204
1237
|
oracleConfig: Record<string, {
|
|
1205
1238
|
gasPrice: string;
|
|
1206
1239
|
tokenExchangeRate: string;
|
|
1240
|
+
tokenDecimals?: number | undefined;
|
|
1207
1241
|
}>;
|
|
1208
1242
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1209
1243
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1250,6 +1284,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1250
1284
|
oracleConfig: Record<string, {
|
|
1251
1285
|
gasPrice: string;
|
|
1252
1286
|
tokenExchangeRate: string;
|
|
1287
|
+
tokenDecimals?: number | undefined;
|
|
1253
1288
|
}>;
|
|
1254
1289
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1255
1290
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1291,6 +1326,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1291
1326
|
oracleConfig: Record<string, {
|
|
1292
1327
|
gasPrice: string;
|
|
1293
1328
|
tokenExchangeRate: string;
|
|
1329
|
+
tokenDecimals?: number | undefined;
|
|
1294
1330
|
}>;
|
|
1295
1331
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1296
1332
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1335,6 +1371,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1335
1371
|
oracleConfig: Record<string, {
|
|
1336
1372
|
gasPrice: string;
|
|
1337
1373
|
tokenExchangeRate: string;
|
|
1374
|
+
tokenDecimals?: number | undefined;
|
|
1338
1375
|
}>;
|
|
1339
1376
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1340
1377
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1375,6 +1412,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1375
1412
|
oracleConfig: Record<string, {
|
|
1376
1413
|
gasPrice: string;
|
|
1377
1414
|
tokenExchangeRate: string;
|
|
1415
|
+
tokenDecimals?: number | undefined;
|
|
1378
1416
|
}>;
|
|
1379
1417
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1380
1418
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1417,6 +1455,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1417
1455
|
oracleConfig: Record<string, {
|
|
1418
1456
|
gasPrice: string;
|
|
1419
1457
|
tokenExchangeRate: string;
|
|
1458
|
+
tokenDecimals?: number | undefined;
|
|
1420
1459
|
}>;
|
|
1421
1460
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1422
1461
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1461,6 +1500,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1461
1500
|
oracleConfig: Record<string, {
|
|
1462
1501
|
gasPrice: string;
|
|
1463
1502
|
tokenExchangeRate: string;
|
|
1503
|
+
tokenDecimals?: number | undefined;
|
|
1464
1504
|
}>;
|
|
1465
1505
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1466
1506
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1505,6 +1545,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1505
1545
|
oracleConfig: Record<string, {
|
|
1506
1546
|
gasPrice: string;
|
|
1507
1547
|
tokenExchangeRate: string;
|
|
1548
|
+
tokenDecimals?: number | undefined;
|
|
1508
1549
|
}>;
|
|
1509
1550
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1510
1551
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1545,6 +1586,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1545
1586
|
oracleConfig: Record<string, {
|
|
1546
1587
|
gasPrice: string;
|
|
1547
1588
|
tokenExchangeRate: string;
|
|
1589
|
+
tokenDecimals?: number | undefined;
|
|
1548
1590
|
}>;
|
|
1549
1591
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1550
1592
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1587,6 +1629,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1587
1629
|
oracleConfig: Record<string, {
|
|
1588
1630
|
gasPrice: string;
|
|
1589
1631
|
tokenExchangeRate: string;
|
|
1632
|
+
tokenDecimals?: number | undefined;
|
|
1590
1633
|
}>;
|
|
1591
1634
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1592
1635
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1627,6 +1670,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1627
1670
|
oracleConfig: Record<string, {
|
|
1628
1671
|
gasPrice: string;
|
|
1629
1672
|
tokenExchangeRate: string;
|
|
1673
|
+
tokenDecimals?: number | undefined;
|
|
1630
1674
|
}>;
|
|
1631
1675
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1632
1676
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1665,6 +1709,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1665
1709
|
oracleConfig: Record<string, {
|
|
1666
1710
|
gasPrice: string;
|
|
1667
1711
|
tokenExchangeRate: string;
|
|
1712
|
+
tokenDecimals?: number | undefined;
|
|
1668
1713
|
}>;
|
|
1669
1714
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1670
1715
|
}) | (string & {
|
|
@@ -1702,6 +1747,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1702
1747
|
oracleConfig: Record<string, {
|
|
1703
1748
|
gasPrice: string;
|
|
1704
1749
|
tokenExchangeRate: string;
|
|
1750
|
+
tokenDecimals?: number | undefined;
|
|
1705
1751
|
}>;
|
|
1706
1752
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1707
1753
|
} & string) | ({
|
|
@@ -1740,6 +1786,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1740
1786
|
oracleConfig: Record<string, {
|
|
1741
1787
|
gasPrice: string;
|
|
1742
1788
|
tokenExchangeRate: string;
|
|
1789
|
+
tokenDecimals?: number | undefined;
|
|
1743
1790
|
}>;
|
|
1744
1791
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1745
1792
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1781,6 +1828,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1781
1828
|
oracleConfig: Record<string, {
|
|
1782
1829
|
gasPrice: string;
|
|
1783
1830
|
tokenExchangeRate: string;
|
|
1831
|
+
tokenDecimals?: number | undefined;
|
|
1784
1832
|
}>;
|
|
1785
1833
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1786
1834
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1825,6 +1873,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1825
1873
|
oracleConfig: Record<string, {
|
|
1826
1874
|
gasPrice: string;
|
|
1827
1875
|
tokenExchangeRate: string;
|
|
1876
|
+
tokenDecimals?: number | undefined;
|
|
1828
1877
|
}>;
|
|
1829
1878
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1830
1879
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1865,6 +1914,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1865
1914
|
oracleConfig: Record<string, {
|
|
1866
1915
|
gasPrice: string;
|
|
1867
1916
|
tokenExchangeRate: string;
|
|
1917
|
+
tokenDecimals?: number | undefined;
|
|
1868
1918
|
}>;
|
|
1869
1919
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1870
1920
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1907,6 +1957,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1907
1957
|
oracleConfig: Record<string, {
|
|
1908
1958
|
gasPrice: string;
|
|
1909
1959
|
tokenExchangeRate: string;
|
|
1960
|
+
tokenDecimals?: number | undefined;
|
|
1910
1961
|
}>;
|
|
1911
1962
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1912
1963
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1951,6 +2002,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1951
2002
|
oracleConfig: Record<string, {
|
|
1952
2003
|
gasPrice: string;
|
|
1953
2004
|
tokenExchangeRate: string;
|
|
2005
|
+
tokenDecimals?: number | undefined;
|
|
1954
2006
|
}>;
|
|
1955
2007
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1956
2008
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -1995,6 +2047,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1995
2047
|
oracleConfig: Record<string, {
|
|
1996
2048
|
gasPrice: string;
|
|
1997
2049
|
tokenExchangeRate: string;
|
|
2050
|
+
tokenDecimals?: number | undefined;
|
|
1998
2051
|
}>;
|
|
1999
2052
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2000
2053
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2035,6 +2088,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
2035
2088
|
oracleConfig: Record<string, {
|
|
2036
2089
|
gasPrice: string;
|
|
2037
2090
|
tokenExchangeRate: string;
|
|
2091
|
+
tokenDecimals?: number | undefined;
|
|
2038
2092
|
}>;
|
|
2039
2093
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2040
2094
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2077,6 +2131,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
2077
2131
|
oracleConfig: Record<string, {
|
|
2078
2132
|
gasPrice: string;
|
|
2079
2133
|
tokenExchangeRate: string;
|
|
2134
|
+
tokenDecimals?: number | undefined;
|
|
2080
2135
|
}>;
|
|
2081
2136
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2082
2137
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2117,6 +2172,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
2117
2172
|
oracleConfig: Record<string, {
|
|
2118
2173
|
gasPrice: string;
|
|
2119
2174
|
tokenExchangeRate: string;
|
|
2175
|
+
tokenDecimals?: number | undefined;
|
|
2120
2176
|
}>;
|
|
2121
2177
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2122
2178
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2155,6 +2211,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
2155
2211
|
oracleConfig: Record<string, {
|
|
2156
2212
|
gasPrice: string;
|
|
2157
2213
|
tokenExchangeRate: string;
|
|
2214
|
+
tokenDecimals?: number | undefined;
|
|
2158
2215
|
}>;
|
|
2159
2216
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2160
2217
|
}) | (string & {
|
|
@@ -2192,6 +2249,7 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
2192
2249
|
oracleConfig: Record<string, {
|
|
2193
2250
|
gasPrice: string;
|
|
2194
2251
|
tokenExchangeRate: string;
|
|
2252
|
+
tokenDecimals?: number | undefined;
|
|
2195
2253
|
}>;
|
|
2196
2254
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2197
2255
|
} & string) | ({
|
|
@@ -2274,12 +2332,15 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2274
2332
|
oracleConfig: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2275
2333
|
gasPrice: z.ZodString;
|
|
2276
2334
|
tokenExchangeRate: z.ZodString;
|
|
2335
|
+
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
2277
2336
|
}, "strip", z.ZodTypeAny, {
|
|
2278
2337
|
gasPrice: string;
|
|
2279
2338
|
tokenExchangeRate: string;
|
|
2339
|
+
tokenDecimals?: number | undefined;
|
|
2280
2340
|
}, {
|
|
2281
2341
|
gasPrice: string;
|
|
2282
2342
|
tokenExchangeRate: string;
|
|
2343
|
+
tokenDecimals?: number | undefined;
|
|
2283
2344
|
}>>;
|
|
2284
2345
|
}, "strip", z.ZodTypeAny, {
|
|
2285
2346
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -2290,6 +2351,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2290
2351
|
oracleConfig: Record<string, {
|
|
2291
2352
|
gasPrice: string;
|
|
2292
2353
|
tokenExchangeRate: string;
|
|
2354
|
+
tokenDecimals?: number | undefined;
|
|
2293
2355
|
}>;
|
|
2294
2356
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2295
2357
|
}, {
|
|
@@ -2301,6 +2363,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2301
2363
|
oracleConfig: Record<string, {
|
|
2302
2364
|
gasPrice: string;
|
|
2303
2365
|
tokenExchangeRate: string;
|
|
2366
|
+
tokenDecimals?: number | undefined;
|
|
2304
2367
|
}>;
|
|
2305
2368
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2306
2369
|
}>, z.ZodType<import("@hyperlane-xyz/sdk").DomainRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").DomainRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").AggregationHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -2392,12 +2455,15 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2392
2455
|
oracleConfig: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2393
2456
|
gasPrice: z.ZodString;
|
|
2394
2457
|
tokenExchangeRate: z.ZodString;
|
|
2458
|
+
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
2395
2459
|
}, "strip", z.ZodTypeAny, {
|
|
2396
2460
|
gasPrice: string;
|
|
2397
2461
|
tokenExchangeRate: string;
|
|
2462
|
+
tokenDecimals?: number | undefined;
|
|
2398
2463
|
}, {
|
|
2399
2464
|
gasPrice: string;
|
|
2400
2465
|
tokenExchangeRate: string;
|
|
2466
|
+
tokenDecimals?: number | undefined;
|
|
2401
2467
|
}>>;
|
|
2402
2468
|
}, "strip", z.ZodTypeAny, {
|
|
2403
2469
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -2408,6 +2474,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2408
2474
|
oracleConfig: Record<string, {
|
|
2409
2475
|
gasPrice: string;
|
|
2410
2476
|
tokenExchangeRate: string;
|
|
2477
|
+
tokenDecimals?: number | undefined;
|
|
2411
2478
|
}>;
|
|
2412
2479
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2413
2480
|
}, {
|
|
@@ -2419,6 +2486,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2419
2486
|
oracleConfig: Record<string, {
|
|
2420
2487
|
gasPrice: string;
|
|
2421
2488
|
tokenExchangeRate: string;
|
|
2489
|
+
tokenDecimals?: number | undefined;
|
|
2422
2490
|
}>;
|
|
2423
2491
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2424
2492
|
}>, z.ZodType<import("@hyperlane-xyz/sdk").DomainRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").DomainRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig>, z.ZodType<import("@hyperlane-xyz/sdk").AggregationHookConfig, z.ZodTypeDef, import("@hyperlane-xyz/sdk").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -2470,6 +2538,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2470
2538
|
oracleConfig: Record<string, {
|
|
2471
2539
|
gasPrice: string;
|
|
2472
2540
|
tokenExchangeRate: string;
|
|
2541
|
+
tokenDecimals?: number | undefined;
|
|
2473
2542
|
}>;
|
|
2474
2543
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2475
2544
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2507,6 +2576,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2507
2576
|
oracleConfig: Record<string, {
|
|
2508
2577
|
gasPrice: string;
|
|
2509
2578
|
tokenExchangeRate: string;
|
|
2579
|
+
tokenDecimals?: number | undefined;
|
|
2510
2580
|
}>;
|
|
2511
2581
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2512
2582
|
}) | (string & {
|
|
@@ -2542,6 +2612,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2542
2612
|
oracleConfig: Record<string, {
|
|
2543
2613
|
gasPrice: string;
|
|
2544
2614
|
tokenExchangeRate: string;
|
|
2615
|
+
tokenDecimals?: number | undefined;
|
|
2545
2616
|
}>;
|
|
2546
2617
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2547
2618
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2586,6 +2657,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2586
2657
|
oracleConfig: Record<string, {
|
|
2587
2658
|
gasPrice: string;
|
|
2588
2659
|
tokenExchangeRate: string;
|
|
2660
|
+
tokenDecimals?: number | undefined;
|
|
2589
2661
|
}>;
|
|
2590
2662
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2591
2663
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2626,6 +2698,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2626
2698
|
oracleConfig: Record<string, {
|
|
2627
2699
|
gasPrice: string;
|
|
2628
2700
|
tokenExchangeRate: string;
|
|
2701
|
+
tokenDecimals?: number | undefined;
|
|
2629
2702
|
}>;
|
|
2630
2703
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2631
2704
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2670,6 +2743,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2670
2743
|
oracleConfig: Record<string, {
|
|
2671
2744
|
gasPrice: string;
|
|
2672
2745
|
tokenExchangeRate: string;
|
|
2746
|
+
tokenDecimals?: number | undefined;
|
|
2673
2747
|
}>;
|
|
2674
2748
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2675
2749
|
} & string) | ({
|
|
@@ -2705,6 +2779,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2705
2779
|
oracleConfig: Record<string, {
|
|
2706
2780
|
gasPrice: string;
|
|
2707
2781
|
tokenExchangeRate: string;
|
|
2782
|
+
tokenDecimals?: number | undefined;
|
|
2708
2783
|
}>;
|
|
2709
2784
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2710
2785
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2749,6 +2824,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2749
2824
|
oracleConfig: Record<string, {
|
|
2750
2825
|
gasPrice: string;
|
|
2751
2826
|
tokenExchangeRate: string;
|
|
2827
|
+
tokenDecimals?: number | undefined;
|
|
2752
2828
|
}>;
|
|
2753
2829
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2754
2830
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2793,6 +2869,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2793
2869
|
oracleConfig: Record<string, {
|
|
2794
2870
|
gasPrice: string;
|
|
2795
2871
|
tokenExchangeRate: string;
|
|
2872
|
+
tokenDecimals?: number | undefined;
|
|
2796
2873
|
}>;
|
|
2797
2874
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2798
2875
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2833,6 +2910,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2833
2910
|
oracleConfig: Record<string, {
|
|
2834
2911
|
gasPrice: string;
|
|
2835
2912
|
tokenExchangeRate: string;
|
|
2913
|
+
tokenDecimals?: number | undefined;
|
|
2836
2914
|
}>;
|
|
2837
2915
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2838
2916
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2875,6 +2953,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2875
2953
|
oracleConfig: Record<string, {
|
|
2876
2954
|
gasPrice: string;
|
|
2877
2955
|
tokenExchangeRate: string;
|
|
2956
|
+
tokenDecimals?: number | undefined;
|
|
2878
2957
|
}>;
|
|
2879
2958
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2880
2959
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2915,6 +2994,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2915
2994
|
oracleConfig: Record<string, {
|
|
2916
2995
|
gasPrice: string;
|
|
2917
2996
|
tokenExchangeRate: string;
|
|
2997
|
+
tokenDecimals?: number | undefined;
|
|
2918
2998
|
}>;
|
|
2919
2999
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2920
3000
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2960,6 +3040,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2960
3040
|
oracleConfig: Record<string, {
|
|
2961
3041
|
gasPrice: string;
|
|
2962
3042
|
tokenExchangeRate: string;
|
|
3043
|
+
tokenDecimals?: number | undefined;
|
|
2963
3044
|
}>;
|
|
2964
3045
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2965
3046
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -2997,6 +3078,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2997
3078
|
oracleConfig: Record<string, {
|
|
2998
3079
|
gasPrice: string;
|
|
2999
3080
|
tokenExchangeRate: string;
|
|
3081
|
+
tokenDecimals?: number | undefined;
|
|
3000
3082
|
}>;
|
|
3001
3083
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3002
3084
|
}) | (string & {
|
|
@@ -3032,6 +3114,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3032
3114
|
oracleConfig: Record<string, {
|
|
3033
3115
|
gasPrice: string;
|
|
3034
3116
|
tokenExchangeRate: string;
|
|
3117
|
+
tokenDecimals?: number | undefined;
|
|
3035
3118
|
}>;
|
|
3036
3119
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3037
3120
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3076,6 +3159,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3076
3159
|
oracleConfig: Record<string, {
|
|
3077
3160
|
gasPrice: string;
|
|
3078
3161
|
tokenExchangeRate: string;
|
|
3162
|
+
tokenDecimals?: number | undefined;
|
|
3079
3163
|
}>;
|
|
3080
3164
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3081
3165
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3116,6 +3200,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3116
3200
|
oracleConfig: Record<string, {
|
|
3117
3201
|
gasPrice: string;
|
|
3118
3202
|
tokenExchangeRate: string;
|
|
3203
|
+
tokenDecimals?: number | undefined;
|
|
3119
3204
|
}>;
|
|
3120
3205
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3121
3206
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3160,6 +3245,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3160
3245
|
oracleConfig: Record<string, {
|
|
3161
3246
|
gasPrice: string;
|
|
3162
3247
|
tokenExchangeRate: string;
|
|
3248
|
+
tokenDecimals?: number | undefined;
|
|
3163
3249
|
}>;
|
|
3164
3250
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3165
3251
|
} & string) | ({
|
|
@@ -3195,6 +3281,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3195
3281
|
oracleConfig: Record<string, {
|
|
3196
3282
|
gasPrice: string;
|
|
3197
3283
|
tokenExchangeRate: string;
|
|
3284
|
+
tokenDecimals?: number | undefined;
|
|
3198
3285
|
}>;
|
|
3199
3286
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3200
3287
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3239,6 +3326,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3239
3326
|
oracleConfig: Record<string, {
|
|
3240
3327
|
gasPrice: string;
|
|
3241
3328
|
tokenExchangeRate: string;
|
|
3329
|
+
tokenDecimals?: number | undefined;
|
|
3242
3330
|
}>;
|
|
3243
3331
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3244
3332
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3283,6 +3371,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3283
3371
|
oracleConfig: Record<string, {
|
|
3284
3372
|
gasPrice: string;
|
|
3285
3373
|
tokenExchangeRate: string;
|
|
3374
|
+
tokenDecimals?: number | undefined;
|
|
3286
3375
|
}>;
|
|
3287
3376
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3288
3377
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3323,6 +3412,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3323
3412
|
oracleConfig: Record<string, {
|
|
3324
3413
|
gasPrice: string;
|
|
3325
3414
|
tokenExchangeRate: string;
|
|
3415
|
+
tokenDecimals?: number | undefined;
|
|
3326
3416
|
}>;
|
|
3327
3417
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3328
3418
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3365,6 +3455,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3365
3455
|
oracleConfig: Record<string, {
|
|
3366
3456
|
gasPrice: string;
|
|
3367
3457
|
tokenExchangeRate: string;
|
|
3458
|
+
tokenDecimals?: number | undefined;
|
|
3368
3459
|
}>;
|
|
3369
3460
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3370
3461
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3405,6 +3496,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3405
3496
|
oracleConfig: Record<string, {
|
|
3406
3497
|
gasPrice: string;
|
|
3407
3498
|
tokenExchangeRate: string;
|
|
3499
|
+
tokenDecimals?: number | undefined;
|
|
3408
3500
|
}>;
|
|
3409
3501
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3410
3502
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3451,6 +3543,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3451
3543
|
oracleConfig: Record<string, {
|
|
3452
3544
|
gasPrice: string;
|
|
3453
3545
|
tokenExchangeRate: string;
|
|
3546
|
+
tokenDecimals?: number | undefined;
|
|
3454
3547
|
}>;
|
|
3455
3548
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3456
3549
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3492,6 +3585,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3492
3585
|
oracleConfig: Record<string, {
|
|
3493
3586
|
gasPrice: string;
|
|
3494
3587
|
tokenExchangeRate: string;
|
|
3588
|
+
tokenDecimals?: number | undefined;
|
|
3495
3589
|
}>;
|
|
3496
3590
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3497
3591
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3536,6 +3630,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3536
3630
|
oracleConfig: Record<string, {
|
|
3537
3631
|
gasPrice: string;
|
|
3538
3632
|
tokenExchangeRate: string;
|
|
3633
|
+
tokenDecimals?: number | undefined;
|
|
3539
3634
|
}>;
|
|
3540
3635
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3541
3636
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3576,6 +3671,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3576
3671
|
oracleConfig: Record<string, {
|
|
3577
3672
|
gasPrice: string;
|
|
3578
3673
|
tokenExchangeRate: string;
|
|
3674
|
+
tokenDecimals?: number | undefined;
|
|
3579
3675
|
}>;
|
|
3580
3676
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3581
3677
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3618,6 +3714,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3618
3714
|
oracleConfig: Record<string, {
|
|
3619
3715
|
gasPrice: string;
|
|
3620
3716
|
tokenExchangeRate: string;
|
|
3717
|
+
tokenDecimals?: number | undefined;
|
|
3621
3718
|
}>;
|
|
3622
3719
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3623
3720
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3662,6 +3759,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3662
3759
|
oracleConfig: Record<string, {
|
|
3663
3760
|
gasPrice: string;
|
|
3664
3761
|
tokenExchangeRate: string;
|
|
3762
|
+
tokenDecimals?: number | undefined;
|
|
3665
3763
|
}>;
|
|
3666
3764
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3667
3765
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3706,6 +3804,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3706
3804
|
oracleConfig: Record<string, {
|
|
3707
3805
|
gasPrice: string;
|
|
3708
3806
|
tokenExchangeRate: string;
|
|
3807
|
+
tokenDecimals?: number | undefined;
|
|
3709
3808
|
}>;
|
|
3710
3809
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3711
3810
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3746,6 +3845,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3746
3845
|
oracleConfig: Record<string, {
|
|
3747
3846
|
gasPrice: string;
|
|
3748
3847
|
tokenExchangeRate: string;
|
|
3848
|
+
tokenDecimals?: number | undefined;
|
|
3749
3849
|
}>;
|
|
3750
3850
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3751
3851
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3788,6 +3888,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3788
3888
|
oracleConfig: Record<string, {
|
|
3789
3889
|
gasPrice: string;
|
|
3790
3890
|
tokenExchangeRate: string;
|
|
3891
|
+
tokenDecimals?: number | undefined;
|
|
3791
3892
|
}>;
|
|
3792
3893
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3793
3894
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3828,6 +3929,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3828
3929
|
oracleConfig: Record<string, {
|
|
3829
3930
|
gasPrice: string;
|
|
3830
3931
|
tokenExchangeRate: string;
|
|
3932
|
+
tokenDecimals?: number | undefined;
|
|
3831
3933
|
}>;
|
|
3832
3934
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3833
3935
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3866,6 +3968,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3866
3968
|
oracleConfig: Record<string, {
|
|
3867
3969
|
gasPrice: string;
|
|
3868
3970
|
tokenExchangeRate: string;
|
|
3971
|
+
tokenDecimals?: number | undefined;
|
|
3869
3972
|
}>;
|
|
3870
3973
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3871
3974
|
}) | (string & {
|
|
@@ -3903,6 +4006,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3903
4006
|
oracleConfig: Record<string, {
|
|
3904
4007
|
gasPrice: string;
|
|
3905
4008
|
tokenExchangeRate: string;
|
|
4009
|
+
tokenDecimals?: number | undefined;
|
|
3906
4010
|
}>;
|
|
3907
4011
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3908
4012
|
} & string) | ({
|
|
@@ -3941,6 +4045,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3941
4045
|
oracleConfig: Record<string, {
|
|
3942
4046
|
gasPrice: string;
|
|
3943
4047
|
tokenExchangeRate: string;
|
|
4048
|
+
tokenDecimals?: number | undefined;
|
|
3944
4049
|
}>;
|
|
3945
4050
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3946
4051
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -3982,6 +4087,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3982
4087
|
oracleConfig: Record<string, {
|
|
3983
4088
|
gasPrice: string;
|
|
3984
4089
|
tokenExchangeRate: string;
|
|
4090
|
+
tokenDecimals?: number | undefined;
|
|
3985
4091
|
}>;
|
|
3986
4092
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3987
4093
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4026,6 +4132,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4026
4132
|
oracleConfig: Record<string, {
|
|
4027
4133
|
gasPrice: string;
|
|
4028
4134
|
tokenExchangeRate: string;
|
|
4135
|
+
tokenDecimals?: number | undefined;
|
|
4029
4136
|
}>;
|
|
4030
4137
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4031
4138
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4066,6 +4173,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4066
4173
|
oracleConfig: Record<string, {
|
|
4067
4174
|
gasPrice: string;
|
|
4068
4175
|
tokenExchangeRate: string;
|
|
4176
|
+
tokenDecimals?: number | undefined;
|
|
4069
4177
|
}>;
|
|
4070
4178
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4071
4179
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4108,6 +4216,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4108
4216
|
oracleConfig: Record<string, {
|
|
4109
4217
|
gasPrice: string;
|
|
4110
4218
|
tokenExchangeRate: string;
|
|
4219
|
+
tokenDecimals?: number | undefined;
|
|
4111
4220
|
}>;
|
|
4112
4221
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4113
4222
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4152,6 +4261,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4152
4261
|
oracleConfig: Record<string, {
|
|
4153
4262
|
gasPrice: string;
|
|
4154
4263
|
tokenExchangeRate: string;
|
|
4264
|
+
tokenDecimals?: number | undefined;
|
|
4155
4265
|
}>;
|
|
4156
4266
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4157
4267
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4196,6 +4306,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4196
4306
|
oracleConfig: Record<string, {
|
|
4197
4307
|
gasPrice: string;
|
|
4198
4308
|
tokenExchangeRate: string;
|
|
4309
|
+
tokenDecimals?: number | undefined;
|
|
4199
4310
|
}>;
|
|
4200
4311
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4201
4312
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4236,6 +4347,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4236
4347
|
oracleConfig: Record<string, {
|
|
4237
4348
|
gasPrice: string;
|
|
4238
4349
|
tokenExchangeRate: string;
|
|
4350
|
+
tokenDecimals?: number | undefined;
|
|
4239
4351
|
}>;
|
|
4240
4352
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4241
4353
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4278,6 +4390,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4278
4390
|
oracleConfig: Record<string, {
|
|
4279
4391
|
gasPrice: string;
|
|
4280
4392
|
tokenExchangeRate: string;
|
|
4393
|
+
tokenDecimals?: number | undefined;
|
|
4281
4394
|
}>;
|
|
4282
4395
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4283
4396
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4318,6 +4431,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4318
4431
|
oracleConfig: Record<string, {
|
|
4319
4432
|
gasPrice: string;
|
|
4320
4433
|
tokenExchangeRate: string;
|
|
4434
|
+
tokenDecimals?: number | undefined;
|
|
4321
4435
|
}>;
|
|
4322
4436
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4323
4437
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4356,6 +4470,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4356
4470
|
oracleConfig: Record<string, {
|
|
4357
4471
|
gasPrice: string;
|
|
4358
4472
|
tokenExchangeRate: string;
|
|
4473
|
+
tokenDecimals?: number | undefined;
|
|
4359
4474
|
}>;
|
|
4360
4475
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4361
4476
|
}) | (string & {
|
|
@@ -4393,6 +4508,7 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
4393
4508
|
oracleConfig: Record<string, {
|
|
4394
4509
|
gasPrice: string;
|
|
4395
4510
|
tokenExchangeRate: string;
|
|
4511
|
+
tokenDecimals?: number | undefined;
|
|
4396
4512
|
}>;
|
|
4397
4513
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4398
4514
|
} & string) | ({
|
|
@@ -4435,6 +4551,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4435
4551
|
oracleConfig: Record<string, {
|
|
4436
4552
|
gasPrice: string;
|
|
4437
4553
|
tokenExchangeRate: string;
|
|
4554
|
+
tokenDecimals?: number | undefined;
|
|
4438
4555
|
}>;
|
|
4439
4556
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4440
4557
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4472,6 +4589,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4472
4589
|
oracleConfig: Record<string, {
|
|
4473
4590
|
gasPrice: string;
|
|
4474
4591
|
tokenExchangeRate: string;
|
|
4592
|
+
tokenDecimals?: number | undefined;
|
|
4475
4593
|
}>;
|
|
4476
4594
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4477
4595
|
}) | (string & {
|
|
@@ -4507,6 +4625,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4507
4625
|
oracleConfig: Record<string, {
|
|
4508
4626
|
gasPrice: string;
|
|
4509
4627
|
tokenExchangeRate: string;
|
|
4628
|
+
tokenDecimals?: number | undefined;
|
|
4510
4629
|
}>;
|
|
4511
4630
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4512
4631
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4551,6 +4670,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4551
4670
|
oracleConfig: Record<string, {
|
|
4552
4671
|
gasPrice: string;
|
|
4553
4672
|
tokenExchangeRate: string;
|
|
4673
|
+
tokenDecimals?: number | undefined;
|
|
4554
4674
|
}>;
|
|
4555
4675
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4556
4676
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4591,6 +4711,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4591
4711
|
oracleConfig: Record<string, {
|
|
4592
4712
|
gasPrice: string;
|
|
4593
4713
|
tokenExchangeRate: string;
|
|
4714
|
+
tokenDecimals?: number | undefined;
|
|
4594
4715
|
}>;
|
|
4595
4716
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4596
4717
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4635,6 +4756,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4635
4756
|
oracleConfig: Record<string, {
|
|
4636
4757
|
gasPrice: string;
|
|
4637
4758
|
tokenExchangeRate: string;
|
|
4759
|
+
tokenDecimals?: number | undefined;
|
|
4638
4760
|
}>;
|
|
4639
4761
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4640
4762
|
} & string) | ({
|
|
@@ -4670,6 +4792,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4670
4792
|
oracleConfig: Record<string, {
|
|
4671
4793
|
gasPrice: string;
|
|
4672
4794
|
tokenExchangeRate: string;
|
|
4795
|
+
tokenDecimals?: number | undefined;
|
|
4673
4796
|
}>;
|
|
4674
4797
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4675
4798
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4714,6 +4837,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4714
4837
|
oracleConfig: Record<string, {
|
|
4715
4838
|
gasPrice: string;
|
|
4716
4839
|
tokenExchangeRate: string;
|
|
4840
|
+
tokenDecimals?: number | undefined;
|
|
4717
4841
|
}>;
|
|
4718
4842
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4719
4843
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4758,6 +4882,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4758
4882
|
oracleConfig: Record<string, {
|
|
4759
4883
|
gasPrice: string;
|
|
4760
4884
|
tokenExchangeRate: string;
|
|
4885
|
+
tokenDecimals?: number | undefined;
|
|
4761
4886
|
}>;
|
|
4762
4887
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4763
4888
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4798,6 +4923,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4798
4923
|
oracleConfig: Record<string, {
|
|
4799
4924
|
gasPrice: string;
|
|
4800
4925
|
tokenExchangeRate: string;
|
|
4926
|
+
tokenDecimals?: number | undefined;
|
|
4801
4927
|
}>;
|
|
4802
4928
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4803
4929
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4840,6 +4966,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4840
4966
|
oracleConfig: Record<string, {
|
|
4841
4967
|
gasPrice: string;
|
|
4842
4968
|
tokenExchangeRate: string;
|
|
4969
|
+
tokenDecimals?: number | undefined;
|
|
4843
4970
|
}>;
|
|
4844
4971
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4845
4972
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4880,6 +5007,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4880
5007
|
oracleConfig: Record<string, {
|
|
4881
5008
|
gasPrice: string;
|
|
4882
5009
|
tokenExchangeRate: string;
|
|
5010
|
+
tokenDecimals?: number | undefined;
|
|
4883
5011
|
}>;
|
|
4884
5012
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4885
5013
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4925,6 +5053,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4925
5053
|
oracleConfig: Record<string, {
|
|
4926
5054
|
gasPrice: string;
|
|
4927
5055
|
tokenExchangeRate: string;
|
|
5056
|
+
tokenDecimals?: number | undefined;
|
|
4928
5057
|
}>;
|
|
4929
5058
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4930
5059
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -4962,6 +5091,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4962
5091
|
oracleConfig: Record<string, {
|
|
4963
5092
|
gasPrice: string;
|
|
4964
5093
|
tokenExchangeRate: string;
|
|
5094
|
+
tokenDecimals?: number | undefined;
|
|
4965
5095
|
}>;
|
|
4966
5096
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4967
5097
|
}) | (string & {
|
|
@@ -4997,6 +5127,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4997
5127
|
oracleConfig: Record<string, {
|
|
4998
5128
|
gasPrice: string;
|
|
4999
5129
|
tokenExchangeRate: string;
|
|
5130
|
+
tokenDecimals?: number | undefined;
|
|
5000
5131
|
}>;
|
|
5001
5132
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5002
5133
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5041,6 +5172,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5041
5172
|
oracleConfig: Record<string, {
|
|
5042
5173
|
gasPrice: string;
|
|
5043
5174
|
tokenExchangeRate: string;
|
|
5175
|
+
tokenDecimals?: number | undefined;
|
|
5044
5176
|
}>;
|
|
5045
5177
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5046
5178
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5081,6 +5213,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5081
5213
|
oracleConfig: Record<string, {
|
|
5082
5214
|
gasPrice: string;
|
|
5083
5215
|
tokenExchangeRate: string;
|
|
5216
|
+
tokenDecimals?: number | undefined;
|
|
5084
5217
|
}>;
|
|
5085
5218
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5086
5219
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5125,6 +5258,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5125
5258
|
oracleConfig: Record<string, {
|
|
5126
5259
|
gasPrice: string;
|
|
5127
5260
|
tokenExchangeRate: string;
|
|
5261
|
+
tokenDecimals?: number | undefined;
|
|
5128
5262
|
}>;
|
|
5129
5263
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5130
5264
|
} & string) | ({
|
|
@@ -5160,6 +5294,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5160
5294
|
oracleConfig: Record<string, {
|
|
5161
5295
|
gasPrice: string;
|
|
5162
5296
|
tokenExchangeRate: string;
|
|
5297
|
+
tokenDecimals?: number | undefined;
|
|
5163
5298
|
}>;
|
|
5164
5299
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5165
5300
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5204,6 +5339,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5204
5339
|
oracleConfig: Record<string, {
|
|
5205
5340
|
gasPrice: string;
|
|
5206
5341
|
tokenExchangeRate: string;
|
|
5342
|
+
tokenDecimals?: number | undefined;
|
|
5207
5343
|
}>;
|
|
5208
5344
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5209
5345
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5248,6 +5384,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5248
5384
|
oracleConfig: Record<string, {
|
|
5249
5385
|
gasPrice: string;
|
|
5250
5386
|
tokenExchangeRate: string;
|
|
5387
|
+
tokenDecimals?: number | undefined;
|
|
5251
5388
|
}>;
|
|
5252
5389
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5253
5390
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5288,6 +5425,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5288
5425
|
oracleConfig: Record<string, {
|
|
5289
5426
|
gasPrice: string;
|
|
5290
5427
|
tokenExchangeRate: string;
|
|
5428
|
+
tokenDecimals?: number | undefined;
|
|
5291
5429
|
}>;
|
|
5292
5430
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5293
5431
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5330,6 +5468,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5330
5468
|
oracleConfig: Record<string, {
|
|
5331
5469
|
gasPrice: string;
|
|
5332
5470
|
tokenExchangeRate: string;
|
|
5471
|
+
tokenDecimals?: number | undefined;
|
|
5333
5472
|
}>;
|
|
5334
5473
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5335
5474
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5370,6 +5509,7 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
5370
5509
|
oracleConfig: Record<string, {
|
|
5371
5510
|
gasPrice: string;
|
|
5372
5511
|
tokenExchangeRate: string;
|
|
5512
|
+
tokenDecimals?: number | undefined;
|
|
5373
5513
|
}>;
|
|
5374
5514
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5375
5515
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5421,6 +5561,7 @@ export declare const createMerkleTreeConfig: (...args: any[]) => Promise<string
|
|
|
5421
5561
|
oracleConfig: Record<string, {
|
|
5422
5562
|
gasPrice: string;
|
|
5423
5563
|
tokenExchangeRate: string;
|
|
5564
|
+
tokenDecimals?: number | undefined;
|
|
5424
5565
|
}>;
|
|
5425
5566
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5426
5567
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5459,6 +5600,7 @@ export declare const createProtocolFeeConfig: (...args: any[]) => Promise<string
|
|
|
5459
5600
|
oracleConfig: Record<string, {
|
|
5460
5601
|
gasPrice: string;
|
|
5461
5602
|
tokenExchangeRate: string;
|
|
5603
|
+
tokenDecimals?: number | undefined;
|
|
5462
5604
|
}>;
|
|
5463
5605
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5464
5606
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5477,6 +5619,7 @@ export declare const createIGPConfig: (...args: any[]) => Promise<{
|
|
|
5477
5619
|
oracleConfig: Record<string, {
|
|
5478
5620
|
gasPrice: string;
|
|
5479
5621
|
tokenExchangeRate: string;
|
|
5622
|
+
tokenDecimals?: number | undefined;
|
|
5480
5623
|
}>;
|
|
5481
5624
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5482
5625
|
}>;
|
|
@@ -5509,6 +5652,7 @@ export declare const createAggregationConfig: (...args: any[]) => Promise<string
|
|
|
5509
5652
|
oracleConfig: Record<string, {
|
|
5510
5653
|
gasPrice: string;
|
|
5511
5654
|
tokenExchangeRate: string;
|
|
5655
|
+
tokenDecimals?: number | undefined;
|
|
5512
5656
|
}>;
|
|
5513
5657
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5514
5658
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|
|
@@ -5547,6 +5691,7 @@ export declare const createRoutingConfig: (...args: any[]) => Promise<string | {
|
|
|
5547
5691
|
oracleConfig: Record<string, {
|
|
5548
5692
|
gasPrice: string;
|
|
5549
5693
|
tokenExchangeRate: string;
|
|
5694
|
+
tokenDecimals?: number | undefined;
|
|
5550
5695
|
}>;
|
|
5551
5696
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5552
5697
|
} | import("@hyperlane-xyz/sdk").DomainRoutingHookConfig | import("@hyperlane-xyz/sdk").FallbackRoutingHookConfig | import("@hyperlane-xyz/sdk").AggregationHookConfig | {
|