@hyperlane-xyz/cli 4.1.0 → 4.2.0-beta1
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/README.md +4 -1
- package/dist/cli.js +2 -0
- package/dist/cli.js.map +1 -1
- package/dist/src/commands/options.d.ts +2 -0
- package/dist/src/commands/options.d.ts.map +1 -1
- package/dist/src/commands/options.js +14 -3
- package/dist/src/commands/options.js.map +1 -1
- package/dist/src/commands/registry.js +16 -9
- package/dist/src/commands/registry.js.map +1 -1
- package/dist/src/commands/signCommands.d.ts.map +1 -1
- package/dist/src/commands/signCommands.js +1 -1
- package/dist/src/commands/signCommands.js.map +1 -1
- package/dist/src/commands/status.d.ts +2 -0
- package/dist/src/commands/status.d.ts.map +1 -1
- package/dist/src/commands/status.js +6 -1
- package/dist/src/commands/status.js.map +1 -1
- package/dist/src/commands/submit.d.ts +11 -0
- package/dist/src/commands/submit.d.ts.map +1 -0
- package/dist/src/commands/submit.js +28 -0
- package/dist/src/commands/submit.js.map +1 -0
- package/dist/src/commands/warp.d.ts +5 -0
- package/dist/src/commands/warp.d.ts.map +1 -1
- package/dist/src/commands/warp.js +41 -3
- package/dist/src/commands/warp.js.map +1 -1
- package/dist/src/config/agent.d.ts +1 -1
- package/dist/src/config/agent.d.ts.map +1 -1
- package/dist/src/config/agent.js +59 -17
- package/dist/src/config/agent.js.map +1 -1
- package/dist/src/config/chain.d.ts.map +1 -1
- package/dist/src/config/chain.js +37 -2
- package/dist/src/config/chain.js.map +1 -1
- package/dist/src/config/hooks.d.ts +133 -133
- package/dist/src/config/prompts.d.ts +2 -0
- package/dist/src/config/prompts.d.ts.map +1 -0
- package/dist/src/config/prompts.js +9 -0
- package/dist/src/config/prompts.js.map +1 -0
- package/dist/src/config/submit.d.ts +7 -0
- package/dist/src/config/submit.d.ts.map +1 -0
- package/dist/src/config/submit.js +33 -0
- package/dist/src/config/submit.js.map +1 -0
- package/dist/src/config/warp.js +1 -1
- package/dist/src/config/warp.js.map +1 -1
- package/dist/src/context/context.d.ts +4 -3
- package/dist/src/context/context.d.ts.map +1 -1
- package/dist/src/context/context.js +51 -5
- package/dist/src/context/context.js.map +1 -1
- package/dist/src/context/types.d.ts +3 -1
- package/dist/src/context/types.d.ts.map +1 -1
- package/dist/src/deploy/core.d.ts.map +1 -1
- package/dist/src/deploy/core.js +11 -4
- package/dist/src/deploy/core.js.map +1 -1
- package/dist/src/deploy/warp.d.ts +10 -0
- package/dist/src/deploy/warp.d.ts.map +1 -1
- package/dist/src/deploy/warp.js +294 -45
- package/dist/src/deploy/warp.js.map +1 -1
- package/dist/src/send/message.d.ts.map +1 -1
- package/dist/src/send/message.js +3 -2
- package/dist/src/send/message.js.map +1 -1
- package/dist/src/send/transfer.d.ts.map +1 -1
- package/dist/src/send/transfer.js +12 -6
- package/dist/src/send/transfer.js.map +1 -1
- package/dist/src/status/message.d.ts +2 -1
- package/dist/src/status/message.d.ts.map +1 -1
- package/dist/src/status/message.js +35 -17
- package/dist/src/status/message.js.map +1 -1
- package/dist/src/submit/submit.d.ts +1 -1
- package/dist/src/submit/submit.d.ts.map +1 -1
- package/dist/src/submit/submit.js +16 -10
- package/dist/src/submit/submit.js.map +1 -1
- package/dist/src/submit/types.d.ts +5 -16
- package/dist/src/submit/types.d.ts.map +1 -1
- package/dist/src/utils/balances.js +1 -1
- package/dist/src/utils/balances.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/examples/submit/strategy/gnosis-ica-strategy.yaml +11 -0
- package/examples/submit/strategy/gnosis-strategy.yaml +5 -0
- package/examples/submit/strategy/impersonated-account-strategy.yaml +4 -0
- package/examples/submit/strategy/json-rpc-strategy.yaml +3 -0
- package/examples/submit/transactions/alfajores-transactions.json +8 -0
- package/examples/submit/transactions/avalanche-transactions.json +8 -0
- package/package.json +4 -4
|
@@ -13,16 +13,16 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
type: HookType.PROTOCOL_FEE;
|
|
15
15
|
owner: string;
|
|
16
|
-
protocolFee: string;
|
|
17
16
|
beneficiary: string;
|
|
18
17
|
maxProtocolFee: string;
|
|
18
|
+
protocolFee: string;
|
|
19
19
|
ownerOverrides?: Record<string, string> | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
type: HookType.PROTOCOL_FEE;
|
|
22
22
|
owner: string;
|
|
23
|
-
protocolFee: string;
|
|
24
23
|
beneficiary: string;
|
|
25
24
|
maxProtocolFee: string;
|
|
25
|
+
protocolFee: string;
|
|
26
26
|
ownerOverrides?: Record<string, string> | undefined;
|
|
27
27
|
}>, z.ZodObject<{
|
|
28
28
|
owner: z.ZodString;
|
|
@@ -113,16 +113,16 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
type: HookType.PROTOCOL_FEE;
|
|
115
115
|
owner: string;
|
|
116
|
-
protocolFee: string;
|
|
117
116
|
beneficiary: string;
|
|
118
117
|
maxProtocolFee: string;
|
|
118
|
+
protocolFee: string;
|
|
119
119
|
ownerOverrides?: Record<string, string> | undefined;
|
|
120
120
|
}, {
|
|
121
121
|
type: HookType.PROTOCOL_FEE;
|
|
122
122
|
owner: string;
|
|
123
|
-
protocolFee: string;
|
|
124
123
|
beneficiary: string;
|
|
125
124
|
maxProtocolFee: string;
|
|
125
|
+
protocolFee: string;
|
|
126
126
|
ownerOverrides?: Record<string, string> | undefined;
|
|
127
127
|
}>, z.ZodObject<{
|
|
128
128
|
owner: z.ZodString;
|
|
@@ -207,9 +207,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
207
207
|
default: string | {
|
|
208
208
|
type: HookType.PROTOCOL_FEE;
|
|
209
209
|
owner: string;
|
|
210
|
-
protocolFee: string;
|
|
211
210
|
beneficiary: string;
|
|
212
211
|
maxProtocolFee: string;
|
|
212
|
+
protocolFee: string;
|
|
213
213
|
ownerOverrides?: Record<string, string> | undefined;
|
|
214
214
|
} | {
|
|
215
215
|
type: HookType.PAUSABLE;
|
|
@@ -238,9 +238,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
238
238
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
239
239
|
type: HookType.PROTOCOL_FEE;
|
|
240
240
|
owner: string;
|
|
241
|
-
protocolFee: string;
|
|
242
241
|
beneficiary: string;
|
|
243
242
|
maxProtocolFee: string;
|
|
243
|
+
protocolFee: string;
|
|
244
244
|
ownerOverrides?: Record<string, string> | undefined;
|
|
245
245
|
}) | (string & {
|
|
246
246
|
type: HookType.PAUSABLE;
|
|
@@ -273,9 +273,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
273
273
|
domains: ChainMap<string | {
|
|
274
274
|
type: HookType.PROTOCOL_FEE;
|
|
275
275
|
owner: string;
|
|
276
|
-
protocolFee: string;
|
|
277
276
|
beneficiary: string;
|
|
278
277
|
maxProtocolFee: string;
|
|
278
|
+
protocolFee: string;
|
|
279
279
|
ownerOverrides?: Record<string, string> | undefined;
|
|
280
280
|
} | {
|
|
281
281
|
type: HookType.PAUSABLE;
|
|
@@ -311,9 +311,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
311
311
|
domains: ChainMap<string | {
|
|
312
312
|
type: HookType.PROTOCOL_FEE;
|
|
313
313
|
owner: string;
|
|
314
|
-
protocolFee: string;
|
|
315
314
|
beneficiary: string;
|
|
316
315
|
maxProtocolFee: string;
|
|
316
|
+
protocolFee: string;
|
|
317
317
|
ownerOverrides?: Record<string, string> | undefined;
|
|
318
318
|
} | {
|
|
319
319
|
type: HookType.PAUSABLE;
|
|
@@ -345,9 +345,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
345
345
|
fallback: string | {
|
|
346
346
|
type: HookType.PROTOCOL_FEE;
|
|
347
347
|
owner: string;
|
|
348
|
-
protocolFee: string;
|
|
349
348
|
beneficiary: string;
|
|
350
349
|
maxProtocolFee: string;
|
|
350
|
+
protocolFee: string;
|
|
351
351
|
ownerOverrides?: Record<string, string> | undefined;
|
|
352
352
|
} | {
|
|
353
353
|
type: HookType.PAUSABLE;
|
|
@@ -377,9 +377,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
377
377
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
378
378
|
type: HookType.PROTOCOL_FEE;
|
|
379
379
|
owner: string;
|
|
380
|
-
protocolFee: string;
|
|
381
380
|
beneficiary: string;
|
|
382
381
|
maxProtocolFee: string;
|
|
382
|
+
protocolFee: string;
|
|
383
383
|
ownerOverrides?: Record<string, string> | undefined;
|
|
384
384
|
} & string) | ({
|
|
385
385
|
type: HookType.PAUSABLE;
|
|
@@ -412,9 +412,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
412
412
|
domains: ChainMap<string | {
|
|
413
413
|
type: HookType.PROTOCOL_FEE;
|
|
414
414
|
owner: string;
|
|
415
|
-
protocolFee: string;
|
|
416
415
|
beneficiary: string;
|
|
417
416
|
maxProtocolFee: string;
|
|
417
|
+
protocolFee: string;
|
|
418
418
|
ownerOverrides?: Record<string, string> | undefined;
|
|
419
419
|
} | {
|
|
420
420
|
type: HookType.PAUSABLE;
|
|
@@ -450,9 +450,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
450
450
|
domains: ChainMap<string | {
|
|
451
451
|
type: HookType.PROTOCOL_FEE;
|
|
452
452
|
owner: string;
|
|
453
|
-
protocolFee: string;
|
|
454
453
|
beneficiary: string;
|
|
455
454
|
maxProtocolFee: string;
|
|
455
|
+
protocolFee: string;
|
|
456
456
|
ownerOverrides?: Record<string, string> | undefined;
|
|
457
457
|
} | {
|
|
458
458
|
type: HookType.PAUSABLE;
|
|
@@ -488,9 +488,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
488
488
|
domains: ChainMap<string | {
|
|
489
489
|
type: HookType.PROTOCOL_FEE;
|
|
490
490
|
owner: string;
|
|
491
|
-
protocolFee: string;
|
|
492
491
|
beneficiary: string;
|
|
493
492
|
maxProtocolFee: string;
|
|
493
|
+
protocolFee: string;
|
|
494
494
|
ownerOverrides?: Record<string, string> | undefined;
|
|
495
495
|
} | {
|
|
496
496
|
type: HookType.PAUSABLE;
|
|
@@ -522,9 +522,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
522
522
|
fallback: string | {
|
|
523
523
|
type: HookType.PROTOCOL_FEE;
|
|
524
524
|
owner: string;
|
|
525
|
-
protocolFee: string;
|
|
526
525
|
beneficiary: string;
|
|
527
526
|
maxProtocolFee: string;
|
|
527
|
+
protocolFee: string;
|
|
528
528
|
ownerOverrides?: Record<string, string> | undefined;
|
|
529
529
|
} | {
|
|
530
530
|
type: HookType.PAUSABLE;
|
|
@@ -558,9 +558,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
558
558
|
domains: ChainMap<string | {
|
|
559
559
|
type: HookType.PROTOCOL_FEE;
|
|
560
560
|
owner: string;
|
|
561
|
-
protocolFee: string;
|
|
562
561
|
beneficiary: string;
|
|
563
562
|
maxProtocolFee: string;
|
|
563
|
+
protocolFee: string;
|
|
564
564
|
ownerOverrides?: Record<string, string> | undefined;
|
|
565
565
|
} | {
|
|
566
566
|
type: HookType.PAUSABLE;
|
|
@@ -592,9 +592,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
592
592
|
fallback: string | {
|
|
593
593
|
type: HookType.PROTOCOL_FEE;
|
|
594
594
|
owner: string;
|
|
595
|
-
protocolFee: string;
|
|
596
595
|
beneficiary: string;
|
|
597
596
|
maxProtocolFee: string;
|
|
597
|
+
protocolFee: string;
|
|
598
598
|
ownerOverrides?: Record<string, string> | undefined;
|
|
599
599
|
} | {
|
|
600
600
|
type: HookType.PAUSABLE;
|
|
@@ -625,9 +625,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
625
625
|
required: string | {
|
|
626
626
|
type: HookType.PROTOCOL_FEE;
|
|
627
627
|
owner: string;
|
|
628
|
-
protocolFee: string;
|
|
629
628
|
beneficiary: string;
|
|
630
629
|
maxProtocolFee: string;
|
|
630
|
+
protocolFee: string;
|
|
631
631
|
ownerOverrides?: Record<string, string> | undefined;
|
|
632
632
|
} | {
|
|
633
633
|
type: HookType.PAUSABLE;
|
|
@@ -656,9 +656,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
656
656
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
657
657
|
type: HookType.PROTOCOL_FEE;
|
|
658
658
|
owner: string;
|
|
659
|
-
protocolFee: string;
|
|
660
659
|
beneficiary: string;
|
|
661
660
|
maxProtocolFee: string;
|
|
661
|
+
protocolFee: string;
|
|
662
662
|
ownerOverrides?: Record<string, string> | undefined;
|
|
663
663
|
}) | (string & {
|
|
664
664
|
type: HookType.PAUSABLE;
|
|
@@ -691,9 +691,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
691
691
|
domains: ChainMap<string | {
|
|
692
692
|
type: HookType.PROTOCOL_FEE;
|
|
693
693
|
owner: string;
|
|
694
|
-
protocolFee: string;
|
|
695
694
|
beneficiary: string;
|
|
696
695
|
maxProtocolFee: string;
|
|
696
|
+
protocolFee: string;
|
|
697
697
|
ownerOverrides?: Record<string, string> | undefined;
|
|
698
698
|
} | {
|
|
699
699
|
type: HookType.PAUSABLE;
|
|
@@ -729,9 +729,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
729
729
|
domains: ChainMap<string | {
|
|
730
730
|
type: HookType.PROTOCOL_FEE;
|
|
731
731
|
owner: string;
|
|
732
|
-
protocolFee: string;
|
|
733
732
|
beneficiary: string;
|
|
734
733
|
maxProtocolFee: string;
|
|
734
|
+
protocolFee: string;
|
|
735
735
|
ownerOverrides?: Record<string, string> | undefined;
|
|
736
736
|
} | {
|
|
737
737
|
type: HookType.PAUSABLE;
|
|
@@ -763,9 +763,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
763
763
|
fallback: string | {
|
|
764
764
|
type: HookType.PROTOCOL_FEE;
|
|
765
765
|
owner: string;
|
|
766
|
-
protocolFee: string;
|
|
767
766
|
beneficiary: string;
|
|
768
767
|
maxProtocolFee: string;
|
|
768
|
+
protocolFee: string;
|
|
769
769
|
ownerOverrides?: Record<string, string> | undefined;
|
|
770
770
|
} | {
|
|
771
771
|
type: HookType.PAUSABLE;
|
|
@@ -795,9 +795,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
795
795
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
796
796
|
type: HookType.PROTOCOL_FEE;
|
|
797
797
|
owner: string;
|
|
798
|
-
protocolFee: string;
|
|
799
798
|
beneficiary: string;
|
|
800
799
|
maxProtocolFee: string;
|
|
800
|
+
protocolFee: string;
|
|
801
801
|
ownerOverrides?: Record<string, string> | undefined;
|
|
802
802
|
} & string) | ({
|
|
803
803
|
type: HookType.PAUSABLE;
|
|
@@ -830,9 +830,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
830
830
|
domains: ChainMap<string | {
|
|
831
831
|
type: HookType.PROTOCOL_FEE;
|
|
832
832
|
owner: string;
|
|
833
|
-
protocolFee: string;
|
|
834
833
|
beneficiary: string;
|
|
835
834
|
maxProtocolFee: string;
|
|
835
|
+
protocolFee: string;
|
|
836
836
|
ownerOverrides?: Record<string, string> | undefined;
|
|
837
837
|
} | {
|
|
838
838
|
type: HookType.PAUSABLE;
|
|
@@ -868,9 +868,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
868
868
|
domains: ChainMap<string | {
|
|
869
869
|
type: HookType.PROTOCOL_FEE;
|
|
870
870
|
owner: string;
|
|
871
|
-
protocolFee: string;
|
|
872
871
|
beneficiary: string;
|
|
873
872
|
maxProtocolFee: string;
|
|
873
|
+
protocolFee: string;
|
|
874
874
|
ownerOverrides?: Record<string, string> | undefined;
|
|
875
875
|
} | {
|
|
876
876
|
type: HookType.PAUSABLE;
|
|
@@ -906,9 +906,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
906
906
|
domains: ChainMap<string | {
|
|
907
907
|
type: HookType.PROTOCOL_FEE;
|
|
908
908
|
owner: string;
|
|
909
|
-
protocolFee: string;
|
|
910
909
|
beneficiary: string;
|
|
911
910
|
maxProtocolFee: string;
|
|
911
|
+
protocolFee: string;
|
|
912
912
|
ownerOverrides?: Record<string, string> | undefined;
|
|
913
913
|
} | {
|
|
914
914
|
type: HookType.PAUSABLE;
|
|
@@ -940,9 +940,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
940
940
|
fallback: string | {
|
|
941
941
|
type: HookType.PROTOCOL_FEE;
|
|
942
942
|
owner: string;
|
|
943
|
-
protocolFee: string;
|
|
944
943
|
beneficiary: string;
|
|
945
944
|
maxProtocolFee: string;
|
|
945
|
+
protocolFee: string;
|
|
946
946
|
ownerOverrides?: Record<string, string> | undefined;
|
|
947
947
|
} | {
|
|
948
948
|
type: HookType.PAUSABLE;
|
|
@@ -976,9 +976,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
976
976
|
domains: ChainMap<string | {
|
|
977
977
|
type: HookType.PROTOCOL_FEE;
|
|
978
978
|
owner: string;
|
|
979
|
-
protocolFee: string;
|
|
980
979
|
beneficiary: string;
|
|
981
980
|
maxProtocolFee: string;
|
|
981
|
+
protocolFee: string;
|
|
982
982
|
ownerOverrides?: Record<string, string> | undefined;
|
|
983
983
|
} | {
|
|
984
984
|
type: HookType.PAUSABLE;
|
|
@@ -1010,9 +1010,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1010
1010
|
fallback: string | {
|
|
1011
1011
|
type: HookType.PROTOCOL_FEE;
|
|
1012
1012
|
owner: string;
|
|
1013
|
-
protocolFee: string;
|
|
1014
1013
|
beneficiary: string;
|
|
1015
1014
|
maxProtocolFee: string;
|
|
1015
|
+
protocolFee: string;
|
|
1016
1016
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1017
1017
|
} | {
|
|
1018
1018
|
type: HookType.PAUSABLE;
|
|
@@ -1044,9 +1044,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1044
1044
|
default: string | {
|
|
1045
1045
|
type: HookType.PROTOCOL_FEE;
|
|
1046
1046
|
owner: string;
|
|
1047
|
-
protocolFee: string;
|
|
1048
1047
|
beneficiary: string;
|
|
1049
1048
|
maxProtocolFee: string;
|
|
1049
|
+
protocolFee: string;
|
|
1050
1050
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1051
1051
|
} | {
|
|
1052
1052
|
type: HookType.PAUSABLE;
|
|
@@ -1079,9 +1079,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1079
1079
|
domains: ChainMap<string | {
|
|
1080
1080
|
type: HookType.PROTOCOL_FEE;
|
|
1081
1081
|
owner: string;
|
|
1082
|
-
protocolFee: string;
|
|
1083
1082
|
beneficiary: string;
|
|
1084
1083
|
maxProtocolFee: string;
|
|
1084
|
+
protocolFee: string;
|
|
1085
1085
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1086
1086
|
} | {
|
|
1087
1087
|
type: HookType.PAUSABLE;
|
|
@@ -1117,9 +1117,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1117
1117
|
domains: ChainMap<string | {
|
|
1118
1118
|
type: HookType.PROTOCOL_FEE;
|
|
1119
1119
|
owner: string;
|
|
1120
|
-
protocolFee: string;
|
|
1121
1120
|
beneficiary: string;
|
|
1122
1121
|
maxProtocolFee: string;
|
|
1122
|
+
protocolFee: string;
|
|
1123
1123
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1124
1124
|
} | {
|
|
1125
1125
|
type: HookType.PAUSABLE;
|
|
@@ -1151,9 +1151,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1151
1151
|
fallback: string | {
|
|
1152
1152
|
type: HookType.PROTOCOL_FEE;
|
|
1153
1153
|
owner: string;
|
|
1154
|
-
protocolFee: string;
|
|
1155
1154
|
beneficiary: string;
|
|
1156
1155
|
maxProtocolFee: string;
|
|
1156
|
+
protocolFee: string;
|
|
1157
1157
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1158
1158
|
} | {
|
|
1159
1159
|
type: HookType.PAUSABLE;
|
|
@@ -1187,9 +1187,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1187
1187
|
domains: ChainMap<string | {
|
|
1188
1188
|
type: HookType.PROTOCOL_FEE;
|
|
1189
1189
|
owner: string;
|
|
1190
|
-
protocolFee: string;
|
|
1191
1190
|
beneficiary: string;
|
|
1192
1191
|
maxProtocolFee: string;
|
|
1192
|
+
protocolFee: string;
|
|
1193
1193
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1194
1194
|
} | {
|
|
1195
1195
|
type: HookType.PAUSABLE;
|
|
@@ -1225,9 +1225,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1225
1225
|
domains: ChainMap<string | {
|
|
1226
1226
|
type: HookType.PROTOCOL_FEE;
|
|
1227
1227
|
owner: string;
|
|
1228
|
-
protocolFee: string;
|
|
1229
1228
|
beneficiary: string;
|
|
1230
1229
|
maxProtocolFee: string;
|
|
1230
|
+
protocolFee: string;
|
|
1231
1231
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1232
1232
|
} | {
|
|
1233
1233
|
type: HookType.PAUSABLE;
|
|
@@ -1263,9 +1263,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1263
1263
|
domains: ChainMap<string | {
|
|
1264
1264
|
type: HookType.PROTOCOL_FEE;
|
|
1265
1265
|
owner: string;
|
|
1266
|
-
protocolFee: string;
|
|
1267
1266
|
beneficiary: string;
|
|
1268
1267
|
maxProtocolFee: string;
|
|
1268
|
+
protocolFee: string;
|
|
1269
1269
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1270
1270
|
} | {
|
|
1271
1271
|
type: HookType.PAUSABLE;
|
|
@@ -1297,9 +1297,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1297
1297
|
fallback: string | {
|
|
1298
1298
|
type: HookType.PROTOCOL_FEE;
|
|
1299
1299
|
owner: string;
|
|
1300
|
-
protocolFee: string;
|
|
1301
1300
|
beneficiary: string;
|
|
1302
1301
|
maxProtocolFee: string;
|
|
1302
|
+
protocolFee: string;
|
|
1303
1303
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1304
1304
|
} | {
|
|
1305
1305
|
type: HookType.PAUSABLE;
|
|
@@ -1333,9 +1333,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1333
1333
|
domains: ChainMap<string | {
|
|
1334
1334
|
type: HookType.PROTOCOL_FEE;
|
|
1335
1335
|
owner: string;
|
|
1336
|
-
protocolFee: string;
|
|
1337
1336
|
beneficiary: string;
|
|
1338
1337
|
maxProtocolFee: string;
|
|
1338
|
+
protocolFee: string;
|
|
1339
1339
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1340
1340
|
} | {
|
|
1341
1341
|
type: HookType.PAUSABLE;
|
|
@@ -1367,9 +1367,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1367
1367
|
fallback: string | {
|
|
1368
1368
|
type: HookType.PROTOCOL_FEE;
|
|
1369
1369
|
owner: string;
|
|
1370
|
-
protocolFee: string;
|
|
1371
1370
|
beneficiary: string;
|
|
1372
1371
|
maxProtocolFee: string;
|
|
1372
|
+
protocolFee: string;
|
|
1373
1373
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1374
1374
|
} | {
|
|
1375
1375
|
type: HookType.PAUSABLE;
|
|
@@ -1399,9 +1399,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1399
1399
|
}) | (import("@hyperlane-xyz/sdk").AggregationHookConfig & string) | (string & {
|
|
1400
1400
|
type: HookType.PROTOCOL_FEE;
|
|
1401
1401
|
owner: string;
|
|
1402
|
-
protocolFee: string;
|
|
1403
1402
|
beneficiary: string;
|
|
1404
1403
|
maxProtocolFee: string;
|
|
1404
|
+
protocolFee: string;
|
|
1405
1405
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1406
1406
|
}) | (string & {
|
|
1407
1407
|
type: HookType.PAUSABLE;
|
|
@@ -1430,9 +1430,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1430
1430
|
}) | ({
|
|
1431
1431
|
type: HookType.PROTOCOL_FEE;
|
|
1432
1432
|
owner: string;
|
|
1433
|
-
protocolFee: string;
|
|
1434
1433
|
beneficiary: string;
|
|
1435
1434
|
maxProtocolFee: string;
|
|
1435
|
+
protocolFee: string;
|
|
1436
1436
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1437
1437
|
} & string) | ({
|
|
1438
1438
|
type: HookType.PAUSABLE;
|
|
@@ -1462,9 +1462,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1462
1462
|
required: string | {
|
|
1463
1463
|
type: HookType.PROTOCOL_FEE;
|
|
1464
1464
|
owner: string;
|
|
1465
|
-
protocolFee: string;
|
|
1466
1465
|
beneficiary: string;
|
|
1467
1466
|
maxProtocolFee: string;
|
|
1467
|
+
protocolFee: string;
|
|
1468
1468
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1469
1469
|
} | {
|
|
1470
1470
|
type: HookType.PAUSABLE;
|
|
@@ -1497,9 +1497,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1497
1497
|
domains: ChainMap<string | {
|
|
1498
1498
|
type: HookType.PROTOCOL_FEE;
|
|
1499
1499
|
owner: string;
|
|
1500
|
-
protocolFee: string;
|
|
1501
1500
|
beneficiary: string;
|
|
1502
1501
|
maxProtocolFee: string;
|
|
1502
|
+
protocolFee: string;
|
|
1503
1503
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1504
1504
|
} | {
|
|
1505
1505
|
type: HookType.PAUSABLE;
|
|
@@ -1535,9 +1535,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1535
1535
|
domains: ChainMap<string | {
|
|
1536
1536
|
type: HookType.PROTOCOL_FEE;
|
|
1537
1537
|
owner: string;
|
|
1538
|
-
protocolFee: string;
|
|
1539
1538
|
beneficiary: string;
|
|
1540
1539
|
maxProtocolFee: string;
|
|
1540
|
+
protocolFee: string;
|
|
1541
1541
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1542
1542
|
} | {
|
|
1543
1543
|
type: HookType.PAUSABLE;
|
|
@@ -1569,9 +1569,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1569
1569
|
fallback: string | {
|
|
1570
1570
|
type: HookType.PROTOCOL_FEE;
|
|
1571
1571
|
owner: string;
|
|
1572
|
-
protocolFee: string;
|
|
1573
1572
|
beneficiary: string;
|
|
1574
1573
|
maxProtocolFee: string;
|
|
1574
|
+
protocolFee: string;
|
|
1575
1575
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1576
1576
|
} | {
|
|
1577
1577
|
type: HookType.PAUSABLE;
|
|
@@ -1605,9 +1605,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1605
1605
|
domains: ChainMap<string | {
|
|
1606
1606
|
type: HookType.PROTOCOL_FEE;
|
|
1607
1607
|
owner: string;
|
|
1608
|
-
protocolFee: string;
|
|
1609
1608
|
beneficiary: string;
|
|
1610
1609
|
maxProtocolFee: string;
|
|
1610
|
+
protocolFee: string;
|
|
1611
1611
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1612
1612
|
} | {
|
|
1613
1613
|
type: HookType.PAUSABLE;
|
|
@@ -1643,9 +1643,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1643
1643
|
domains: ChainMap<string | {
|
|
1644
1644
|
type: HookType.PROTOCOL_FEE;
|
|
1645
1645
|
owner: string;
|
|
1646
|
-
protocolFee: string;
|
|
1647
1646
|
beneficiary: string;
|
|
1648
1647
|
maxProtocolFee: string;
|
|
1648
|
+
protocolFee: string;
|
|
1649
1649
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1650
1650
|
} | {
|
|
1651
1651
|
type: HookType.PAUSABLE;
|
|
@@ -1681,9 +1681,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1681
1681
|
domains: ChainMap<string | {
|
|
1682
1682
|
type: HookType.PROTOCOL_FEE;
|
|
1683
1683
|
owner: string;
|
|
1684
|
-
protocolFee: string;
|
|
1685
1684
|
beneficiary: string;
|
|
1686
1685
|
maxProtocolFee: string;
|
|
1686
|
+
protocolFee: string;
|
|
1687
1687
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1688
1688
|
} | {
|
|
1689
1689
|
type: HookType.PAUSABLE;
|
|
@@ -1715,9 +1715,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1715
1715
|
fallback: string | {
|
|
1716
1716
|
type: HookType.PROTOCOL_FEE;
|
|
1717
1717
|
owner: string;
|
|
1718
|
-
protocolFee: string;
|
|
1719
1718
|
beneficiary: string;
|
|
1720
1719
|
maxProtocolFee: string;
|
|
1720
|
+
protocolFee: string;
|
|
1721
1721
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1722
1722
|
} | {
|
|
1723
1723
|
type: HookType.PAUSABLE;
|
|
@@ -1751,9 +1751,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1751
1751
|
domains: ChainMap<string | {
|
|
1752
1752
|
type: HookType.PROTOCOL_FEE;
|
|
1753
1753
|
owner: string;
|
|
1754
|
-
protocolFee: string;
|
|
1755
1754
|
beneficiary: string;
|
|
1756
1755
|
maxProtocolFee: string;
|
|
1756
|
+
protocolFee: string;
|
|
1757
1757
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1758
1758
|
} | {
|
|
1759
1759
|
type: HookType.PAUSABLE;
|
|
@@ -1785,9 +1785,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1785
1785
|
fallback: string | {
|
|
1786
1786
|
type: HookType.PROTOCOL_FEE;
|
|
1787
1787
|
owner: string;
|
|
1788
|
-
protocolFee: string;
|
|
1789
1788
|
beneficiary: string;
|
|
1790
1789
|
maxProtocolFee: string;
|
|
1790
|
+
protocolFee: string;
|
|
1791
1791
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1792
1792
|
} | {
|
|
1793
1793
|
type: HookType.PAUSABLE;
|
|
@@ -1817,9 +1817,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1817
1817
|
}) | (import("@hyperlane-xyz/sdk").AggregationHookConfig & string) | (string & {
|
|
1818
1818
|
type: HookType.PROTOCOL_FEE;
|
|
1819
1819
|
owner: string;
|
|
1820
|
-
protocolFee: string;
|
|
1821
1820
|
beneficiary: string;
|
|
1822
1821
|
maxProtocolFee: string;
|
|
1822
|
+
protocolFee: string;
|
|
1823
1823
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1824
1824
|
}) | (string & {
|
|
1825
1825
|
type: HookType.PAUSABLE;
|
|
@@ -1848,9 +1848,9 @@ declare const HooksConfigSchema: z.ZodObject<{
|
|
|
1848
1848
|
}) | ({
|
|
1849
1849
|
type: HookType.PROTOCOL_FEE;
|
|
1850
1850
|
owner: string;
|
|
1851
|
-
protocolFee: string;
|
|
1852
1851
|
beneficiary: string;
|
|
1853
1852
|
maxProtocolFee: string;
|
|
1853
|
+
protocolFee: string;
|
|
1854
1854
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1855
1855
|
} & string) | ({
|
|
1856
1856
|
type: HookType.PAUSABLE;
|
|
@@ -1890,16 +1890,16 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1890
1890
|
}, "strip", z.ZodTypeAny, {
|
|
1891
1891
|
type: HookType.PROTOCOL_FEE;
|
|
1892
1892
|
owner: string;
|
|
1893
|
-
protocolFee: string;
|
|
1894
1893
|
beneficiary: string;
|
|
1895
1894
|
maxProtocolFee: string;
|
|
1895
|
+
protocolFee: string;
|
|
1896
1896
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1897
1897
|
}, {
|
|
1898
1898
|
type: HookType.PROTOCOL_FEE;
|
|
1899
1899
|
owner: string;
|
|
1900
|
-
protocolFee: string;
|
|
1901
1900
|
beneficiary: string;
|
|
1902
1901
|
maxProtocolFee: string;
|
|
1902
|
+
protocolFee: string;
|
|
1903
1903
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1904
1904
|
}>, z.ZodObject<{
|
|
1905
1905
|
owner: z.ZodString;
|
|
@@ -1990,16 +1990,16 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1990
1990
|
}, "strip", z.ZodTypeAny, {
|
|
1991
1991
|
type: HookType.PROTOCOL_FEE;
|
|
1992
1992
|
owner: string;
|
|
1993
|
-
protocolFee: string;
|
|
1994
1993
|
beneficiary: string;
|
|
1995
1994
|
maxProtocolFee: string;
|
|
1995
|
+
protocolFee: string;
|
|
1996
1996
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1997
1997
|
}, {
|
|
1998
1998
|
type: HookType.PROTOCOL_FEE;
|
|
1999
1999
|
owner: string;
|
|
2000
|
-
protocolFee: string;
|
|
2001
2000
|
beneficiary: string;
|
|
2002
2001
|
maxProtocolFee: string;
|
|
2002
|
+
protocolFee: string;
|
|
2003
2003
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2004
2004
|
}>, z.ZodObject<{
|
|
2005
2005
|
owner: z.ZodString;
|
|
@@ -2084,9 +2084,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2084
2084
|
default: string | {
|
|
2085
2085
|
type: HookType.PROTOCOL_FEE;
|
|
2086
2086
|
owner: string;
|
|
2087
|
-
protocolFee: string;
|
|
2088
2087
|
beneficiary: string;
|
|
2089
2088
|
maxProtocolFee: string;
|
|
2089
|
+
protocolFee: string;
|
|
2090
2090
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2091
2091
|
} | {
|
|
2092
2092
|
type: HookType.PAUSABLE;
|
|
@@ -2115,9 +2115,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2115
2115
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
2116
2116
|
type: HookType.PROTOCOL_FEE;
|
|
2117
2117
|
owner: string;
|
|
2118
|
-
protocolFee: string;
|
|
2119
2118
|
beneficiary: string;
|
|
2120
2119
|
maxProtocolFee: string;
|
|
2120
|
+
protocolFee: string;
|
|
2121
2121
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2122
2122
|
}) | (string & {
|
|
2123
2123
|
type: HookType.PAUSABLE;
|
|
@@ -2150,9 +2150,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2150
2150
|
domains: ChainMap<string | {
|
|
2151
2151
|
type: HookType.PROTOCOL_FEE;
|
|
2152
2152
|
owner: string;
|
|
2153
|
-
protocolFee: string;
|
|
2154
2153
|
beneficiary: string;
|
|
2155
2154
|
maxProtocolFee: string;
|
|
2155
|
+
protocolFee: string;
|
|
2156
2156
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2157
2157
|
} | {
|
|
2158
2158
|
type: HookType.PAUSABLE;
|
|
@@ -2188,9 +2188,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2188
2188
|
domains: ChainMap<string | {
|
|
2189
2189
|
type: HookType.PROTOCOL_FEE;
|
|
2190
2190
|
owner: string;
|
|
2191
|
-
protocolFee: string;
|
|
2192
2191
|
beneficiary: string;
|
|
2193
2192
|
maxProtocolFee: string;
|
|
2193
|
+
protocolFee: string;
|
|
2194
2194
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2195
2195
|
} | {
|
|
2196
2196
|
type: HookType.PAUSABLE;
|
|
@@ -2222,9 +2222,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2222
2222
|
fallback: string | {
|
|
2223
2223
|
type: HookType.PROTOCOL_FEE;
|
|
2224
2224
|
owner: string;
|
|
2225
|
-
protocolFee: string;
|
|
2226
2225
|
beneficiary: string;
|
|
2227
2226
|
maxProtocolFee: string;
|
|
2227
|
+
protocolFee: string;
|
|
2228
2228
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2229
2229
|
} | {
|
|
2230
2230
|
type: HookType.PAUSABLE;
|
|
@@ -2254,9 +2254,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2254
2254
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
2255
2255
|
type: HookType.PROTOCOL_FEE;
|
|
2256
2256
|
owner: string;
|
|
2257
|
-
protocolFee: string;
|
|
2258
2257
|
beneficiary: string;
|
|
2259
2258
|
maxProtocolFee: string;
|
|
2259
|
+
protocolFee: string;
|
|
2260
2260
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2261
2261
|
} & string) | ({
|
|
2262
2262
|
type: HookType.PAUSABLE;
|
|
@@ -2289,9 +2289,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2289
2289
|
domains: ChainMap<string | {
|
|
2290
2290
|
type: HookType.PROTOCOL_FEE;
|
|
2291
2291
|
owner: string;
|
|
2292
|
-
protocolFee: string;
|
|
2293
2292
|
beneficiary: string;
|
|
2294
2293
|
maxProtocolFee: string;
|
|
2294
|
+
protocolFee: string;
|
|
2295
2295
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2296
2296
|
} | {
|
|
2297
2297
|
type: HookType.PAUSABLE;
|
|
@@ -2327,9 +2327,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2327
2327
|
domains: ChainMap<string | {
|
|
2328
2328
|
type: HookType.PROTOCOL_FEE;
|
|
2329
2329
|
owner: string;
|
|
2330
|
-
protocolFee: string;
|
|
2331
2330
|
beneficiary: string;
|
|
2332
2331
|
maxProtocolFee: string;
|
|
2332
|
+
protocolFee: string;
|
|
2333
2333
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2334
2334
|
} | {
|
|
2335
2335
|
type: HookType.PAUSABLE;
|
|
@@ -2365,9 +2365,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2365
2365
|
domains: ChainMap<string | {
|
|
2366
2366
|
type: HookType.PROTOCOL_FEE;
|
|
2367
2367
|
owner: string;
|
|
2368
|
-
protocolFee: string;
|
|
2369
2368
|
beneficiary: string;
|
|
2370
2369
|
maxProtocolFee: string;
|
|
2370
|
+
protocolFee: string;
|
|
2371
2371
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2372
2372
|
} | {
|
|
2373
2373
|
type: HookType.PAUSABLE;
|
|
@@ -2399,9 +2399,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2399
2399
|
fallback: string | {
|
|
2400
2400
|
type: HookType.PROTOCOL_FEE;
|
|
2401
2401
|
owner: string;
|
|
2402
|
-
protocolFee: string;
|
|
2403
2402
|
beneficiary: string;
|
|
2404
2403
|
maxProtocolFee: string;
|
|
2404
|
+
protocolFee: string;
|
|
2405
2405
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2406
2406
|
} | {
|
|
2407
2407
|
type: HookType.PAUSABLE;
|
|
@@ -2435,9 +2435,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2435
2435
|
domains: ChainMap<string | {
|
|
2436
2436
|
type: HookType.PROTOCOL_FEE;
|
|
2437
2437
|
owner: string;
|
|
2438
|
-
protocolFee: string;
|
|
2439
2438
|
beneficiary: string;
|
|
2440
2439
|
maxProtocolFee: string;
|
|
2440
|
+
protocolFee: string;
|
|
2441
2441
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2442
2442
|
} | {
|
|
2443
2443
|
type: HookType.PAUSABLE;
|
|
@@ -2469,9 +2469,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2469
2469
|
fallback: string | {
|
|
2470
2470
|
type: HookType.PROTOCOL_FEE;
|
|
2471
2471
|
owner: string;
|
|
2472
|
-
protocolFee: string;
|
|
2473
2472
|
beneficiary: string;
|
|
2474
2473
|
maxProtocolFee: string;
|
|
2474
|
+
protocolFee: string;
|
|
2475
2475
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2476
2476
|
} | {
|
|
2477
2477
|
type: HookType.PAUSABLE;
|
|
@@ -2502,9 +2502,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2502
2502
|
required: string | {
|
|
2503
2503
|
type: HookType.PROTOCOL_FEE;
|
|
2504
2504
|
owner: string;
|
|
2505
|
-
protocolFee: string;
|
|
2506
2505
|
beneficiary: string;
|
|
2507
2506
|
maxProtocolFee: string;
|
|
2507
|
+
protocolFee: string;
|
|
2508
2508
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2509
2509
|
} | {
|
|
2510
2510
|
type: HookType.PAUSABLE;
|
|
@@ -2533,9 +2533,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2533
2533
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
2534
2534
|
type: HookType.PROTOCOL_FEE;
|
|
2535
2535
|
owner: string;
|
|
2536
|
-
protocolFee: string;
|
|
2537
2536
|
beneficiary: string;
|
|
2538
2537
|
maxProtocolFee: string;
|
|
2538
|
+
protocolFee: string;
|
|
2539
2539
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2540
2540
|
}) | (string & {
|
|
2541
2541
|
type: HookType.PAUSABLE;
|
|
@@ -2568,9 +2568,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2568
2568
|
domains: ChainMap<string | {
|
|
2569
2569
|
type: HookType.PROTOCOL_FEE;
|
|
2570
2570
|
owner: string;
|
|
2571
|
-
protocolFee: string;
|
|
2572
2571
|
beneficiary: string;
|
|
2573
2572
|
maxProtocolFee: string;
|
|
2573
|
+
protocolFee: string;
|
|
2574
2574
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2575
2575
|
} | {
|
|
2576
2576
|
type: HookType.PAUSABLE;
|
|
@@ -2606,9 +2606,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2606
2606
|
domains: ChainMap<string | {
|
|
2607
2607
|
type: HookType.PROTOCOL_FEE;
|
|
2608
2608
|
owner: string;
|
|
2609
|
-
protocolFee: string;
|
|
2610
2609
|
beneficiary: string;
|
|
2611
2610
|
maxProtocolFee: string;
|
|
2611
|
+
protocolFee: string;
|
|
2612
2612
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2613
2613
|
} | {
|
|
2614
2614
|
type: HookType.PAUSABLE;
|
|
@@ -2640,9 +2640,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2640
2640
|
fallback: string | {
|
|
2641
2641
|
type: HookType.PROTOCOL_FEE;
|
|
2642
2642
|
owner: string;
|
|
2643
|
-
protocolFee: string;
|
|
2644
2643
|
beneficiary: string;
|
|
2645
2644
|
maxProtocolFee: string;
|
|
2645
|
+
protocolFee: string;
|
|
2646
2646
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2647
2647
|
} | {
|
|
2648
2648
|
type: HookType.PAUSABLE;
|
|
@@ -2672,9 +2672,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2672
2672
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
2673
2673
|
type: HookType.PROTOCOL_FEE;
|
|
2674
2674
|
owner: string;
|
|
2675
|
-
protocolFee: string;
|
|
2676
2675
|
beneficiary: string;
|
|
2677
2676
|
maxProtocolFee: string;
|
|
2677
|
+
protocolFee: string;
|
|
2678
2678
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2679
2679
|
} & string) | ({
|
|
2680
2680
|
type: HookType.PAUSABLE;
|
|
@@ -2707,9 +2707,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2707
2707
|
domains: ChainMap<string | {
|
|
2708
2708
|
type: HookType.PROTOCOL_FEE;
|
|
2709
2709
|
owner: string;
|
|
2710
|
-
protocolFee: string;
|
|
2711
2710
|
beneficiary: string;
|
|
2712
2711
|
maxProtocolFee: string;
|
|
2712
|
+
protocolFee: string;
|
|
2713
2713
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2714
2714
|
} | {
|
|
2715
2715
|
type: HookType.PAUSABLE;
|
|
@@ -2745,9 +2745,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2745
2745
|
domains: ChainMap<string | {
|
|
2746
2746
|
type: HookType.PROTOCOL_FEE;
|
|
2747
2747
|
owner: string;
|
|
2748
|
-
protocolFee: string;
|
|
2749
2748
|
beneficiary: string;
|
|
2750
2749
|
maxProtocolFee: string;
|
|
2750
|
+
protocolFee: string;
|
|
2751
2751
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2752
2752
|
} | {
|
|
2753
2753
|
type: HookType.PAUSABLE;
|
|
@@ -2783,9 +2783,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2783
2783
|
domains: ChainMap<string | {
|
|
2784
2784
|
type: HookType.PROTOCOL_FEE;
|
|
2785
2785
|
owner: string;
|
|
2786
|
-
protocolFee: string;
|
|
2787
2786
|
beneficiary: string;
|
|
2788
2787
|
maxProtocolFee: string;
|
|
2788
|
+
protocolFee: string;
|
|
2789
2789
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2790
2790
|
} | {
|
|
2791
2791
|
type: HookType.PAUSABLE;
|
|
@@ -2817,9 +2817,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2817
2817
|
fallback: string | {
|
|
2818
2818
|
type: HookType.PROTOCOL_FEE;
|
|
2819
2819
|
owner: string;
|
|
2820
|
-
protocolFee: string;
|
|
2821
2820
|
beneficiary: string;
|
|
2822
2821
|
maxProtocolFee: string;
|
|
2822
|
+
protocolFee: string;
|
|
2823
2823
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2824
2824
|
} | {
|
|
2825
2825
|
type: HookType.PAUSABLE;
|
|
@@ -2853,9 +2853,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2853
2853
|
domains: ChainMap<string | {
|
|
2854
2854
|
type: HookType.PROTOCOL_FEE;
|
|
2855
2855
|
owner: string;
|
|
2856
|
-
protocolFee: string;
|
|
2857
2856
|
beneficiary: string;
|
|
2858
2857
|
maxProtocolFee: string;
|
|
2858
|
+
protocolFee: string;
|
|
2859
2859
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2860
2860
|
} | {
|
|
2861
2861
|
type: HookType.PAUSABLE;
|
|
@@ -2887,9 +2887,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2887
2887
|
fallback: string | {
|
|
2888
2888
|
type: HookType.PROTOCOL_FEE;
|
|
2889
2889
|
owner: string;
|
|
2890
|
-
protocolFee: string;
|
|
2891
2890
|
beneficiary: string;
|
|
2892
2891
|
maxProtocolFee: string;
|
|
2892
|
+
protocolFee: string;
|
|
2893
2893
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2894
2894
|
} | {
|
|
2895
2895
|
type: HookType.PAUSABLE;
|
|
@@ -2921,9 +2921,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2921
2921
|
default: string | {
|
|
2922
2922
|
type: HookType.PROTOCOL_FEE;
|
|
2923
2923
|
owner: string;
|
|
2924
|
-
protocolFee: string;
|
|
2925
2924
|
beneficiary: string;
|
|
2926
2925
|
maxProtocolFee: string;
|
|
2926
|
+
protocolFee: string;
|
|
2927
2927
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2928
2928
|
} | {
|
|
2929
2929
|
type: HookType.PAUSABLE;
|
|
@@ -2956,9 +2956,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2956
2956
|
domains: ChainMap<string | {
|
|
2957
2957
|
type: HookType.PROTOCOL_FEE;
|
|
2958
2958
|
owner: string;
|
|
2959
|
-
protocolFee: string;
|
|
2960
2959
|
beneficiary: string;
|
|
2961
2960
|
maxProtocolFee: string;
|
|
2961
|
+
protocolFee: string;
|
|
2962
2962
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2963
2963
|
} | {
|
|
2964
2964
|
type: HookType.PAUSABLE;
|
|
@@ -2994,9 +2994,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
2994
2994
|
domains: ChainMap<string | {
|
|
2995
2995
|
type: HookType.PROTOCOL_FEE;
|
|
2996
2996
|
owner: string;
|
|
2997
|
-
protocolFee: string;
|
|
2998
2997
|
beneficiary: string;
|
|
2999
2998
|
maxProtocolFee: string;
|
|
2999
|
+
protocolFee: string;
|
|
3000
3000
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3001
3001
|
} | {
|
|
3002
3002
|
type: HookType.PAUSABLE;
|
|
@@ -3028,9 +3028,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3028
3028
|
fallback: string | {
|
|
3029
3029
|
type: HookType.PROTOCOL_FEE;
|
|
3030
3030
|
owner: string;
|
|
3031
|
-
protocolFee: string;
|
|
3032
3031
|
beneficiary: string;
|
|
3033
3032
|
maxProtocolFee: string;
|
|
3033
|
+
protocolFee: string;
|
|
3034
3034
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3035
3035
|
} | {
|
|
3036
3036
|
type: HookType.PAUSABLE;
|
|
@@ -3064,9 +3064,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3064
3064
|
domains: ChainMap<string | {
|
|
3065
3065
|
type: HookType.PROTOCOL_FEE;
|
|
3066
3066
|
owner: string;
|
|
3067
|
-
protocolFee: string;
|
|
3068
3067
|
beneficiary: string;
|
|
3069
3068
|
maxProtocolFee: string;
|
|
3069
|
+
protocolFee: string;
|
|
3070
3070
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3071
3071
|
} | {
|
|
3072
3072
|
type: HookType.PAUSABLE;
|
|
@@ -3102,9 +3102,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3102
3102
|
domains: ChainMap<string | {
|
|
3103
3103
|
type: HookType.PROTOCOL_FEE;
|
|
3104
3104
|
owner: string;
|
|
3105
|
-
protocolFee: string;
|
|
3106
3105
|
beneficiary: string;
|
|
3107
3106
|
maxProtocolFee: string;
|
|
3107
|
+
protocolFee: string;
|
|
3108
3108
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3109
3109
|
} | {
|
|
3110
3110
|
type: HookType.PAUSABLE;
|
|
@@ -3140,9 +3140,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3140
3140
|
domains: ChainMap<string | {
|
|
3141
3141
|
type: HookType.PROTOCOL_FEE;
|
|
3142
3142
|
owner: string;
|
|
3143
|
-
protocolFee: string;
|
|
3144
3143
|
beneficiary: string;
|
|
3145
3144
|
maxProtocolFee: string;
|
|
3145
|
+
protocolFee: string;
|
|
3146
3146
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3147
3147
|
} | {
|
|
3148
3148
|
type: HookType.PAUSABLE;
|
|
@@ -3174,9 +3174,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3174
3174
|
fallback: string | {
|
|
3175
3175
|
type: HookType.PROTOCOL_FEE;
|
|
3176
3176
|
owner: string;
|
|
3177
|
-
protocolFee: string;
|
|
3178
3177
|
beneficiary: string;
|
|
3179
3178
|
maxProtocolFee: string;
|
|
3179
|
+
protocolFee: string;
|
|
3180
3180
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3181
3181
|
} | {
|
|
3182
3182
|
type: HookType.PAUSABLE;
|
|
@@ -3210,9 +3210,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3210
3210
|
domains: ChainMap<string | {
|
|
3211
3211
|
type: HookType.PROTOCOL_FEE;
|
|
3212
3212
|
owner: string;
|
|
3213
|
-
protocolFee: string;
|
|
3214
3213
|
beneficiary: string;
|
|
3215
3214
|
maxProtocolFee: string;
|
|
3215
|
+
protocolFee: string;
|
|
3216
3216
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3217
3217
|
} | {
|
|
3218
3218
|
type: HookType.PAUSABLE;
|
|
@@ -3244,9 +3244,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3244
3244
|
fallback: string | {
|
|
3245
3245
|
type: HookType.PROTOCOL_FEE;
|
|
3246
3246
|
owner: string;
|
|
3247
|
-
protocolFee: string;
|
|
3248
3247
|
beneficiary: string;
|
|
3249
3248
|
maxProtocolFee: string;
|
|
3249
|
+
protocolFee: string;
|
|
3250
3250
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3251
3251
|
} | {
|
|
3252
3252
|
type: HookType.PAUSABLE;
|
|
@@ -3276,9 +3276,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3276
3276
|
}) | (import("@hyperlane-xyz/sdk").AggregationHookConfig & string) | (string & {
|
|
3277
3277
|
type: HookType.PROTOCOL_FEE;
|
|
3278
3278
|
owner: string;
|
|
3279
|
-
protocolFee: string;
|
|
3280
3279
|
beneficiary: string;
|
|
3281
3280
|
maxProtocolFee: string;
|
|
3281
|
+
protocolFee: string;
|
|
3282
3282
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3283
3283
|
}) | (string & {
|
|
3284
3284
|
type: HookType.PAUSABLE;
|
|
@@ -3307,9 +3307,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3307
3307
|
}) | ({
|
|
3308
3308
|
type: HookType.PROTOCOL_FEE;
|
|
3309
3309
|
owner: string;
|
|
3310
|
-
protocolFee: string;
|
|
3311
3310
|
beneficiary: string;
|
|
3312
3311
|
maxProtocolFee: string;
|
|
3312
|
+
protocolFee: string;
|
|
3313
3313
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3314
3314
|
} & string) | ({
|
|
3315
3315
|
type: HookType.PAUSABLE;
|
|
@@ -3339,9 +3339,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3339
3339
|
required: string | {
|
|
3340
3340
|
type: HookType.PROTOCOL_FEE;
|
|
3341
3341
|
owner: string;
|
|
3342
|
-
protocolFee: string;
|
|
3343
3342
|
beneficiary: string;
|
|
3344
3343
|
maxProtocolFee: string;
|
|
3344
|
+
protocolFee: string;
|
|
3345
3345
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3346
3346
|
} | {
|
|
3347
3347
|
type: HookType.PAUSABLE;
|
|
@@ -3374,9 +3374,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3374
3374
|
domains: ChainMap<string | {
|
|
3375
3375
|
type: HookType.PROTOCOL_FEE;
|
|
3376
3376
|
owner: string;
|
|
3377
|
-
protocolFee: string;
|
|
3378
3377
|
beneficiary: string;
|
|
3379
3378
|
maxProtocolFee: string;
|
|
3379
|
+
protocolFee: string;
|
|
3380
3380
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3381
3381
|
} | {
|
|
3382
3382
|
type: HookType.PAUSABLE;
|
|
@@ -3412,9 +3412,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3412
3412
|
domains: ChainMap<string | {
|
|
3413
3413
|
type: HookType.PROTOCOL_FEE;
|
|
3414
3414
|
owner: string;
|
|
3415
|
-
protocolFee: string;
|
|
3416
3415
|
beneficiary: string;
|
|
3417
3416
|
maxProtocolFee: string;
|
|
3417
|
+
protocolFee: string;
|
|
3418
3418
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3419
3419
|
} | {
|
|
3420
3420
|
type: HookType.PAUSABLE;
|
|
@@ -3446,9 +3446,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3446
3446
|
fallback: string | {
|
|
3447
3447
|
type: HookType.PROTOCOL_FEE;
|
|
3448
3448
|
owner: string;
|
|
3449
|
-
protocolFee: string;
|
|
3450
3449
|
beneficiary: string;
|
|
3451
3450
|
maxProtocolFee: string;
|
|
3451
|
+
protocolFee: string;
|
|
3452
3452
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3453
3453
|
} | {
|
|
3454
3454
|
type: HookType.PAUSABLE;
|
|
@@ -3482,9 +3482,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3482
3482
|
domains: ChainMap<string | {
|
|
3483
3483
|
type: HookType.PROTOCOL_FEE;
|
|
3484
3484
|
owner: string;
|
|
3485
|
-
protocolFee: string;
|
|
3486
3485
|
beneficiary: string;
|
|
3487
3486
|
maxProtocolFee: string;
|
|
3487
|
+
protocolFee: string;
|
|
3488
3488
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3489
3489
|
} | {
|
|
3490
3490
|
type: HookType.PAUSABLE;
|
|
@@ -3520,9 +3520,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3520
3520
|
domains: ChainMap<string | {
|
|
3521
3521
|
type: HookType.PROTOCOL_FEE;
|
|
3522
3522
|
owner: string;
|
|
3523
|
-
protocolFee: string;
|
|
3524
3523
|
beneficiary: string;
|
|
3525
3524
|
maxProtocolFee: string;
|
|
3525
|
+
protocolFee: string;
|
|
3526
3526
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3527
3527
|
} | {
|
|
3528
3528
|
type: HookType.PAUSABLE;
|
|
@@ -3558,9 +3558,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3558
3558
|
domains: ChainMap<string | {
|
|
3559
3559
|
type: HookType.PROTOCOL_FEE;
|
|
3560
3560
|
owner: string;
|
|
3561
|
-
protocolFee: string;
|
|
3562
3561
|
beneficiary: string;
|
|
3563
3562
|
maxProtocolFee: string;
|
|
3563
|
+
protocolFee: string;
|
|
3564
3564
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3565
3565
|
} | {
|
|
3566
3566
|
type: HookType.PAUSABLE;
|
|
@@ -3592,9 +3592,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3592
3592
|
fallback: string | {
|
|
3593
3593
|
type: HookType.PROTOCOL_FEE;
|
|
3594
3594
|
owner: string;
|
|
3595
|
-
protocolFee: string;
|
|
3596
3595
|
beneficiary: string;
|
|
3597
3596
|
maxProtocolFee: string;
|
|
3597
|
+
protocolFee: string;
|
|
3598
3598
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3599
3599
|
} | {
|
|
3600
3600
|
type: HookType.PAUSABLE;
|
|
@@ -3628,9 +3628,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3628
3628
|
domains: ChainMap<string | {
|
|
3629
3629
|
type: HookType.PROTOCOL_FEE;
|
|
3630
3630
|
owner: string;
|
|
3631
|
-
protocolFee: string;
|
|
3632
3631
|
beneficiary: string;
|
|
3633
3632
|
maxProtocolFee: string;
|
|
3633
|
+
protocolFee: string;
|
|
3634
3634
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3635
3635
|
} | {
|
|
3636
3636
|
type: HookType.PAUSABLE;
|
|
@@ -3662,9 +3662,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3662
3662
|
fallback: string | {
|
|
3663
3663
|
type: HookType.PROTOCOL_FEE;
|
|
3664
3664
|
owner: string;
|
|
3665
|
-
protocolFee: string;
|
|
3666
3665
|
beneficiary: string;
|
|
3667
3666
|
maxProtocolFee: string;
|
|
3667
|
+
protocolFee: string;
|
|
3668
3668
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3669
3669
|
} | {
|
|
3670
3670
|
type: HookType.PAUSABLE;
|
|
@@ -3694,9 +3694,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3694
3694
|
}) | (import("@hyperlane-xyz/sdk").AggregationHookConfig & string) | (string & {
|
|
3695
3695
|
type: HookType.PROTOCOL_FEE;
|
|
3696
3696
|
owner: string;
|
|
3697
|
-
protocolFee: string;
|
|
3698
3697
|
beneficiary: string;
|
|
3699
3698
|
maxProtocolFee: string;
|
|
3699
|
+
protocolFee: string;
|
|
3700
3700
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3701
3701
|
}) | (string & {
|
|
3702
3702
|
type: HookType.PAUSABLE;
|
|
@@ -3725,9 +3725,9 @@ declare const HooksConfigMapSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
3725
3725
|
}) | ({
|
|
3726
3726
|
type: HookType.PROTOCOL_FEE;
|
|
3727
3727
|
owner: string;
|
|
3728
|
-
protocolFee: string;
|
|
3729
3728
|
beneficiary: string;
|
|
3730
3729
|
maxProtocolFee: string;
|
|
3730
|
+
protocolFee: string;
|
|
3731
3731
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3732
3732
|
} & string) | ({
|
|
3733
3733
|
type: HookType.PAUSABLE;
|
|
@@ -3761,9 +3761,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3761
3761
|
default: string | {
|
|
3762
3762
|
type: HookType.PROTOCOL_FEE;
|
|
3763
3763
|
owner: string;
|
|
3764
|
-
protocolFee: string;
|
|
3765
3764
|
beneficiary: string;
|
|
3766
3765
|
maxProtocolFee: string;
|
|
3766
|
+
protocolFee: string;
|
|
3767
3767
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3768
3768
|
} | {
|
|
3769
3769
|
type: HookType.PAUSABLE;
|
|
@@ -3792,9 +3792,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3792
3792
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
3793
3793
|
type: HookType.PROTOCOL_FEE;
|
|
3794
3794
|
owner: string;
|
|
3795
|
-
protocolFee: string;
|
|
3796
3795
|
beneficiary: string;
|
|
3797
3796
|
maxProtocolFee: string;
|
|
3797
|
+
protocolFee: string;
|
|
3798
3798
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3799
3799
|
}) | (string & {
|
|
3800
3800
|
type: HookType.PAUSABLE;
|
|
@@ -3827,9 +3827,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3827
3827
|
domains: ChainMap<string | {
|
|
3828
3828
|
type: HookType.PROTOCOL_FEE;
|
|
3829
3829
|
owner: string;
|
|
3830
|
-
protocolFee: string;
|
|
3831
3830
|
beneficiary: string;
|
|
3832
3831
|
maxProtocolFee: string;
|
|
3832
|
+
protocolFee: string;
|
|
3833
3833
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3834
3834
|
} | {
|
|
3835
3835
|
type: HookType.PAUSABLE;
|
|
@@ -3865,9 +3865,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3865
3865
|
domains: ChainMap<string | {
|
|
3866
3866
|
type: HookType.PROTOCOL_FEE;
|
|
3867
3867
|
owner: string;
|
|
3868
|
-
protocolFee: string;
|
|
3869
3868
|
beneficiary: string;
|
|
3870
3869
|
maxProtocolFee: string;
|
|
3870
|
+
protocolFee: string;
|
|
3871
3871
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3872
3872
|
} | {
|
|
3873
3873
|
type: HookType.PAUSABLE;
|
|
@@ -3899,9 +3899,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3899
3899
|
fallback: string | {
|
|
3900
3900
|
type: HookType.PROTOCOL_FEE;
|
|
3901
3901
|
owner: string;
|
|
3902
|
-
protocolFee: string;
|
|
3903
3902
|
beneficiary: string;
|
|
3904
3903
|
maxProtocolFee: string;
|
|
3904
|
+
protocolFee: string;
|
|
3905
3905
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3906
3906
|
} | {
|
|
3907
3907
|
type: HookType.PAUSABLE;
|
|
@@ -3931,9 +3931,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3931
3931
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
3932
3932
|
type: HookType.PROTOCOL_FEE;
|
|
3933
3933
|
owner: string;
|
|
3934
|
-
protocolFee: string;
|
|
3935
3934
|
beneficiary: string;
|
|
3936
3935
|
maxProtocolFee: string;
|
|
3936
|
+
protocolFee: string;
|
|
3937
3937
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3938
3938
|
} & string) | ({
|
|
3939
3939
|
type: HookType.PAUSABLE;
|
|
@@ -3966,9 +3966,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
3966
3966
|
domains: ChainMap<string | {
|
|
3967
3967
|
type: HookType.PROTOCOL_FEE;
|
|
3968
3968
|
owner: string;
|
|
3969
|
-
protocolFee: string;
|
|
3970
3969
|
beneficiary: string;
|
|
3971
3970
|
maxProtocolFee: string;
|
|
3971
|
+
protocolFee: string;
|
|
3972
3972
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3973
3973
|
} | {
|
|
3974
3974
|
type: HookType.PAUSABLE;
|
|
@@ -4004,9 +4004,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4004
4004
|
domains: ChainMap<string | {
|
|
4005
4005
|
type: HookType.PROTOCOL_FEE;
|
|
4006
4006
|
owner: string;
|
|
4007
|
-
protocolFee: string;
|
|
4008
4007
|
beneficiary: string;
|
|
4009
4008
|
maxProtocolFee: string;
|
|
4009
|
+
protocolFee: string;
|
|
4010
4010
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4011
4011
|
} | {
|
|
4012
4012
|
type: HookType.PAUSABLE;
|
|
@@ -4042,9 +4042,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4042
4042
|
domains: ChainMap<string | {
|
|
4043
4043
|
type: HookType.PROTOCOL_FEE;
|
|
4044
4044
|
owner: string;
|
|
4045
|
-
protocolFee: string;
|
|
4046
4045
|
beneficiary: string;
|
|
4047
4046
|
maxProtocolFee: string;
|
|
4047
|
+
protocolFee: string;
|
|
4048
4048
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4049
4049
|
} | {
|
|
4050
4050
|
type: HookType.PAUSABLE;
|
|
@@ -4076,9 +4076,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4076
4076
|
fallback: string | {
|
|
4077
4077
|
type: HookType.PROTOCOL_FEE;
|
|
4078
4078
|
owner: string;
|
|
4079
|
-
protocolFee: string;
|
|
4080
4079
|
beneficiary: string;
|
|
4081
4080
|
maxProtocolFee: string;
|
|
4081
|
+
protocolFee: string;
|
|
4082
4082
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4083
4083
|
} | {
|
|
4084
4084
|
type: HookType.PAUSABLE;
|
|
@@ -4112,9 +4112,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4112
4112
|
domains: ChainMap<string | {
|
|
4113
4113
|
type: HookType.PROTOCOL_FEE;
|
|
4114
4114
|
owner: string;
|
|
4115
|
-
protocolFee: string;
|
|
4116
4115
|
beneficiary: string;
|
|
4117
4116
|
maxProtocolFee: string;
|
|
4117
|
+
protocolFee: string;
|
|
4118
4118
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4119
4119
|
} | {
|
|
4120
4120
|
type: HookType.PAUSABLE;
|
|
@@ -4146,9 +4146,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4146
4146
|
fallback: string | {
|
|
4147
4147
|
type: HookType.PROTOCOL_FEE;
|
|
4148
4148
|
owner: string;
|
|
4149
|
-
protocolFee: string;
|
|
4150
4149
|
beneficiary: string;
|
|
4151
4150
|
maxProtocolFee: string;
|
|
4151
|
+
protocolFee: string;
|
|
4152
4152
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4153
4153
|
} | {
|
|
4154
4154
|
type: HookType.PAUSABLE;
|
|
@@ -4179,9 +4179,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4179
4179
|
required: string | {
|
|
4180
4180
|
type: HookType.PROTOCOL_FEE;
|
|
4181
4181
|
owner: string;
|
|
4182
|
-
protocolFee: string;
|
|
4183
4182
|
beneficiary: string;
|
|
4184
4183
|
maxProtocolFee: string;
|
|
4184
|
+
protocolFee: string;
|
|
4185
4185
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4186
4186
|
} | {
|
|
4187
4187
|
type: HookType.PAUSABLE;
|
|
@@ -4210,9 +4210,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4210
4210
|
} | import("@hyperlane-xyz/sdk").AggregationHookConfig | (string & {
|
|
4211
4211
|
type: HookType.PROTOCOL_FEE;
|
|
4212
4212
|
owner: string;
|
|
4213
|
-
protocolFee: string;
|
|
4214
4213
|
beneficiary: string;
|
|
4215
4214
|
maxProtocolFee: string;
|
|
4215
|
+
protocolFee: string;
|
|
4216
4216
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4217
4217
|
}) | (string & {
|
|
4218
4218
|
type: HookType.PAUSABLE;
|
|
@@ -4245,9 +4245,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4245
4245
|
domains: ChainMap<string | {
|
|
4246
4246
|
type: HookType.PROTOCOL_FEE;
|
|
4247
4247
|
owner: string;
|
|
4248
|
-
protocolFee: string;
|
|
4249
4248
|
beneficiary: string;
|
|
4250
4249
|
maxProtocolFee: string;
|
|
4250
|
+
protocolFee: string;
|
|
4251
4251
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4252
4252
|
} | {
|
|
4253
4253
|
type: HookType.PAUSABLE;
|
|
@@ -4283,9 +4283,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4283
4283
|
domains: ChainMap<string | {
|
|
4284
4284
|
type: HookType.PROTOCOL_FEE;
|
|
4285
4285
|
owner: string;
|
|
4286
|
-
protocolFee: string;
|
|
4287
4286
|
beneficiary: string;
|
|
4288
4287
|
maxProtocolFee: string;
|
|
4288
|
+
protocolFee: string;
|
|
4289
4289
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4290
4290
|
} | {
|
|
4291
4291
|
type: HookType.PAUSABLE;
|
|
@@ -4317,9 +4317,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4317
4317
|
fallback: string | {
|
|
4318
4318
|
type: HookType.PROTOCOL_FEE;
|
|
4319
4319
|
owner: string;
|
|
4320
|
-
protocolFee: string;
|
|
4321
4320
|
beneficiary: string;
|
|
4322
4321
|
maxProtocolFee: string;
|
|
4322
|
+
protocolFee: string;
|
|
4323
4323
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4324
4324
|
} | {
|
|
4325
4325
|
type: HookType.PAUSABLE;
|
|
@@ -4349,9 +4349,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4349
4349
|
}) | (string & import("@hyperlane-xyz/sdk").AggregationHookConfig) | ({
|
|
4350
4350
|
type: HookType.PROTOCOL_FEE;
|
|
4351
4351
|
owner: string;
|
|
4352
|
-
protocolFee: string;
|
|
4353
4352
|
beneficiary: string;
|
|
4354
4353
|
maxProtocolFee: string;
|
|
4354
|
+
protocolFee: string;
|
|
4355
4355
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4356
4356
|
} & string) | ({
|
|
4357
4357
|
type: HookType.PAUSABLE;
|
|
@@ -4384,9 +4384,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4384
4384
|
domains: ChainMap<string | {
|
|
4385
4385
|
type: HookType.PROTOCOL_FEE;
|
|
4386
4386
|
owner: string;
|
|
4387
|
-
protocolFee: string;
|
|
4388
4387
|
beneficiary: string;
|
|
4389
4388
|
maxProtocolFee: string;
|
|
4389
|
+
protocolFee: string;
|
|
4390
4390
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4391
4391
|
} | {
|
|
4392
4392
|
type: HookType.PAUSABLE;
|
|
@@ -4422,9 +4422,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4422
4422
|
domains: ChainMap<string | {
|
|
4423
4423
|
type: HookType.PROTOCOL_FEE;
|
|
4424
4424
|
owner: string;
|
|
4425
|
-
protocolFee: string;
|
|
4426
4425
|
beneficiary: string;
|
|
4427
4426
|
maxProtocolFee: string;
|
|
4427
|
+
protocolFee: string;
|
|
4428
4428
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4429
4429
|
} | {
|
|
4430
4430
|
type: HookType.PAUSABLE;
|
|
@@ -4460,9 +4460,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4460
4460
|
domains: ChainMap<string | {
|
|
4461
4461
|
type: HookType.PROTOCOL_FEE;
|
|
4462
4462
|
owner: string;
|
|
4463
|
-
protocolFee: string;
|
|
4464
4463
|
beneficiary: string;
|
|
4465
4464
|
maxProtocolFee: string;
|
|
4465
|
+
protocolFee: string;
|
|
4466
4466
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4467
4467
|
} | {
|
|
4468
4468
|
type: HookType.PAUSABLE;
|
|
@@ -4494,9 +4494,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4494
4494
|
fallback: string | {
|
|
4495
4495
|
type: HookType.PROTOCOL_FEE;
|
|
4496
4496
|
owner: string;
|
|
4497
|
-
protocolFee: string;
|
|
4498
4497
|
beneficiary: string;
|
|
4499
4498
|
maxProtocolFee: string;
|
|
4499
|
+
protocolFee: string;
|
|
4500
4500
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4501
4501
|
} | {
|
|
4502
4502
|
type: HookType.PAUSABLE;
|
|
@@ -4530,9 +4530,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4530
4530
|
domains: ChainMap<string | {
|
|
4531
4531
|
type: HookType.PROTOCOL_FEE;
|
|
4532
4532
|
owner: string;
|
|
4533
|
-
protocolFee: string;
|
|
4534
4533
|
beneficiary: string;
|
|
4535
4534
|
maxProtocolFee: string;
|
|
4535
|
+
protocolFee: string;
|
|
4536
4536
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4537
4537
|
} | {
|
|
4538
4538
|
type: HookType.PAUSABLE;
|
|
@@ -4564,9 +4564,9 @@ export declare function readHooksConfigMap(filePath: string): ChainMap<{
|
|
|
4564
4564
|
fallback: string | {
|
|
4565
4565
|
type: HookType.PROTOCOL_FEE;
|
|
4566
4566
|
owner: string;
|
|
4567
|
-
protocolFee: string;
|
|
4568
4567
|
beneficiary: string;
|
|
4569
4568
|
maxProtocolFee: string;
|
|
4569
|
+
protocolFee: string;
|
|
4570
4570
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4571
4571
|
} | {
|
|
4572
4572
|
type: HookType.PAUSABLE;
|
|
@@ -4603,9 +4603,9 @@ export declare function createHookConfig({ context, selectMessage, advanced, }:
|
|
|
4603
4603
|
export declare const createMerkleTreeConfig: (...args: any[]) => Promise<string | {
|
|
4604
4604
|
type: HookType.PROTOCOL_FEE;
|
|
4605
4605
|
owner: string;
|
|
4606
|
-
protocolFee: string;
|
|
4607
4606
|
beneficiary: string;
|
|
4608
4607
|
maxProtocolFee: string;
|
|
4608
|
+
protocolFee: string;
|
|
4609
4609
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4610
4610
|
} | {
|
|
4611
4611
|
type: HookType.PAUSABLE;
|
|
@@ -4635,9 +4635,9 @@ export declare const createMerkleTreeConfig: (...args: any[]) => Promise<string
|
|
|
4635
4635
|
export declare const createProtocolFeeConfig: (...args: any[]) => Promise<string | {
|
|
4636
4636
|
type: HookType.PROTOCOL_FEE;
|
|
4637
4637
|
owner: string;
|
|
4638
|
-
protocolFee: string;
|
|
4639
4638
|
beneficiary: string;
|
|
4640
4639
|
maxProtocolFee: string;
|
|
4640
|
+
protocolFee: string;
|
|
4641
4641
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4642
4642
|
} | {
|
|
4643
4643
|
type: HookType.PAUSABLE;
|
|
@@ -4667,9 +4667,9 @@ export declare const createProtocolFeeConfig: (...args: any[]) => Promise<string
|
|
|
4667
4667
|
export declare const createIGPConfig: (...args: any[]) => Promise<string | {
|
|
4668
4668
|
type: HookType.PROTOCOL_FEE;
|
|
4669
4669
|
owner: string;
|
|
4670
|
-
protocolFee: string;
|
|
4671
4670
|
beneficiary: string;
|
|
4672
4671
|
maxProtocolFee: string;
|
|
4672
|
+
protocolFee: string;
|
|
4673
4673
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4674
4674
|
} | {
|
|
4675
4675
|
type: HookType.PAUSABLE;
|
|
@@ -4699,9 +4699,9 @@ export declare const createIGPConfig: (...args: any[]) => Promise<string | {
|
|
|
4699
4699
|
export declare const createAggregationConfig: (...args: any[]) => Promise<string | {
|
|
4700
4700
|
type: HookType.PROTOCOL_FEE;
|
|
4701
4701
|
owner: string;
|
|
4702
|
-
protocolFee: string;
|
|
4703
4702
|
beneficiary: string;
|
|
4704
4703
|
maxProtocolFee: string;
|
|
4704
|
+
protocolFee: string;
|
|
4705
4705
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4706
4706
|
} | {
|
|
4707
4707
|
type: HookType.PAUSABLE;
|
|
@@ -4731,9 +4731,9 @@ export declare const createAggregationConfig: (...args: any[]) => Promise<string
|
|
|
4731
4731
|
export declare const createRoutingConfig: (...args: any[]) => Promise<string | {
|
|
4732
4732
|
type: HookType.PROTOCOL_FEE;
|
|
4733
4733
|
owner: string;
|
|
4734
|
-
protocolFee: string;
|
|
4735
4734
|
beneficiary: string;
|
|
4736
4735
|
maxProtocolFee: string;
|
|
4736
|
+
protocolFee: string;
|
|
4737
4737
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4738
4738
|
} | {
|
|
4739
4739
|
type: HookType.PAUSABLE;
|