@hyperlane-xyz/sdk 17.0.0 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/MultiProtocolApp.d.ts +5 -1
- package/dist/app/MultiProtocolApp.d.ts.map +1 -1
- package/dist/app/MultiProtocolApp.js +6 -0
- package/dist/app/MultiProtocolApp.js.map +1 -1
- package/dist/block-explorer/utils.d.ts.map +1 -1
- package/dist/block-explorer/utils.js +1 -0
- package/dist/block-explorer/utils.js.map +1 -1
- package/dist/consts/multisigIsm.d.ts.map +1 -1
- package/dist/consts/multisigIsm.js +225 -154
- package/dist/consts/multisigIsm.js.map +1 -1
- package/dist/core/MultiProtocolCore.d.ts.map +1 -1
- package/dist/core/MultiProtocolCore.js +3 -0
- package/dist/core/MultiProtocolCore.js.map +1 -1
- package/dist/core/adapters/RadixCoreAdapter.d.ts +22 -0
- package/dist/core/adapters/RadixCoreAdapter.d.ts.map +1 -0
- package/dist/core/adapters/RadixCoreAdapter.js +42 -0
- package/dist/core/adapters/RadixCoreAdapter.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/metadata/agentConfig.d.ts +318 -1
- package/dist/metadata/agentConfig.d.ts.map +1 -1
- package/dist/metadata/agentConfig.js +9 -0
- package/dist/metadata/agentConfig.js.map +1 -1
- package/dist/metadata/blockExplorer.d.ts.map +1 -1
- package/dist/metadata/blockExplorer.js +11 -3
- package/dist/metadata/blockExplorer.js.map +1 -1
- package/dist/metadata/chainMetadataTypes.d.ts +1 -0
- package/dist/metadata/chainMetadataTypes.d.ts.map +1 -1
- package/dist/metadata/chainMetadataTypes.js +1 -0
- package/dist/metadata/chainMetadataTypes.js.map +1 -1
- package/dist/providers/MultiProtocolProvider.d.ts +2 -1
- package/dist/providers/MultiProtocolProvider.d.ts.map +1 -1
- package/dist/providers/MultiProtocolProvider.js +3 -0
- package/dist/providers/MultiProtocolProvider.js.map +1 -1
- package/dist/providers/ProviderType.d.ts +30 -7
- package/dist/providers/ProviderType.d.ts.map +1 -1
- package/dist/providers/ProviderType.js.map +1 -1
- package/dist/providers/providerBuilders.d.ts +2 -1
- package/dist/providers/providerBuilders.d.ts.map +1 -1
- package/dist/providers/providerBuilders.js +11 -2
- package/dist/providers/providerBuilders.js.map +1 -1
- package/dist/providers/rpcHealthTest.d.ts +2 -1
- package/dist/providers/rpcHealthTest.d.ts.map +1 -1
- package/dist/providers/rpcHealthTest.js +15 -0
- package/dist/providers/rpcHealthTest.js.map +1 -1
- package/dist/providers/transactionFeeEstimators.d.ts +10 -6
- package/dist/providers/transactionFeeEstimators.d.ts.map +1 -1
- package/dist/providers/transactionFeeEstimators.js +17 -5
- package/dist/providers/transactionFeeEstimators.js.map +1 -1
- package/dist/token/Token.d.ts.map +1 -1
- package/dist/token/Token.js +16 -0
- package/dist/token/Token.js.map +1 -1
- package/dist/token/adapters/RadixTokenAdapter.d.ts +53 -0
- package/dist/token/adapters/RadixTokenAdapter.d.ts.map +1 -0
- package/dist/token/adapters/RadixTokenAdapter.js +166 -0
- package/dist/token/adapters/RadixTokenAdapter.js.map +1 -0
- package/dist/token/checker.d.ts +1 -1
- package/dist/token/checker.d.ts.map +1 -1
- package/dist/token/checker.js +46 -5
- package/dist/token/checker.js.map +1 -1
- package/dist/token/checker.test.d.ts +2 -0
- package/dist/token/checker.test.d.ts.map +1 -0
- package/dist/token/checker.test.js +204 -0
- package/dist/token/checker.test.js.map +1 -0
- package/dist/token/types.d.ts +1 -1
- package/dist/types.d.ts +0 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +6 -5
|
@@ -36,7 +36,8 @@ export declare enum AgentSignerKeyType {
|
|
|
36
36
|
Hex = "hexKey",
|
|
37
37
|
Node = "node",
|
|
38
38
|
Cosmos = "cosmosKey",
|
|
39
|
-
Starknet = "starkKey"
|
|
39
|
+
Starknet = "starkKey",
|
|
40
|
+
Radix = "radixKey"
|
|
40
41
|
}
|
|
41
42
|
export declare enum AgentSealevelPriorityFeeOracleType {
|
|
42
43
|
Helius = "helius",
|
|
@@ -124,6 +125,18 @@ declare const AgentSignerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
124
125
|
type: AgentSignerKeyType.Node;
|
|
125
126
|
}, {
|
|
126
127
|
type: AgentSignerKeyType.Node;
|
|
128
|
+
}>, z.ZodObject<{
|
|
129
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
130
|
+
suffix: z.ZodString;
|
|
131
|
+
key: z.ZodString;
|
|
132
|
+
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
type: AgentSignerKeyType.Radix;
|
|
134
|
+
key: string;
|
|
135
|
+
suffix: string;
|
|
136
|
+
}, {
|
|
137
|
+
type: AgentSignerKeyType.Radix;
|
|
138
|
+
key: string;
|
|
139
|
+
suffix: string;
|
|
127
140
|
}>]>;
|
|
128
141
|
export type AgentSignerHexKey = z.infer<typeof AgentSignerHexKeySchema>;
|
|
129
142
|
export type AgentSignerAwsKey = z.infer<typeof AgentSignerAwsKeySchema>;
|
|
@@ -549,6 +562,18 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
549
562
|
type: AgentSignerKeyType.Node;
|
|
550
563
|
}, {
|
|
551
564
|
type: AgentSignerKeyType.Node;
|
|
565
|
+
}>, z.ZodObject<{
|
|
566
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
567
|
+
suffix: z.ZodString;
|
|
568
|
+
key: z.ZodString;
|
|
569
|
+
}, "strip", z.ZodTypeAny, {
|
|
570
|
+
type: AgentSignerKeyType.Radix;
|
|
571
|
+
key: string;
|
|
572
|
+
suffix: string;
|
|
573
|
+
}, {
|
|
574
|
+
type: AgentSignerKeyType.Radix;
|
|
575
|
+
key: string;
|
|
576
|
+
suffix: string;
|
|
552
577
|
}>]>>;
|
|
553
578
|
merkleTreeHook: z.ZodString;
|
|
554
579
|
interchainGasPaymaster: z.ZodString;
|
|
@@ -706,6 +731,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
706
731
|
type: AgentSignerKeyType.Cosmos;
|
|
707
732
|
key: string;
|
|
708
733
|
prefix: string;
|
|
734
|
+
} | {
|
|
735
|
+
type: AgentSignerKeyType.Radix;
|
|
736
|
+
key: string;
|
|
737
|
+
suffix: string;
|
|
709
738
|
} | {
|
|
710
739
|
type: AgentSignerKeyType.Node;
|
|
711
740
|
} | undefined;
|
|
@@ -841,6 +870,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
841
870
|
type: AgentSignerKeyType.Cosmos;
|
|
842
871
|
key: string;
|
|
843
872
|
prefix: string;
|
|
873
|
+
} | {
|
|
874
|
+
type: AgentSignerKeyType.Radix;
|
|
875
|
+
key: string;
|
|
876
|
+
suffix: string;
|
|
844
877
|
} | {
|
|
845
878
|
type: AgentSignerKeyType.Node;
|
|
846
879
|
} | undefined;
|
|
@@ -976,6 +1009,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
976
1009
|
type: AgentSignerKeyType.Cosmos;
|
|
977
1010
|
key: string;
|
|
978
1011
|
prefix: string;
|
|
1012
|
+
} | {
|
|
1013
|
+
type: AgentSignerKeyType.Radix;
|
|
1014
|
+
key: string;
|
|
1015
|
+
suffix: string;
|
|
979
1016
|
} | {
|
|
980
1017
|
type: AgentSignerKeyType.Node;
|
|
981
1018
|
} | undefined;
|
|
@@ -1111,6 +1148,10 @@ export declare const AgentChainMetadataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1111
1148
|
type: AgentSignerKeyType.Cosmos;
|
|
1112
1149
|
key: string;
|
|
1113
1150
|
prefix: string;
|
|
1151
|
+
} | {
|
|
1152
|
+
type: AgentSignerKeyType.Radix;
|
|
1153
|
+
key: string;
|
|
1154
|
+
suffix: string;
|
|
1114
1155
|
} | {
|
|
1115
1156
|
type: AgentSignerKeyType.Node;
|
|
1116
1157
|
} | undefined;
|
|
@@ -1462,6 +1503,18 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1462
1503
|
type: AgentSignerKeyType.Node;
|
|
1463
1504
|
}, {
|
|
1464
1505
|
type: AgentSignerKeyType.Node;
|
|
1506
|
+
}>, z.ZodObject<{
|
|
1507
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
1508
|
+
suffix: z.ZodString;
|
|
1509
|
+
key: z.ZodString;
|
|
1510
|
+
}, "strip", z.ZodTypeAny, {
|
|
1511
|
+
type: AgentSignerKeyType.Radix;
|
|
1512
|
+
key: string;
|
|
1513
|
+
suffix: string;
|
|
1514
|
+
}, {
|
|
1515
|
+
type: AgentSignerKeyType.Radix;
|
|
1516
|
+
key: string;
|
|
1517
|
+
suffix: string;
|
|
1465
1518
|
}>]>>;
|
|
1466
1519
|
merkleTreeHook: z.ZodString;
|
|
1467
1520
|
interchainGasPaymaster: z.ZodString;
|
|
@@ -1619,6 +1672,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1619
1672
|
type: AgentSignerKeyType.Cosmos;
|
|
1620
1673
|
key: string;
|
|
1621
1674
|
prefix: string;
|
|
1675
|
+
} | {
|
|
1676
|
+
type: AgentSignerKeyType.Radix;
|
|
1677
|
+
key: string;
|
|
1678
|
+
suffix: string;
|
|
1622
1679
|
} | {
|
|
1623
1680
|
type: AgentSignerKeyType.Node;
|
|
1624
1681
|
} | undefined;
|
|
@@ -1754,6 +1811,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1754
1811
|
type: AgentSignerKeyType.Cosmos;
|
|
1755
1812
|
key: string;
|
|
1756
1813
|
prefix: string;
|
|
1814
|
+
} | {
|
|
1815
|
+
type: AgentSignerKeyType.Radix;
|
|
1816
|
+
key: string;
|
|
1817
|
+
suffix: string;
|
|
1757
1818
|
} | {
|
|
1758
1819
|
type: AgentSignerKeyType.Node;
|
|
1759
1820
|
} | undefined;
|
|
@@ -1889,6 +1950,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1889
1950
|
type: AgentSignerKeyType.Cosmos;
|
|
1890
1951
|
key: string;
|
|
1891
1952
|
prefix: string;
|
|
1953
|
+
} | {
|
|
1954
|
+
type: AgentSignerKeyType.Radix;
|
|
1955
|
+
key: string;
|
|
1956
|
+
suffix: string;
|
|
1892
1957
|
} | {
|
|
1893
1958
|
type: AgentSignerKeyType.Node;
|
|
1894
1959
|
} | undefined;
|
|
@@ -2024,6 +2089,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2024
2089
|
type: AgentSignerKeyType.Cosmos;
|
|
2025
2090
|
key: string;
|
|
2026
2091
|
prefix: string;
|
|
2092
|
+
} | {
|
|
2093
|
+
type: AgentSignerKeyType.Radix;
|
|
2094
|
+
key: string;
|
|
2095
|
+
suffix: string;
|
|
2027
2096
|
} | {
|
|
2028
2097
|
type: AgentSignerKeyType.Node;
|
|
2029
2098
|
} | undefined;
|
|
@@ -2159,6 +2228,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2159
2228
|
type: AgentSignerKeyType.Cosmos;
|
|
2160
2229
|
key: string;
|
|
2161
2230
|
prefix: string;
|
|
2231
|
+
} | {
|
|
2232
|
+
type: AgentSignerKeyType.Radix;
|
|
2233
|
+
key: string;
|
|
2234
|
+
suffix: string;
|
|
2162
2235
|
} | {
|
|
2163
2236
|
type: AgentSignerKeyType.Node;
|
|
2164
2237
|
} | undefined;
|
|
@@ -2294,6 +2367,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2294
2367
|
type: AgentSignerKeyType.Cosmos;
|
|
2295
2368
|
key: string;
|
|
2296
2369
|
prefix: string;
|
|
2370
|
+
} | {
|
|
2371
|
+
type: AgentSignerKeyType.Radix;
|
|
2372
|
+
key: string;
|
|
2373
|
+
suffix: string;
|
|
2297
2374
|
} | {
|
|
2298
2375
|
type: AgentSignerKeyType.Node;
|
|
2299
2376
|
} | undefined;
|
|
@@ -2354,6 +2431,18 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2354
2431
|
type: AgentSignerKeyType.Node;
|
|
2355
2432
|
}, {
|
|
2356
2433
|
type: AgentSignerKeyType.Node;
|
|
2434
|
+
}>, z.ZodObject<{
|
|
2435
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
2436
|
+
suffix: z.ZodString;
|
|
2437
|
+
key: z.ZodString;
|
|
2438
|
+
}, "strip", z.ZodTypeAny, {
|
|
2439
|
+
type: AgentSignerKeyType.Radix;
|
|
2440
|
+
key: string;
|
|
2441
|
+
suffix: string;
|
|
2442
|
+
}, {
|
|
2443
|
+
type: AgentSignerKeyType.Radix;
|
|
2444
|
+
key: string;
|
|
2445
|
+
suffix: string;
|
|
2357
2446
|
}>]>>;
|
|
2358
2447
|
log: z.ZodOptional<z.ZodObject<{
|
|
2359
2448
|
format: z.ZodOptional<z.ZodNativeEnum<typeof AgentLogFormat>>;
|
|
@@ -2481,6 +2570,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2481
2570
|
type: AgentSignerKeyType.Cosmos;
|
|
2482
2571
|
key: string;
|
|
2483
2572
|
prefix: string;
|
|
2573
|
+
} | {
|
|
2574
|
+
type: AgentSignerKeyType.Radix;
|
|
2575
|
+
key: string;
|
|
2576
|
+
suffix: string;
|
|
2484
2577
|
} | {
|
|
2485
2578
|
type: AgentSignerKeyType.Node;
|
|
2486
2579
|
} | undefined;
|
|
@@ -2514,6 +2607,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2514
2607
|
type: AgentSignerKeyType.Cosmos;
|
|
2515
2608
|
key: string;
|
|
2516
2609
|
prefix: string;
|
|
2610
|
+
} | {
|
|
2611
|
+
type: AgentSignerKeyType.Radix;
|
|
2612
|
+
key: string;
|
|
2613
|
+
suffix: string;
|
|
2517
2614
|
} | {
|
|
2518
2615
|
type: AgentSignerKeyType.Node;
|
|
2519
2616
|
} | undefined;
|
|
@@ -2637,6 +2734,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2637
2734
|
type: AgentSignerKeyType.Cosmos;
|
|
2638
2735
|
key: string;
|
|
2639
2736
|
prefix: string;
|
|
2737
|
+
} | {
|
|
2738
|
+
type: AgentSignerKeyType.Radix;
|
|
2739
|
+
key: string;
|
|
2740
|
+
suffix: string;
|
|
2640
2741
|
} | {
|
|
2641
2742
|
type: AgentSignerKeyType.Node;
|
|
2642
2743
|
} | undefined;
|
|
@@ -2670,6 +2771,10 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
2670
2771
|
type: AgentSignerKeyType.Cosmos;
|
|
2671
2772
|
key: string;
|
|
2672
2773
|
prefix: string;
|
|
2774
|
+
} | {
|
|
2775
|
+
type: AgentSignerKeyType.Radix;
|
|
2776
|
+
key: string;
|
|
2777
|
+
suffix: string;
|
|
2673
2778
|
} | {
|
|
2674
2779
|
type: AgentSignerKeyType.Node;
|
|
2675
2780
|
} | undefined;
|
|
@@ -3187,6 +3292,18 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3187
3292
|
type: AgentSignerKeyType.Node;
|
|
3188
3293
|
}, {
|
|
3189
3294
|
type: AgentSignerKeyType.Node;
|
|
3295
|
+
}>, z.ZodObject<{
|
|
3296
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
3297
|
+
suffix: z.ZodString;
|
|
3298
|
+
key: z.ZodString;
|
|
3299
|
+
}, "strip", z.ZodTypeAny, {
|
|
3300
|
+
type: AgentSignerKeyType.Radix;
|
|
3301
|
+
key: string;
|
|
3302
|
+
suffix: string;
|
|
3303
|
+
}, {
|
|
3304
|
+
type: AgentSignerKeyType.Radix;
|
|
3305
|
+
key: string;
|
|
3306
|
+
suffix: string;
|
|
3190
3307
|
}>]>>;
|
|
3191
3308
|
merkleTreeHook: z.ZodString;
|
|
3192
3309
|
interchainGasPaymaster: z.ZodString;
|
|
@@ -3344,6 +3461,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3344
3461
|
type: AgentSignerKeyType.Cosmos;
|
|
3345
3462
|
key: string;
|
|
3346
3463
|
prefix: string;
|
|
3464
|
+
} | {
|
|
3465
|
+
type: AgentSignerKeyType.Radix;
|
|
3466
|
+
key: string;
|
|
3467
|
+
suffix: string;
|
|
3347
3468
|
} | {
|
|
3348
3469
|
type: AgentSignerKeyType.Node;
|
|
3349
3470
|
} | undefined;
|
|
@@ -3479,6 +3600,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3479
3600
|
type: AgentSignerKeyType.Cosmos;
|
|
3480
3601
|
key: string;
|
|
3481
3602
|
prefix: string;
|
|
3603
|
+
} | {
|
|
3604
|
+
type: AgentSignerKeyType.Radix;
|
|
3605
|
+
key: string;
|
|
3606
|
+
suffix: string;
|
|
3482
3607
|
} | {
|
|
3483
3608
|
type: AgentSignerKeyType.Node;
|
|
3484
3609
|
} | undefined;
|
|
@@ -3614,6 +3739,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3614
3739
|
type: AgentSignerKeyType.Cosmos;
|
|
3615
3740
|
key: string;
|
|
3616
3741
|
prefix: string;
|
|
3742
|
+
} | {
|
|
3743
|
+
type: AgentSignerKeyType.Radix;
|
|
3744
|
+
key: string;
|
|
3745
|
+
suffix: string;
|
|
3617
3746
|
} | {
|
|
3618
3747
|
type: AgentSignerKeyType.Node;
|
|
3619
3748
|
} | undefined;
|
|
@@ -3749,6 +3878,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3749
3878
|
type: AgentSignerKeyType.Cosmos;
|
|
3750
3879
|
key: string;
|
|
3751
3880
|
prefix: string;
|
|
3881
|
+
} | {
|
|
3882
|
+
type: AgentSignerKeyType.Radix;
|
|
3883
|
+
key: string;
|
|
3884
|
+
suffix: string;
|
|
3752
3885
|
} | {
|
|
3753
3886
|
type: AgentSignerKeyType.Node;
|
|
3754
3887
|
} | undefined;
|
|
@@ -3884,6 +4017,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
3884
4017
|
type: AgentSignerKeyType.Cosmos;
|
|
3885
4018
|
key: string;
|
|
3886
4019
|
prefix: string;
|
|
4020
|
+
} | {
|
|
4021
|
+
type: AgentSignerKeyType.Radix;
|
|
4022
|
+
key: string;
|
|
4023
|
+
suffix: string;
|
|
3887
4024
|
} | {
|
|
3888
4025
|
type: AgentSignerKeyType.Node;
|
|
3889
4026
|
} | undefined;
|
|
@@ -4019,6 +4156,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4019
4156
|
type: AgentSignerKeyType.Cosmos;
|
|
4020
4157
|
key: string;
|
|
4021
4158
|
prefix: string;
|
|
4159
|
+
} | {
|
|
4160
|
+
type: AgentSignerKeyType.Radix;
|
|
4161
|
+
key: string;
|
|
4162
|
+
suffix: string;
|
|
4022
4163
|
} | {
|
|
4023
4164
|
type: AgentSignerKeyType.Node;
|
|
4024
4165
|
} | undefined;
|
|
@@ -4079,6 +4220,18 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4079
4220
|
type: AgentSignerKeyType.Node;
|
|
4080
4221
|
}, {
|
|
4081
4222
|
type: AgentSignerKeyType.Node;
|
|
4223
|
+
}>, z.ZodObject<{
|
|
4224
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
4225
|
+
suffix: z.ZodString;
|
|
4226
|
+
key: z.ZodString;
|
|
4227
|
+
}, "strip", z.ZodTypeAny, {
|
|
4228
|
+
type: AgentSignerKeyType.Radix;
|
|
4229
|
+
key: string;
|
|
4230
|
+
suffix: string;
|
|
4231
|
+
}, {
|
|
4232
|
+
type: AgentSignerKeyType.Radix;
|
|
4233
|
+
key: string;
|
|
4234
|
+
suffix: string;
|
|
4082
4235
|
}>]>>;
|
|
4083
4236
|
log: z.ZodOptional<z.ZodObject<{
|
|
4084
4237
|
format: z.ZodOptional<z.ZodNativeEnum<typeof AgentLogFormat>>;
|
|
@@ -4458,6 +4611,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4458
4611
|
type: AgentSignerKeyType.Cosmos;
|
|
4459
4612
|
key: string;
|
|
4460
4613
|
prefix: string;
|
|
4614
|
+
} | {
|
|
4615
|
+
type: AgentSignerKeyType.Radix;
|
|
4616
|
+
key: string;
|
|
4617
|
+
suffix: string;
|
|
4461
4618
|
} | {
|
|
4462
4619
|
type: AgentSignerKeyType.Node;
|
|
4463
4620
|
} | undefined;
|
|
@@ -4492,6 +4649,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4492
4649
|
type: AgentSignerKeyType.Cosmos;
|
|
4493
4650
|
key: string;
|
|
4494
4651
|
prefix: string;
|
|
4652
|
+
} | {
|
|
4653
|
+
type: AgentSignerKeyType.Radix;
|
|
4654
|
+
key: string;
|
|
4655
|
+
suffix: string;
|
|
4495
4656
|
} | {
|
|
4496
4657
|
type: AgentSignerKeyType.Node;
|
|
4497
4658
|
} | undefined;
|
|
@@ -4688,6 +4849,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4688
4849
|
type: AgentSignerKeyType.Cosmos;
|
|
4689
4850
|
key: string;
|
|
4690
4851
|
prefix: string;
|
|
4852
|
+
} | {
|
|
4853
|
+
type: AgentSignerKeyType.Radix;
|
|
4854
|
+
key: string;
|
|
4855
|
+
suffix: string;
|
|
4691
4856
|
} | {
|
|
4692
4857
|
type: AgentSignerKeyType.Node;
|
|
4693
4858
|
} | undefined;
|
|
@@ -4722,6 +4887,10 @@ export declare const RelayerAgentConfigSchema: z.ZodObject<{
|
|
|
4722
4887
|
type: AgentSignerKeyType.Cosmos;
|
|
4723
4888
|
key: string;
|
|
4724
4889
|
prefix: string;
|
|
4890
|
+
} | {
|
|
4891
|
+
type: AgentSignerKeyType.Radix;
|
|
4892
|
+
key: string;
|
|
4893
|
+
suffix: string;
|
|
4725
4894
|
} | {
|
|
4726
4895
|
type: AgentSignerKeyType.Node;
|
|
4727
4896
|
} | undefined;
|
|
@@ -5133,6 +5302,18 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5133
5302
|
type: AgentSignerKeyType.Node;
|
|
5134
5303
|
}, {
|
|
5135
5304
|
type: AgentSignerKeyType.Node;
|
|
5305
|
+
}>, z.ZodObject<{
|
|
5306
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
5307
|
+
suffix: z.ZodString;
|
|
5308
|
+
key: z.ZodString;
|
|
5309
|
+
}, "strip", z.ZodTypeAny, {
|
|
5310
|
+
type: AgentSignerKeyType.Radix;
|
|
5311
|
+
key: string;
|
|
5312
|
+
suffix: string;
|
|
5313
|
+
}, {
|
|
5314
|
+
type: AgentSignerKeyType.Radix;
|
|
5315
|
+
key: string;
|
|
5316
|
+
suffix: string;
|
|
5136
5317
|
}>]>>;
|
|
5137
5318
|
merkleTreeHook: z.ZodString;
|
|
5138
5319
|
interchainGasPaymaster: z.ZodString;
|
|
@@ -5290,6 +5471,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5290
5471
|
type: AgentSignerKeyType.Cosmos;
|
|
5291
5472
|
key: string;
|
|
5292
5473
|
prefix: string;
|
|
5474
|
+
} | {
|
|
5475
|
+
type: AgentSignerKeyType.Radix;
|
|
5476
|
+
key: string;
|
|
5477
|
+
suffix: string;
|
|
5293
5478
|
} | {
|
|
5294
5479
|
type: AgentSignerKeyType.Node;
|
|
5295
5480
|
} | undefined;
|
|
@@ -5425,6 +5610,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5425
5610
|
type: AgentSignerKeyType.Cosmos;
|
|
5426
5611
|
key: string;
|
|
5427
5612
|
prefix: string;
|
|
5613
|
+
} | {
|
|
5614
|
+
type: AgentSignerKeyType.Radix;
|
|
5615
|
+
key: string;
|
|
5616
|
+
suffix: string;
|
|
5428
5617
|
} | {
|
|
5429
5618
|
type: AgentSignerKeyType.Node;
|
|
5430
5619
|
} | undefined;
|
|
@@ -5560,6 +5749,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5560
5749
|
type: AgentSignerKeyType.Cosmos;
|
|
5561
5750
|
key: string;
|
|
5562
5751
|
prefix: string;
|
|
5752
|
+
} | {
|
|
5753
|
+
type: AgentSignerKeyType.Radix;
|
|
5754
|
+
key: string;
|
|
5755
|
+
suffix: string;
|
|
5563
5756
|
} | {
|
|
5564
5757
|
type: AgentSignerKeyType.Node;
|
|
5565
5758
|
} | undefined;
|
|
@@ -5695,6 +5888,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5695
5888
|
type: AgentSignerKeyType.Cosmos;
|
|
5696
5889
|
key: string;
|
|
5697
5890
|
prefix: string;
|
|
5891
|
+
} | {
|
|
5892
|
+
type: AgentSignerKeyType.Radix;
|
|
5893
|
+
key: string;
|
|
5894
|
+
suffix: string;
|
|
5698
5895
|
} | {
|
|
5699
5896
|
type: AgentSignerKeyType.Node;
|
|
5700
5897
|
} | undefined;
|
|
@@ -5830,6 +6027,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5830
6027
|
type: AgentSignerKeyType.Cosmos;
|
|
5831
6028
|
key: string;
|
|
5832
6029
|
prefix: string;
|
|
6030
|
+
} | {
|
|
6031
|
+
type: AgentSignerKeyType.Radix;
|
|
6032
|
+
key: string;
|
|
6033
|
+
suffix: string;
|
|
5833
6034
|
} | {
|
|
5834
6035
|
type: AgentSignerKeyType.Node;
|
|
5835
6036
|
} | undefined;
|
|
@@ -5965,6 +6166,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
5965
6166
|
type: AgentSignerKeyType.Cosmos;
|
|
5966
6167
|
key: string;
|
|
5967
6168
|
prefix: string;
|
|
6169
|
+
} | {
|
|
6170
|
+
type: AgentSignerKeyType.Radix;
|
|
6171
|
+
key: string;
|
|
6172
|
+
suffix: string;
|
|
5968
6173
|
} | {
|
|
5969
6174
|
type: AgentSignerKeyType.Node;
|
|
5970
6175
|
} | undefined;
|
|
@@ -6025,6 +6230,18 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6025
6230
|
type: AgentSignerKeyType.Node;
|
|
6026
6231
|
}, {
|
|
6027
6232
|
type: AgentSignerKeyType.Node;
|
|
6233
|
+
}>, z.ZodObject<{
|
|
6234
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
6235
|
+
suffix: z.ZodString;
|
|
6236
|
+
key: z.ZodString;
|
|
6237
|
+
}, "strip", z.ZodTypeAny, {
|
|
6238
|
+
type: AgentSignerKeyType.Radix;
|
|
6239
|
+
key: string;
|
|
6240
|
+
suffix: string;
|
|
6241
|
+
}, {
|
|
6242
|
+
type: AgentSignerKeyType.Radix;
|
|
6243
|
+
key: string;
|
|
6244
|
+
suffix: string;
|
|
6028
6245
|
}>]>>;
|
|
6029
6246
|
log: z.ZodOptional<z.ZodObject<{
|
|
6030
6247
|
format: z.ZodOptional<z.ZodNativeEnum<typeof AgentLogFormat>>;
|
|
@@ -6154,6 +6371,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6154
6371
|
type: AgentSignerKeyType.Cosmos;
|
|
6155
6372
|
key: string;
|
|
6156
6373
|
prefix: string;
|
|
6374
|
+
} | {
|
|
6375
|
+
type: AgentSignerKeyType.Radix;
|
|
6376
|
+
key: string;
|
|
6377
|
+
suffix: string;
|
|
6157
6378
|
} | {
|
|
6158
6379
|
type: AgentSignerKeyType.Node;
|
|
6159
6380
|
} | undefined;
|
|
@@ -6189,6 +6410,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6189
6410
|
type: AgentSignerKeyType.Cosmos;
|
|
6190
6411
|
key: string;
|
|
6191
6412
|
prefix: string;
|
|
6413
|
+
} | {
|
|
6414
|
+
type: AgentSignerKeyType.Radix;
|
|
6415
|
+
key: string;
|
|
6416
|
+
suffix: string;
|
|
6192
6417
|
} | {
|
|
6193
6418
|
type: AgentSignerKeyType.Node;
|
|
6194
6419
|
} | undefined;
|
|
@@ -6312,6 +6537,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6312
6537
|
type: AgentSignerKeyType.Cosmos;
|
|
6313
6538
|
key: string;
|
|
6314
6539
|
prefix: string;
|
|
6540
|
+
} | {
|
|
6541
|
+
type: AgentSignerKeyType.Radix;
|
|
6542
|
+
key: string;
|
|
6543
|
+
suffix: string;
|
|
6315
6544
|
} | {
|
|
6316
6545
|
type: AgentSignerKeyType.Node;
|
|
6317
6546
|
} | undefined;
|
|
@@ -6347,6 +6576,10 @@ export declare const ScraperAgentConfigSchema: z.ZodObject<{
|
|
|
6347
6576
|
type: AgentSignerKeyType.Cosmos;
|
|
6348
6577
|
key: string;
|
|
6349
6578
|
prefix: string;
|
|
6579
|
+
} | {
|
|
6580
|
+
type: AgentSignerKeyType.Radix;
|
|
6581
|
+
key: string;
|
|
6582
|
+
suffix: string;
|
|
6350
6583
|
} | {
|
|
6351
6584
|
type: AgentSignerKeyType.Node;
|
|
6352
6585
|
} | undefined;
|
|
@@ -6685,6 +6918,18 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6685
6918
|
type: AgentSignerKeyType.Node;
|
|
6686
6919
|
}, {
|
|
6687
6920
|
type: AgentSignerKeyType.Node;
|
|
6921
|
+
}>, z.ZodObject<{
|
|
6922
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
6923
|
+
suffix: z.ZodString;
|
|
6924
|
+
key: z.ZodString;
|
|
6925
|
+
}, "strip", z.ZodTypeAny, {
|
|
6926
|
+
type: AgentSignerKeyType.Radix;
|
|
6927
|
+
key: string;
|
|
6928
|
+
suffix: string;
|
|
6929
|
+
}, {
|
|
6930
|
+
type: AgentSignerKeyType.Radix;
|
|
6931
|
+
key: string;
|
|
6932
|
+
suffix: string;
|
|
6688
6933
|
}>]>>;
|
|
6689
6934
|
merkleTreeHook: z.ZodString;
|
|
6690
6935
|
interchainGasPaymaster: z.ZodString;
|
|
@@ -6842,6 +7087,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6842
7087
|
type: AgentSignerKeyType.Cosmos;
|
|
6843
7088
|
key: string;
|
|
6844
7089
|
prefix: string;
|
|
7090
|
+
} | {
|
|
7091
|
+
type: AgentSignerKeyType.Radix;
|
|
7092
|
+
key: string;
|
|
7093
|
+
suffix: string;
|
|
6845
7094
|
} | {
|
|
6846
7095
|
type: AgentSignerKeyType.Node;
|
|
6847
7096
|
} | undefined;
|
|
@@ -6977,6 +7226,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
6977
7226
|
type: AgentSignerKeyType.Cosmos;
|
|
6978
7227
|
key: string;
|
|
6979
7228
|
prefix: string;
|
|
7229
|
+
} | {
|
|
7230
|
+
type: AgentSignerKeyType.Radix;
|
|
7231
|
+
key: string;
|
|
7232
|
+
suffix: string;
|
|
6980
7233
|
} | {
|
|
6981
7234
|
type: AgentSignerKeyType.Node;
|
|
6982
7235
|
} | undefined;
|
|
@@ -7112,6 +7365,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7112
7365
|
type: AgentSignerKeyType.Cosmos;
|
|
7113
7366
|
key: string;
|
|
7114
7367
|
prefix: string;
|
|
7368
|
+
} | {
|
|
7369
|
+
type: AgentSignerKeyType.Radix;
|
|
7370
|
+
key: string;
|
|
7371
|
+
suffix: string;
|
|
7115
7372
|
} | {
|
|
7116
7373
|
type: AgentSignerKeyType.Node;
|
|
7117
7374
|
} | undefined;
|
|
@@ -7247,6 +7504,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7247
7504
|
type: AgentSignerKeyType.Cosmos;
|
|
7248
7505
|
key: string;
|
|
7249
7506
|
prefix: string;
|
|
7507
|
+
} | {
|
|
7508
|
+
type: AgentSignerKeyType.Radix;
|
|
7509
|
+
key: string;
|
|
7510
|
+
suffix: string;
|
|
7250
7511
|
} | {
|
|
7251
7512
|
type: AgentSignerKeyType.Node;
|
|
7252
7513
|
} | undefined;
|
|
@@ -7382,6 +7643,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7382
7643
|
type: AgentSignerKeyType.Cosmos;
|
|
7383
7644
|
key: string;
|
|
7384
7645
|
prefix: string;
|
|
7646
|
+
} | {
|
|
7647
|
+
type: AgentSignerKeyType.Radix;
|
|
7648
|
+
key: string;
|
|
7649
|
+
suffix: string;
|
|
7385
7650
|
} | {
|
|
7386
7651
|
type: AgentSignerKeyType.Node;
|
|
7387
7652
|
} | undefined;
|
|
@@ -7517,6 +7782,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7517
7782
|
type: AgentSignerKeyType.Cosmos;
|
|
7518
7783
|
key: string;
|
|
7519
7784
|
prefix: string;
|
|
7785
|
+
} | {
|
|
7786
|
+
type: AgentSignerKeyType.Radix;
|
|
7787
|
+
key: string;
|
|
7788
|
+
suffix: string;
|
|
7520
7789
|
} | {
|
|
7521
7790
|
type: AgentSignerKeyType.Node;
|
|
7522
7791
|
} | undefined;
|
|
@@ -7577,6 +7846,18 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7577
7846
|
type: AgentSignerKeyType.Node;
|
|
7578
7847
|
}, {
|
|
7579
7848
|
type: AgentSignerKeyType.Node;
|
|
7849
|
+
}>, z.ZodObject<{
|
|
7850
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
7851
|
+
suffix: z.ZodString;
|
|
7852
|
+
key: z.ZodString;
|
|
7853
|
+
}, "strip", z.ZodTypeAny, {
|
|
7854
|
+
type: AgentSignerKeyType.Radix;
|
|
7855
|
+
key: string;
|
|
7856
|
+
suffix: string;
|
|
7857
|
+
}, {
|
|
7858
|
+
type: AgentSignerKeyType.Radix;
|
|
7859
|
+
key: string;
|
|
7860
|
+
suffix: string;
|
|
7580
7861
|
}>]>>;
|
|
7581
7862
|
log: z.ZodOptional<z.ZodObject<{
|
|
7582
7863
|
format: z.ZodOptional<z.ZodNativeEnum<typeof AgentLogFormat>>;
|
|
@@ -7629,6 +7910,18 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7629
7910
|
type: AgentSignerKeyType.Node;
|
|
7630
7911
|
}, {
|
|
7631
7912
|
type: AgentSignerKeyType.Node;
|
|
7913
|
+
}>, z.ZodObject<{
|
|
7914
|
+
type: z.ZodLiteral<AgentSignerKeyType.Radix>;
|
|
7915
|
+
suffix: z.ZodString;
|
|
7916
|
+
key: z.ZodString;
|
|
7917
|
+
}, "strip", z.ZodTypeAny, {
|
|
7918
|
+
type: AgentSignerKeyType.Radix;
|
|
7919
|
+
key: string;
|
|
7920
|
+
suffix: string;
|
|
7921
|
+
}, {
|
|
7922
|
+
type: AgentSignerKeyType.Radix;
|
|
7923
|
+
key: string;
|
|
7924
|
+
suffix: string;
|
|
7632
7925
|
}>]>;
|
|
7633
7926
|
checkpointSyncer: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7634
7927
|
type: z.ZodLiteral<"localStorage">;
|
|
@@ -7790,6 +8083,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7790
8083
|
type: AgentSignerKeyType.Cosmos;
|
|
7791
8084
|
key: string;
|
|
7792
8085
|
prefix: string;
|
|
8086
|
+
} | {
|
|
8087
|
+
type: AgentSignerKeyType.Radix;
|
|
8088
|
+
key: string;
|
|
8089
|
+
suffix: string;
|
|
7793
8090
|
} | {
|
|
7794
8091
|
type: AgentSignerKeyType.Node;
|
|
7795
8092
|
} | undefined;
|
|
@@ -7823,6 +8120,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7823
8120
|
type: AgentSignerKeyType.Cosmos;
|
|
7824
8121
|
key: string;
|
|
7825
8122
|
prefix: string;
|
|
8123
|
+
} | {
|
|
8124
|
+
type: AgentSignerKeyType.Radix;
|
|
8125
|
+
key: string;
|
|
8126
|
+
suffix: string;
|
|
7826
8127
|
} | {
|
|
7827
8128
|
type: AgentSignerKeyType.Node;
|
|
7828
8129
|
} | ({
|
|
@@ -7867,6 +8168,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7867
8168
|
type: AgentSignerKeyType.Cosmos;
|
|
7868
8169
|
key: string;
|
|
7869
8170
|
prefix: string;
|
|
8171
|
+
} | {
|
|
8172
|
+
type: AgentSignerKeyType.Radix;
|
|
8173
|
+
key: string;
|
|
8174
|
+
suffix: string;
|
|
7870
8175
|
} | {
|
|
7871
8176
|
type: AgentSignerKeyType.Node;
|
|
7872
8177
|
} | undefined;
|
|
@@ -7992,6 +8297,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
7992
8297
|
type: AgentSignerKeyType.Cosmos;
|
|
7993
8298
|
key: string;
|
|
7994
8299
|
prefix: string;
|
|
8300
|
+
} | {
|
|
8301
|
+
type: AgentSignerKeyType.Radix;
|
|
8302
|
+
key: string;
|
|
8303
|
+
suffix: string;
|
|
7995
8304
|
} | {
|
|
7996
8305
|
type: AgentSignerKeyType.Node;
|
|
7997
8306
|
} | undefined;
|
|
@@ -8025,6 +8334,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
8025
8334
|
type: AgentSignerKeyType.Cosmos;
|
|
8026
8335
|
key: string;
|
|
8027
8336
|
prefix: string;
|
|
8337
|
+
} | {
|
|
8338
|
+
type: AgentSignerKeyType.Radix;
|
|
8339
|
+
key: string;
|
|
8340
|
+
suffix: string;
|
|
8028
8341
|
} | {
|
|
8029
8342
|
type: AgentSignerKeyType.Node;
|
|
8030
8343
|
} | ({
|
|
@@ -8069,6 +8382,10 @@ export declare const ValidatorAgentConfigSchema: z.ZodObject<{
|
|
|
8069
8382
|
type: AgentSignerKeyType.Cosmos;
|
|
8070
8383
|
key: string;
|
|
8071
8384
|
prefix: string;
|
|
8385
|
+
} | {
|
|
8386
|
+
type: AgentSignerKeyType.Radix;
|
|
8387
|
+
key: string;
|
|
8388
|
+
suffix: string;
|
|
8072
8389
|
} | {
|
|
8073
8390
|
type: AgentSignerKeyType.Node;
|
|
8074
8391
|
} | undefined;
|