@hyperlane-xyz/sdk 8.7.0 → 8.8.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.
@@ -222,6 +222,22 @@ export type AgentSealevelPriorityFeeOracle = AgentSealevelChainMetadata['priorit
222
222
  export type AgentSealevelTransactionSubmitter = AgentSealevelChainMetadata['transactionSubmitter'];
223
223
  export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
224
224
  name: z.ZodString;
225
+ availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
226
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
227
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
228
+ }, "strip", z.ZodTypeAny, {
229
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
230
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
231
+ }, {
232
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
233
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
234
+ }>, z.ZodObject<{
235
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
236
+ }, "strip", z.ZodTypeAny, {
237
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
238
+ }, {
239
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
240
+ }>]>>;
225
241
  bech32Prefix: z.ZodOptional<z.ZodString>;
226
242
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
227
243
  name: z.ZodString;
@@ -586,6 +602,12 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
586
602
  merkleTreeHook: string;
587
603
  interchainGasPaymaster: string;
588
604
  validatorAnnounce: string;
605
+ availability?: {
606
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
607
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
608
+ } | {
609
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
610
+ } | undefined;
589
611
  bech32Prefix?: string | undefined;
590
612
  blockExplorers?: {
591
613
  name: string;
@@ -711,6 +733,12 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
711
733
  merkleTreeHook: string;
712
734
  interchainGasPaymaster: string;
713
735
  validatorAnnounce: string;
736
+ availability?: {
737
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
738
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
739
+ } | {
740
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
741
+ } | undefined;
714
742
  bech32Prefix?: string | undefined;
715
743
  blockExplorers?: {
716
744
  name: string;
@@ -836,6 +864,12 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
836
864
  merkleTreeHook: string;
837
865
  interchainGasPaymaster: string;
838
866
  validatorAnnounce: string;
867
+ availability?: {
868
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
869
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
870
+ } | {
871
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
872
+ } | undefined;
839
873
  bech32Prefix?: string | undefined;
840
874
  blockExplorers?: {
841
875
  name: string;
@@ -961,6 +995,12 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
961
995
  merkleTreeHook: string;
962
996
  interchainGasPaymaster: string;
963
997
  validatorAnnounce: string;
998
+ availability?: {
999
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1000
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1001
+ } | {
1002
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1003
+ } | undefined;
964
1004
  bech32Prefix?: string | undefined;
965
1005
  blockExplorers?: {
966
1006
  name: string;
@@ -1069,6 +1109,22 @@ export declare const AgentConfigSchema: z.ZodObject<{
1069
1109
  metricsPort: z.ZodOptional<z.ZodNumber>;
1070
1110
  chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
1071
1111
  name: z.ZodString;
1112
+ availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1113
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
1114
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
1115
+ }, "strip", z.ZodTypeAny, {
1116
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1117
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1118
+ }, {
1119
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1120
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1121
+ }>, z.ZodObject<{
1122
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
1123
+ }, "strip", z.ZodTypeAny, {
1124
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1125
+ }, {
1126
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1127
+ }>]>>;
1072
1128
  bech32Prefix: z.ZodOptional<z.ZodString>;
1073
1129
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1074
1130
  name: z.ZodString;
@@ -1433,6 +1489,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
1433
1489
  merkleTreeHook: string;
1434
1490
  interchainGasPaymaster: string;
1435
1491
  validatorAnnounce: string;
1492
+ availability?: {
1493
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1494
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1495
+ } | {
1496
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1497
+ } | undefined;
1436
1498
  bech32Prefix?: string | undefined;
1437
1499
  blockExplorers?: {
1438
1500
  name: string;
@@ -1558,6 +1620,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
1558
1620
  merkleTreeHook: string;
1559
1621
  interchainGasPaymaster: string;
1560
1622
  validatorAnnounce: string;
1623
+ availability?: {
1624
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1625
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1626
+ } | {
1627
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1628
+ } | undefined;
1561
1629
  bech32Prefix?: string | undefined;
1562
1630
  blockExplorers?: {
1563
1631
  name: string;
@@ -1683,6 +1751,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
1683
1751
  merkleTreeHook: string;
1684
1752
  interchainGasPaymaster: string;
1685
1753
  validatorAnnounce: string;
1754
+ availability?: {
1755
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1756
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1757
+ } | {
1758
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1759
+ } | undefined;
1686
1760
  bech32Prefix?: string | undefined;
1687
1761
  blockExplorers?: {
1688
1762
  name: string;
@@ -1808,6 +1882,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
1808
1882
  merkleTreeHook: string;
1809
1883
  interchainGasPaymaster: string;
1810
1884
  validatorAnnounce: string;
1885
+ availability?: {
1886
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
1887
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
1888
+ } | {
1889
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
1890
+ } | undefined;
1811
1891
  bech32Prefix?: string | undefined;
1812
1892
  blockExplorers?: {
1813
1893
  name: string;
@@ -1933,6 +2013,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
1933
2013
  merkleTreeHook: string;
1934
2014
  interchainGasPaymaster: string;
1935
2015
  validatorAnnounce: string;
2016
+ availability?: {
2017
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2018
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2019
+ } | {
2020
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2021
+ } | undefined;
1936
2022
  bech32Prefix?: string | undefined;
1937
2023
  blockExplorers?: {
1938
2024
  name: string;
@@ -2058,6 +2144,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
2058
2144
  merkleTreeHook: string;
2059
2145
  interchainGasPaymaster: string;
2060
2146
  validatorAnnounce: string;
2147
+ availability?: {
2148
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2149
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2150
+ } | {
2151
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2152
+ } | undefined;
2061
2153
  bech32Prefix?: string | undefined;
2062
2154
  blockExplorers?: {
2063
2155
  name: string;
@@ -2236,6 +2328,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
2236
2328
  merkleTreeHook: string;
2237
2329
  interchainGasPaymaster: string;
2238
2330
  validatorAnnounce: string;
2331
+ availability?: {
2332
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2333
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2334
+ } | {
2335
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2336
+ } | undefined;
2239
2337
  bech32Prefix?: string | undefined;
2240
2338
  blockExplorers?: {
2241
2339
  name: string;
@@ -2383,6 +2481,12 @@ export declare const AgentConfigSchema: z.ZodObject<{
2383
2481
  merkleTreeHook: string;
2384
2482
  interchainGasPaymaster: string;
2385
2483
  validatorAnnounce: string;
2484
+ availability?: {
2485
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2486
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2487
+ } | {
2488
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2489
+ } | undefined;
2386
2490
  bech32Prefix?: string | undefined;
2387
2491
  blockExplorers?: {
2388
2492
  name: string;
@@ -2641,6 +2745,22 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
2641
2745
  metricsPort: z.ZodOptional<z.ZodNumber>;
2642
2746
  chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
2643
2747
  name: z.ZodString;
2748
+ availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2749
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
2750
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
2751
+ }, "strip", z.ZodTypeAny, {
2752
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2753
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2754
+ }, {
2755
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
2756
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
2757
+ }>, z.ZodObject<{
2758
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
2759
+ }, "strip", z.ZodTypeAny, {
2760
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2761
+ }, {
2762
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
2763
+ }>]>>;
2644
2764
  bech32Prefix: z.ZodOptional<z.ZodString>;
2645
2765
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
2646
2766
  name: z.ZodString;
@@ -3005,6 +3125,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3005
3125
  merkleTreeHook: string;
3006
3126
  interchainGasPaymaster: string;
3007
3127
  validatorAnnounce: string;
3128
+ availability?: {
3129
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3130
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3131
+ } | {
3132
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3133
+ } | undefined;
3008
3134
  bech32Prefix?: string | undefined;
3009
3135
  blockExplorers?: {
3010
3136
  name: string;
@@ -3130,6 +3256,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3130
3256
  merkleTreeHook: string;
3131
3257
  interchainGasPaymaster: string;
3132
3258
  validatorAnnounce: string;
3259
+ availability?: {
3260
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3261
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3262
+ } | {
3263
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3264
+ } | undefined;
3133
3265
  bech32Prefix?: string | undefined;
3134
3266
  blockExplorers?: {
3135
3267
  name: string;
@@ -3255,6 +3387,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3255
3387
  merkleTreeHook: string;
3256
3388
  interchainGasPaymaster: string;
3257
3389
  validatorAnnounce: string;
3390
+ availability?: {
3391
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3392
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3393
+ } | {
3394
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3395
+ } | undefined;
3258
3396
  bech32Prefix?: string | undefined;
3259
3397
  blockExplorers?: {
3260
3398
  name: string;
@@ -3380,6 +3518,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3380
3518
  merkleTreeHook: string;
3381
3519
  interchainGasPaymaster: string;
3382
3520
  validatorAnnounce: string;
3521
+ availability?: {
3522
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3523
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3524
+ } | {
3525
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3526
+ } | undefined;
3383
3527
  bech32Prefix?: string | undefined;
3384
3528
  blockExplorers?: {
3385
3529
  name: string;
@@ -3505,6 +3649,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3505
3649
  merkleTreeHook: string;
3506
3650
  interchainGasPaymaster: string;
3507
3651
  validatorAnnounce: string;
3652
+ availability?: {
3653
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3654
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3655
+ } | {
3656
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3657
+ } | undefined;
3508
3658
  bech32Prefix?: string | undefined;
3509
3659
  blockExplorers?: {
3510
3660
  name: string;
@@ -3630,6 +3780,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
3630
3780
  merkleTreeHook: string;
3631
3781
  interchainGasPaymaster: string;
3632
3782
  validatorAnnounce: string;
3783
+ availability?: {
3784
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
3785
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
3786
+ } | {
3787
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
3788
+ } | undefined;
3633
3789
  bech32Prefix?: string | undefined;
3634
3790
  blockExplorers?: {
3635
3791
  name: string;
@@ -4016,6 +4172,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4016
4172
  merkleTreeHook: string;
4017
4173
  interchainGasPaymaster: string;
4018
4174
  validatorAnnounce: string;
4175
+ availability?: {
4176
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4177
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4178
+ } | {
4179
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
4180
+ } | undefined;
4019
4181
  bech32Prefix?: string | undefined;
4020
4182
  blockExplorers?: {
4021
4183
  name: string;
@@ -4223,6 +4385,12 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
4223
4385
  merkleTreeHook: string;
4224
4386
  interchainGasPaymaster: string;
4225
4387
  validatorAnnounce: string;
4388
+ availability?: {
4389
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4390
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4391
+ } | {
4392
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
4393
+ } | undefined;
4226
4394
  bech32Prefix?: string | undefined;
4227
4395
  blockExplorers?: {
4228
4396
  name: string;
@@ -4412,6 +4580,22 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4412
4580
  metricsPort: z.ZodOptional<z.ZodNumber>;
4413
4581
  chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
4414
4582
  name: z.ZodString;
4583
+ availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4584
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
4585
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
4586
+ }, "strip", z.ZodTypeAny, {
4587
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4588
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4589
+ }, {
4590
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4591
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4592
+ }>, z.ZodObject<{
4593
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
4594
+ }, "strip", z.ZodTypeAny, {
4595
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
4596
+ }, {
4597
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
4598
+ }>]>>;
4415
4599
  bech32Prefix: z.ZodOptional<z.ZodString>;
4416
4600
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
4417
4601
  name: z.ZodString;
@@ -4776,6 +4960,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4776
4960
  merkleTreeHook: string;
4777
4961
  interchainGasPaymaster: string;
4778
4962
  validatorAnnounce: string;
4963
+ availability?: {
4964
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
4965
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
4966
+ } | {
4967
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
4968
+ } | undefined;
4779
4969
  bech32Prefix?: string | undefined;
4780
4970
  blockExplorers?: {
4781
4971
  name: string;
@@ -4901,6 +5091,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
4901
5091
  merkleTreeHook: string;
4902
5092
  interchainGasPaymaster: string;
4903
5093
  validatorAnnounce: string;
5094
+ availability?: {
5095
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5096
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5097
+ } | {
5098
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5099
+ } | undefined;
4904
5100
  bech32Prefix?: string | undefined;
4905
5101
  blockExplorers?: {
4906
5102
  name: string;
@@ -5026,6 +5222,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5026
5222
  merkleTreeHook: string;
5027
5223
  interchainGasPaymaster: string;
5028
5224
  validatorAnnounce: string;
5225
+ availability?: {
5226
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5227
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5228
+ } | {
5229
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5230
+ } | undefined;
5029
5231
  bech32Prefix?: string | undefined;
5030
5232
  blockExplorers?: {
5031
5233
  name: string;
@@ -5151,6 +5353,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5151
5353
  merkleTreeHook: string;
5152
5354
  interchainGasPaymaster: string;
5153
5355
  validatorAnnounce: string;
5356
+ availability?: {
5357
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5358
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5359
+ } | {
5360
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5361
+ } | undefined;
5154
5362
  bech32Prefix?: string | undefined;
5155
5363
  blockExplorers?: {
5156
5364
  name: string;
@@ -5276,6 +5484,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5276
5484
  merkleTreeHook: string;
5277
5485
  interchainGasPaymaster: string;
5278
5486
  validatorAnnounce: string;
5487
+ availability?: {
5488
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5489
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5490
+ } | {
5491
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5492
+ } | undefined;
5279
5493
  bech32Prefix?: string | undefined;
5280
5494
  blockExplorers?: {
5281
5495
  name: string;
@@ -5401,6 +5615,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5401
5615
  merkleTreeHook: string;
5402
5616
  interchainGasPaymaster: string;
5403
5617
  validatorAnnounce: string;
5618
+ availability?: {
5619
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5620
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5621
+ } | {
5622
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5623
+ } | undefined;
5404
5624
  bech32Prefix?: string | undefined;
5405
5625
  blockExplorers?: {
5406
5626
  name: string;
@@ -5581,6 +5801,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5581
5801
  merkleTreeHook: string;
5582
5802
  interchainGasPaymaster: string;
5583
5803
  validatorAnnounce: string;
5804
+ availability?: {
5805
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5806
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5807
+ } | {
5808
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5809
+ } | undefined;
5584
5810
  bech32Prefix?: string | undefined;
5585
5811
  blockExplorers?: {
5586
5812
  name: string;
@@ -5730,6 +5956,12 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
5730
5956
  merkleTreeHook: string;
5731
5957
  interchainGasPaymaster: string;
5732
5958
  validatorAnnounce: string;
5959
+ availability?: {
5960
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
5961
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
5962
+ } | {
5963
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
5964
+ } | undefined;
5733
5965
  bech32Prefix?: string | undefined;
5734
5966
  blockExplorers?: {
5735
5967
  name: string;
@@ -5861,6 +6093,22 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
5861
6093
  metricsPort: z.ZodOptional<z.ZodNumber>;
5862
6094
  chains: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
5863
6095
  name: z.ZodString;
6096
+ availability: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
6097
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Disabled>;
6098
+ reasons: z.ZodArray<z.ZodNativeEnum<typeof import("./chainMetadataTypes.js").ChainDisabledReason>, "many">;
6099
+ }, "strip", z.ZodTypeAny, {
6100
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6101
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6102
+ }, {
6103
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6104
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6105
+ }>, z.ZodObject<{
6106
+ status: z.ZodLiteral<import("./chainMetadataTypes.js").ChainStatus.Live>;
6107
+ }, "strip", z.ZodTypeAny, {
6108
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6109
+ }, {
6110
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6111
+ }>]>>;
5864
6112
  bech32Prefix: z.ZodOptional<z.ZodString>;
5865
6113
  blockExplorers: z.ZodOptional<z.ZodArray<z.ZodObject<{
5866
6114
  name: z.ZodString;
@@ -6225,6 +6473,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6225
6473
  merkleTreeHook: string;
6226
6474
  interchainGasPaymaster: string;
6227
6475
  validatorAnnounce: string;
6476
+ availability?: {
6477
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6478
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6479
+ } | {
6480
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6481
+ } | undefined;
6228
6482
  bech32Prefix?: string | undefined;
6229
6483
  blockExplorers?: {
6230
6484
  name: string;
@@ -6350,6 +6604,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6350
6604
  merkleTreeHook: string;
6351
6605
  interchainGasPaymaster: string;
6352
6606
  validatorAnnounce: string;
6607
+ availability?: {
6608
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6609
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6610
+ } | {
6611
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6612
+ } | undefined;
6353
6613
  bech32Prefix?: string | undefined;
6354
6614
  blockExplorers?: {
6355
6615
  name: string;
@@ -6475,6 +6735,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6475
6735
  merkleTreeHook: string;
6476
6736
  interchainGasPaymaster: string;
6477
6737
  validatorAnnounce: string;
6738
+ availability?: {
6739
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6740
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6741
+ } | {
6742
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6743
+ } | undefined;
6478
6744
  bech32Prefix?: string | undefined;
6479
6745
  blockExplorers?: {
6480
6746
  name: string;
@@ -6600,6 +6866,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6600
6866
  merkleTreeHook: string;
6601
6867
  interchainGasPaymaster: string;
6602
6868
  validatorAnnounce: string;
6869
+ availability?: {
6870
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
6871
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
6872
+ } | {
6873
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
6874
+ } | undefined;
6603
6875
  bech32Prefix?: string | undefined;
6604
6876
  blockExplorers?: {
6605
6877
  name: string;
@@ -6725,6 +6997,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6725
6997
  merkleTreeHook: string;
6726
6998
  interchainGasPaymaster: string;
6727
6999
  validatorAnnounce: string;
7000
+ availability?: {
7001
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7002
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7003
+ } | {
7004
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
7005
+ } | undefined;
6728
7006
  bech32Prefix?: string | undefined;
6729
7007
  blockExplorers?: {
6730
7008
  name: string;
@@ -6850,6 +7128,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
6850
7128
  merkleTreeHook: string;
6851
7129
  interchainGasPaymaster: string;
6852
7130
  validatorAnnounce: string;
7131
+ availability?: {
7132
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7133
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7134
+ } | {
7135
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
7136
+ } | undefined;
6853
7137
  bech32Prefix?: string | undefined;
6854
7138
  blockExplorers?: {
6855
7139
  name: string;
@@ -7114,6 +7398,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7114
7398
  merkleTreeHook: string;
7115
7399
  interchainGasPaymaster: string;
7116
7400
  validatorAnnounce: string;
7401
+ availability?: {
7402
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7403
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7404
+ } | {
7405
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
7406
+ } | undefined;
7117
7407
  bech32Prefix?: string | undefined;
7118
7408
  blockExplorers?: {
7119
7409
  name: string;
@@ -7307,6 +7597,12 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
7307
7597
  merkleTreeHook: string;
7308
7598
  interchainGasPaymaster: string;
7309
7599
  validatorAnnounce: string;
7600
+ availability?: {
7601
+ status: import("./chainMetadataTypes.js").ChainStatus.Disabled;
7602
+ reasons: import("./chainMetadataTypes.js").ChainDisabledReason[];
7603
+ } | {
7604
+ status: import("./chainMetadataTypes.js").ChainStatus.Live;
7605
+ } | undefined;
7310
7606
  bech32Prefix?: string | undefined;
7311
7607
  blockExplorers?: {
7312
7608
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"agentConfig.d.ts","sourceRoot":"","sources":["../../src/metadata/agentConfig.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"agentConfig.d.ts","sourceRoot":"","sources":["../../src/metadata/agentConfig.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAEpD,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAIlD,OAAO,EACL,4BAA4B,EAE7B,MAAM,0BAA0B,CAAC;AAGlC,oBAAY,gBAAgB;IAC1B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAED,oBAAY,aAAa;IACvB,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;CAChB;AAED,oBAAY,cAAc;IACxB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,MAAM,WAAW;CAClB;AAED,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,QAAQ,aAAa;CACtB;AAED,oBAAY,kBAAkB;IAC5B,GAAG,QAAQ;IACX,GAAG,WAAW;IACd,IAAI,SAAS;IACb,MAAM,cAAc;CACrB;AAED,oBAAY,kCAAkC;IAC5C,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB;AAED,oBAAY,2BAA2B;IACrC,WAAW,gBAAgB;IAC3B,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,SAAS,cAAc;CACxB;AAED,oBAAY,qCAAqC;IAC/C,GAAG,QAAQ;IACX,IAAI,SAAS;CACd;AAED,QAAA,MAAM,uBAAuB;;;;;;;;;EAKC,CAAC;AAC/B,QAAA,MAAM,uBAAuB;;;;;;;;;;;;EAQ1B,CAAC;AAQJ,QAAA,MAAM,qBAAqB;;;;;;EAI8C,CAAC;AAE1E,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKrB,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACzE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAG5D,QAAA,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBlC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CACvC,OAAO,8BAA8B,CACtC,CAAC,UAAU,CAAC,CAAC;AAEd,QAAA,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBpC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,gCAAgC,CACxC,CAAC;AAEF,MAAM,MAAM,8BAA8B,GACxC,0BAA0B,CAAC,mBAAmB,CAAC,CAAC;AAElD,MAAM,MAAM,iCAAiC,GAC3C,0BAA0B,CAAC,sBAAsB,CAAC,CAAC;AAErD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0FjC,CAAC;AAEL,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwC5B,CAAC;AAKH,oBAAY,+BAA+B;IACzC,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,iBAAiB,sBAAsB;CACxC;AAOD,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAe/B,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAShF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyDrC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAEzE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAI5D,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,SAAS,EAAE,EACnB,aAAa,EAAE,aAAa,EAC5B,SAAS,EAAE,QAAQ,CAAC,4BAA4B,CAAC,EACjD,WAAW,EAAE,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC,EACzC,gBAAgB,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,GAC/B,WAAW,CA+Bb"}
@@ -1,6 +1,6 @@
1
1
  import { expect } from 'chai';
2
2
  import { ProtocolType } from '@hyperlane-xyz/utils';
3
- import { EthJsonRpcBlockParameterTag, isValidChainMetadata, } from './chainMetadataTypes.js';
3
+ import { ChainDisabledReason, ChainStatus, EthJsonRpcBlockParameterTag, isValidChainMetadata, } from './chainMetadataTypes.js';
4
4
  const minimalSchema = {
5
5
  chainId: 5,
6
6
  domainId: 5,
@@ -51,6 +51,19 @@ describe('ChainMetadataSchema', () => {
51
51
  reorgPeriod: EthJsonRpcBlockParameterTag.Finalized,
52
52
  },
53
53
  })).to.eq(true);
54
+ expect(isValidChainMetadata({
55
+ ...minimalSchema,
56
+ availability: {
57
+ status: ChainStatus.Live,
58
+ },
59
+ })).to.eq(true);
60
+ expect(isValidChainMetadata({
61
+ ...minimalSchema,
62
+ availability: {
63
+ status: ChainStatus.Disabled,
64
+ reasons: [ChainDisabledReason.Deprecated],
65
+ },
66
+ })).to.eq(true);
54
67
  });
55
68
  it('Rejects invalid schemas', () => {
56
69
  expect(
@@ -80,6 +93,13 @@ describe('ChainMetadataSchema', () => {
80
93
  protocol: ProtocolType.Cosmos,
81
94
  chainId: 'string-id',
82
95
  })).to.eq(false);
96
+ expect(isValidChainMetadata({
97
+ ...minimalSchema,
98
+ availability: {
99
+ status: ChainStatus.Disabled,
100
+ reasons: [],
101
+ },
102
+ })).to.eq(false);
83
103
  });
84
104
  });
85
105
  //# sourceMappingURL=chainMetadata.test.js.map