@hyperlane-xyz/sdk 14.1.0 → 14.2.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/ccip/consts.d.ts.map +1 -1
- package/dist/ccip/consts.js +0 -20
- package/dist/ccip/consts.js.map +1 -1
- package/dist/consts/multisigIsm.d.ts.map +1 -1
- package/dist/consts/multisigIsm.js +27 -22
- package/dist/consts/multisigIsm.js.map +1 -1
- package/dist/core/CosmosNativeCoreModule.d.ts +5 -5
- package/dist/core/CosmosNativeCoreModule.d.ts.map +1 -1
- package/dist/core/CosmosNativeCoreModule.js +10 -10
- package/dist/core/CosmosNativeCoreModule.js.map +1 -1
- package/dist/core/EvmCoreModule.d.ts +3 -1
- package/dist/core/EvmCoreModule.d.ts.map +1 -1
- package/dist/core/EvmCoreModule.hardhat-test.js +85 -1
- package/dist/core/EvmCoreModule.hardhat-test.js.map +1 -1
- package/dist/core/EvmCoreModule.js +32 -2
- package/dist/core/EvmCoreModule.js.map +1 -1
- package/dist/core/HyperlaneRelayer.d.ts +43 -0
- package/dist/core/HyperlaneRelayer.d.ts.map +1 -1
- package/dist/core/types.d.ts +724 -1
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js.map +1 -1
- package/dist/deploy/proxy.d.ts +8 -0
- package/dist/deploy/proxy.d.ts.map +1 -1
- package/dist/deploy/proxy.js +21 -0
- package/dist/deploy/proxy.js.map +1 -1
- package/dist/hook/CosmosNativeHookModule.d.ts +3 -2
- package/dist/hook/CosmosNativeHookModule.d.ts.map +1 -1
- package/dist/hook/CosmosNativeHookModule.js +10 -10
- package/dist/hook/CosmosNativeHookModule.js.map +1 -1
- package/dist/hook/CosmosNativeHookReader.d.ts +2 -2
- package/dist/hook/CosmosNativeHookReader.d.ts.map +1 -1
- package/dist/hook/EvmHookModule.d.ts +6 -15
- package/dist/hook/EvmHookModule.d.ts.map +1 -1
- package/dist/hook/EvmHookModule.js +74 -71
- package/dist/hook/EvmHookModule.js.map +1 -1
- package/dist/hook/types.d.ts +318 -0
- package/dist/hook/types.d.ts.map +1 -1
- package/dist/hook/types.js +2 -2
- package/dist/hook/types.js.map +1 -1
- package/dist/hook/updates.d.ts +28 -0
- package/dist/hook/updates.d.ts.map +1 -0
- package/dist/hook/updates.js +34 -0
- package/dist/hook/updates.js.map +1 -0
- package/dist/ica/types.d.ts +86 -0
- package/dist/ica/types.d.ts.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/ism/CosmosNativeIsmModule.d.ts +3 -2
- package/dist/ism/CosmosNativeIsmModule.d.ts.map +1 -1
- package/dist/ism/CosmosNativeIsmModule.js +12 -12
- package/dist/ism/CosmosNativeIsmModule.js.map +1 -1
- package/dist/router/types.d.ts +129 -0
- package/dist/router/types.d.ts.map +1 -1
- package/dist/token/CosmosNativeWarpModule.d.ts +95 -0
- package/dist/token/CosmosNativeWarpModule.d.ts.map +1 -0
- package/dist/token/CosmosNativeWarpModule.js +296 -0
- package/dist/token/CosmosNativeWarpModule.js.map +1 -0
- package/dist/token/EvmERC20WarpModule.d.ts +0 -17
- package/dist/token/EvmERC20WarpModule.d.ts.map +1 -1
- package/dist/token/EvmERC20WarpModule.js +19 -71
- package/dist/token/EvmERC20WarpModule.js.map +1 -1
- package/dist/token/adapters/StarknetTokenAdapter.js +2 -2
- package/dist/token/adapters/StarknetTokenAdapter.js.map +1 -1
- package/dist/token/cosmosnativeDeploy.d.ts +16 -0
- package/dist/token/cosmosnativeDeploy.d.ts.map +1 -0
- package/dist/token/cosmosnativeDeploy.js +58 -0
- package/dist/token/cosmosnativeDeploy.js.map +1 -0
- package/dist/token/deploy.d.ts.map +1 -1
- package/dist/token/deploy.js +1 -1
- package/dist/token/deploy.js.map +1 -1
- package/dist/token/types.d.ts +233 -1
- package/dist/token/types.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/token/types.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const WarpRouteDeployConfigSchemaErrors: {
|
|
|
9
9
|
NO_SYNTHETIC_ONLY: string;
|
|
10
10
|
};
|
|
11
11
|
export declare const contractVersionMatchesDependency: (version: string) => boolean;
|
|
12
|
-
export declare const VERSION_ERROR_MESSAGE = "Contract version must match the @hyperlane-xyz/core dependency version (8.1.
|
|
12
|
+
export declare const VERSION_ERROR_MESSAGE = "Contract version must match the @hyperlane-xyz/core dependency version (8.1.1)";
|
|
13
13
|
export declare const TokenMetadataSchema: z.ZodObject<{
|
|
14
14
|
name: z.ZodString;
|
|
15
15
|
symbol: z.ZodString;
|
|
@@ -1834,14 +1834,37 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1834
1834
|
gasPrice: z.ZodString;
|
|
1835
1835
|
tokenExchangeRate: z.ZodString;
|
|
1836
1836
|
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
1837
|
+
typicalCost: z.ZodOptional<z.ZodObject<{
|
|
1838
|
+
handleGasAmount: z.ZodNumber;
|
|
1839
|
+
totalGasAmount: z.ZodNumber;
|
|
1840
|
+
totalUsdCost: z.ZodNumber;
|
|
1841
|
+
}, "strip", z.ZodTypeAny, {
|
|
1842
|
+
handleGasAmount: number;
|
|
1843
|
+
totalGasAmount: number;
|
|
1844
|
+
totalUsdCost: number;
|
|
1845
|
+
}, {
|
|
1846
|
+
handleGasAmount: number;
|
|
1847
|
+
totalGasAmount: number;
|
|
1848
|
+
totalUsdCost: number;
|
|
1849
|
+
}>>;
|
|
1837
1850
|
}, "strip", z.ZodTypeAny, {
|
|
1838
1851
|
gasPrice: string;
|
|
1839
1852
|
tokenExchangeRate: string;
|
|
1840
1853
|
tokenDecimals?: number | undefined;
|
|
1854
|
+
typicalCost?: {
|
|
1855
|
+
handleGasAmount: number;
|
|
1856
|
+
totalGasAmount: number;
|
|
1857
|
+
totalUsdCost: number;
|
|
1858
|
+
} | undefined;
|
|
1841
1859
|
}, {
|
|
1842
1860
|
gasPrice: string;
|
|
1843
1861
|
tokenExchangeRate: string;
|
|
1844
1862
|
tokenDecimals?: number | undefined;
|
|
1863
|
+
typicalCost?: {
|
|
1864
|
+
handleGasAmount: number;
|
|
1865
|
+
totalGasAmount: number;
|
|
1866
|
+
totalUsdCost: number;
|
|
1867
|
+
} | undefined;
|
|
1845
1868
|
}>>;
|
|
1846
1869
|
}, "strip", z.ZodTypeAny, {
|
|
1847
1870
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -1853,6 +1876,11 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1853
1876
|
gasPrice: string;
|
|
1854
1877
|
tokenExchangeRate: string;
|
|
1855
1878
|
tokenDecimals?: number | undefined;
|
|
1879
|
+
typicalCost?: {
|
|
1880
|
+
handleGasAmount: number;
|
|
1881
|
+
totalGasAmount: number;
|
|
1882
|
+
totalUsdCost: number;
|
|
1883
|
+
} | undefined;
|
|
1856
1884
|
}>;
|
|
1857
1885
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1858
1886
|
}, {
|
|
@@ -1865,6 +1893,11 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
1865
1893
|
gasPrice: string;
|
|
1866
1894
|
tokenExchangeRate: string;
|
|
1867
1895
|
tokenDecimals?: number | undefined;
|
|
1896
|
+
typicalCost?: {
|
|
1897
|
+
handleGasAmount: number;
|
|
1898
|
+
totalGasAmount: number;
|
|
1899
|
+
totalUsdCost: number;
|
|
1900
|
+
} | undefined;
|
|
1868
1901
|
}>;
|
|
1869
1902
|
ownerOverrides?: Record<string, string> | undefined;
|
|
1870
1903
|
}>, z.ZodType<import("../hook/types.js").DomainRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").DomainRoutingHookConfig>, z.ZodType<import("../hook/types.js").FallbackRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").FallbackRoutingHookConfig>, z.ZodType<import("../hook/types.js").AmountRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").AmountRoutingHookConfig>, z.ZodType<import("../hook/types.js").AggregationHookConfig, z.ZodTypeDef, import("../hook/types.js").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -2071,6 +2104,11 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2071
2104
|
gasPrice: string;
|
|
2072
2105
|
tokenExchangeRate: string;
|
|
2073
2106
|
tokenDecimals?: number | undefined;
|
|
2107
|
+
typicalCost?: {
|
|
2108
|
+
handleGasAmount: number;
|
|
2109
|
+
totalGasAmount: number;
|
|
2110
|
+
totalUsdCost: number;
|
|
2111
|
+
} | undefined;
|
|
2074
2112
|
}>;
|
|
2075
2113
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2076
2114
|
} | {
|
|
@@ -2170,6 +2208,11 @@ export declare const HypTokenRouterConfigSchema: z.ZodIntersection<z.ZodIntersec
|
|
|
2170
2208
|
gasPrice: string;
|
|
2171
2209
|
tokenExchangeRate: string;
|
|
2172
2210
|
tokenDecimals?: number | undefined;
|
|
2211
|
+
typicalCost?: {
|
|
2212
|
+
handleGasAmount: number;
|
|
2213
|
+
totalGasAmount: number;
|
|
2214
|
+
totalUsdCost: number;
|
|
2215
|
+
} | undefined;
|
|
2173
2216
|
}>;
|
|
2174
2217
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2175
2218
|
} | {
|
|
@@ -2803,14 +2846,37 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2803
2846
|
gasPrice: z.ZodString;
|
|
2804
2847
|
tokenExchangeRate: z.ZodString;
|
|
2805
2848
|
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
2849
|
+
typicalCost: z.ZodOptional<z.ZodObject<{
|
|
2850
|
+
handleGasAmount: z.ZodNumber;
|
|
2851
|
+
totalGasAmount: z.ZodNumber;
|
|
2852
|
+
totalUsdCost: z.ZodNumber;
|
|
2853
|
+
}, "strip", z.ZodTypeAny, {
|
|
2854
|
+
handleGasAmount: number;
|
|
2855
|
+
totalGasAmount: number;
|
|
2856
|
+
totalUsdCost: number;
|
|
2857
|
+
}, {
|
|
2858
|
+
handleGasAmount: number;
|
|
2859
|
+
totalGasAmount: number;
|
|
2860
|
+
totalUsdCost: number;
|
|
2861
|
+
}>>;
|
|
2806
2862
|
}, "strip", z.ZodTypeAny, {
|
|
2807
2863
|
gasPrice: string;
|
|
2808
2864
|
tokenExchangeRate: string;
|
|
2809
2865
|
tokenDecimals?: number | undefined;
|
|
2866
|
+
typicalCost?: {
|
|
2867
|
+
handleGasAmount: number;
|
|
2868
|
+
totalGasAmount: number;
|
|
2869
|
+
totalUsdCost: number;
|
|
2870
|
+
} | undefined;
|
|
2810
2871
|
}, {
|
|
2811
2872
|
gasPrice: string;
|
|
2812
2873
|
tokenExchangeRate: string;
|
|
2813
2874
|
tokenDecimals?: number | undefined;
|
|
2875
|
+
typicalCost?: {
|
|
2876
|
+
handleGasAmount: number;
|
|
2877
|
+
totalGasAmount: number;
|
|
2878
|
+
totalUsdCost: number;
|
|
2879
|
+
} | undefined;
|
|
2814
2880
|
}>>;
|
|
2815
2881
|
}, "strip", z.ZodTypeAny, {
|
|
2816
2882
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -2822,6 +2888,11 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2822
2888
|
gasPrice: string;
|
|
2823
2889
|
tokenExchangeRate: string;
|
|
2824
2890
|
tokenDecimals?: number | undefined;
|
|
2891
|
+
typicalCost?: {
|
|
2892
|
+
handleGasAmount: number;
|
|
2893
|
+
totalGasAmount: number;
|
|
2894
|
+
totalUsdCost: number;
|
|
2895
|
+
} | undefined;
|
|
2825
2896
|
}>;
|
|
2826
2897
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2827
2898
|
}, {
|
|
@@ -2834,6 +2905,11 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
2834
2905
|
gasPrice: string;
|
|
2835
2906
|
tokenExchangeRate: string;
|
|
2836
2907
|
tokenDecimals?: number | undefined;
|
|
2908
|
+
typicalCost?: {
|
|
2909
|
+
handleGasAmount: number;
|
|
2910
|
+
totalGasAmount: number;
|
|
2911
|
+
totalUsdCost: number;
|
|
2912
|
+
} | undefined;
|
|
2837
2913
|
}>;
|
|
2838
2914
|
ownerOverrides?: Record<string, string> | undefined;
|
|
2839
2915
|
}>, z.ZodType<import("../hook/types.js").DomainRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").DomainRoutingHookConfig>, z.ZodType<import("../hook/types.js").FallbackRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").FallbackRoutingHookConfig>, z.ZodType<import("../hook/types.js").AmountRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").AmountRoutingHookConfig>, z.ZodType<import("../hook/types.js").AggregationHookConfig, z.ZodTypeDef, import("../hook/types.js").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -3040,6 +3116,11 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3040
3116
|
gasPrice: string;
|
|
3041
3117
|
tokenExchangeRate: string;
|
|
3042
3118
|
tokenDecimals?: number | undefined;
|
|
3119
|
+
typicalCost?: {
|
|
3120
|
+
handleGasAmount: number;
|
|
3121
|
+
totalGasAmount: number;
|
|
3122
|
+
totalUsdCost: number;
|
|
3123
|
+
} | undefined;
|
|
3043
3124
|
}>;
|
|
3044
3125
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3045
3126
|
} | {
|
|
@@ -3139,6 +3220,11 @@ export declare const HypTokenRouterConfigMailboxOptionalSchema: z.ZodIntersectio
|
|
|
3139
3220
|
gasPrice: string;
|
|
3140
3221
|
tokenExchangeRate: string;
|
|
3141
3222
|
tokenDecimals?: number | undefined;
|
|
3223
|
+
typicalCost?: {
|
|
3224
|
+
handleGasAmount: number;
|
|
3225
|
+
totalGasAmount: number;
|
|
3226
|
+
totalUsdCost: number;
|
|
3227
|
+
} | undefined;
|
|
3142
3228
|
}>;
|
|
3143
3229
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3144
3230
|
} | {
|
|
@@ -3768,14 +3854,37 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3768
3854
|
gasPrice: z.ZodString;
|
|
3769
3855
|
tokenExchangeRate: z.ZodString;
|
|
3770
3856
|
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
3857
|
+
typicalCost: z.ZodOptional<z.ZodObject<{
|
|
3858
|
+
handleGasAmount: z.ZodNumber;
|
|
3859
|
+
totalGasAmount: z.ZodNumber;
|
|
3860
|
+
totalUsdCost: z.ZodNumber;
|
|
3861
|
+
}, "strip", z.ZodTypeAny, {
|
|
3862
|
+
handleGasAmount: number;
|
|
3863
|
+
totalGasAmount: number;
|
|
3864
|
+
totalUsdCost: number;
|
|
3865
|
+
}, {
|
|
3866
|
+
handleGasAmount: number;
|
|
3867
|
+
totalGasAmount: number;
|
|
3868
|
+
totalUsdCost: number;
|
|
3869
|
+
}>>;
|
|
3771
3870
|
}, "strip", z.ZodTypeAny, {
|
|
3772
3871
|
gasPrice: string;
|
|
3773
3872
|
tokenExchangeRate: string;
|
|
3774
3873
|
tokenDecimals?: number | undefined;
|
|
3874
|
+
typicalCost?: {
|
|
3875
|
+
handleGasAmount: number;
|
|
3876
|
+
totalGasAmount: number;
|
|
3877
|
+
totalUsdCost: number;
|
|
3878
|
+
} | undefined;
|
|
3775
3879
|
}, {
|
|
3776
3880
|
gasPrice: string;
|
|
3777
3881
|
tokenExchangeRate: string;
|
|
3778
3882
|
tokenDecimals?: number | undefined;
|
|
3883
|
+
typicalCost?: {
|
|
3884
|
+
handleGasAmount: number;
|
|
3885
|
+
totalGasAmount: number;
|
|
3886
|
+
totalUsdCost: number;
|
|
3887
|
+
} | undefined;
|
|
3779
3888
|
}>>;
|
|
3780
3889
|
}, "strip", z.ZodTypeAny, {
|
|
3781
3890
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -3787,6 +3896,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3787
3896
|
gasPrice: string;
|
|
3788
3897
|
tokenExchangeRate: string;
|
|
3789
3898
|
tokenDecimals?: number | undefined;
|
|
3899
|
+
typicalCost?: {
|
|
3900
|
+
handleGasAmount: number;
|
|
3901
|
+
totalGasAmount: number;
|
|
3902
|
+
totalUsdCost: number;
|
|
3903
|
+
} | undefined;
|
|
3790
3904
|
}>;
|
|
3791
3905
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3792
3906
|
}, {
|
|
@@ -3799,6 +3913,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
3799
3913
|
gasPrice: string;
|
|
3800
3914
|
tokenExchangeRate: string;
|
|
3801
3915
|
tokenDecimals?: number | undefined;
|
|
3916
|
+
typicalCost?: {
|
|
3917
|
+
handleGasAmount: number;
|
|
3918
|
+
totalGasAmount: number;
|
|
3919
|
+
totalUsdCost: number;
|
|
3920
|
+
} | undefined;
|
|
3802
3921
|
}>;
|
|
3803
3922
|
ownerOverrides?: Record<string, string> | undefined;
|
|
3804
3923
|
}>, z.ZodType<import("../hook/types.js").DomainRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").DomainRoutingHookConfig>, z.ZodType<import("../hook/types.js").FallbackRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").FallbackRoutingHookConfig>, z.ZodType<import("../hook/types.js").AmountRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").AmountRoutingHookConfig>, z.ZodType<import("../hook/types.js").AggregationHookConfig, z.ZodTypeDef, import("../hook/types.js").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -4005,6 +4124,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4005
4124
|
gasPrice: string;
|
|
4006
4125
|
tokenExchangeRate: string;
|
|
4007
4126
|
tokenDecimals?: number | undefined;
|
|
4127
|
+
typicalCost?: {
|
|
4128
|
+
handleGasAmount: number;
|
|
4129
|
+
totalGasAmount: number;
|
|
4130
|
+
totalUsdCost: number;
|
|
4131
|
+
} | undefined;
|
|
4008
4132
|
}>;
|
|
4009
4133
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4010
4134
|
} | {
|
|
@@ -4104,6 +4228,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4104
4228
|
gasPrice: string;
|
|
4105
4229
|
tokenExchangeRate: string;
|
|
4106
4230
|
tokenDecimals?: number | undefined;
|
|
4231
|
+
typicalCost?: {
|
|
4232
|
+
handleGasAmount: number;
|
|
4233
|
+
totalGasAmount: number;
|
|
4234
|
+
totalUsdCost: number;
|
|
4235
|
+
} | undefined;
|
|
4107
4236
|
}>;
|
|
4108
4237
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4109
4238
|
} | {
|
|
@@ -4338,6 +4467,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4338
4467
|
gasPrice: string;
|
|
4339
4468
|
tokenExchangeRate: string;
|
|
4340
4469
|
tokenDecimals?: number | undefined;
|
|
4470
|
+
typicalCost?: {
|
|
4471
|
+
handleGasAmount: number;
|
|
4472
|
+
totalGasAmount: number;
|
|
4473
|
+
totalUsdCost: number;
|
|
4474
|
+
} | undefined;
|
|
4341
4475
|
}>;
|
|
4342
4476
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4343
4477
|
} | {
|
|
@@ -4561,6 +4695,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4561
4695
|
gasPrice: string;
|
|
4562
4696
|
tokenExchangeRate: string;
|
|
4563
4697
|
tokenDecimals?: number | undefined;
|
|
4698
|
+
typicalCost?: {
|
|
4699
|
+
handleGasAmount: number;
|
|
4700
|
+
totalGasAmount: number;
|
|
4701
|
+
totalUsdCost: number;
|
|
4702
|
+
} | undefined;
|
|
4564
4703
|
}>;
|
|
4565
4704
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4566
4705
|
} | {
|
|
@@ -4789,6 +4928,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
4789
4928
|
gasPrice: string;
|
|
4790
4929
|
tokenExchangeRate: string;
|
|
4791
4930
|
tokenDecimals?: number | undefined;
|
|
4931
|
+
typicalCost?: {
|
|
4932
|
+
handleGasAmount: number;
|
|
4933
|
+
totalGasAmount: number;
|
|
4934
|
+
totalUsdCost: number;
|
|
4935
|
+
} | undefined;
|
|
4792
4936
|
}>;
|
|
4793
4937
|
ownerOverrides?: Record<string, string> | undefined;
|
|
4794
4938
|
} | {
|
|
@@ -5012,6 +5156,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5012
5156
|
gasPrice: string;
|
|
5013
5157
|
tokenExchangeRate: string;
|
|
5014
5158
|
tokenDecimals?: number | undefined;
|
|
5159
|
+
typicalCost?: {
|
|
5160
|
+
handleGasAmount: number;
|
|
5161
|
+
totalGasAmount: number;
|
|
5162
|
+
totalUsdCost: number;
|
|
5163
|
+
} | undefined;
|
|
5015
5164
|
}>;
|
|
5016
5165
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5017
5166
|
} | {
|
|
@@ -5240,6 +5389,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5240
5389
|
gasPrice: string;
|
|
5241
5390
|
tokenExchangeRate: string;
|
|
5242
5391
|
tokenDecimals?: number | undefined;
|
|
5392
|
+
typicalCost?: {
|
|
5393
|
+
handleGasAmount: number;
|
|
5394
|
+
totalGasAmount: number;
|
|
5395
|
+
totalUsdCost: number;
|
|
5396
|
+
} | undefined;
|
|
5243
5397
|
}>;
|
|
5244
5398
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5245
5399
|
} | {
|
|
@@ -5463,6 +5617,11 @@ export declare const WarpRouteDeployConfigSchema: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
5463
5617
|
gasPrice: string;
|
|
5464
5618
|
tokenExchangeRate: string;
|
|
5465
5619
|
tokenDecimals?: number | undefined;
|
|
5620
|
+
typicalCost?: {
|
|
5621
|
+
handleGasAmount: number;
|
|
5622
|
+
totalGasAmount: number;
|
|
5623
|
+
totalUsdCost: number;
|
|
5624
|
+
} | undefined;
|
|
5466
5625
|
}>;
|
|
5467
5626
|
ownerOverrides?: Record<string, string> | undefined;
|
|
5468
5627
|
} | {
|
|
@@ -6086,14 +6245,37 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6086
6245
|
gasPrice: z.ZodString;
|
|
6087
6246
|
tokenExchangeRate: z.ZodString;
|
|
6088
6247
|
tokenDecimals: z.ZodOptional<z.ZodNumber>;
|
|
6248
|
+
typicalCost: z.ZodOptional<z.ZodObject<{
|
|
6249
|
+
handleGasAmount: z.ZodNumber;
|
|
6250
|
+
totalGasAmount: z.ZodNumber;
|
|
6251
|
+
totalUsdCost: z.ZodNumber;
|
|
6252
|
+
}, "strip", z.ZodTypeAny, {
|
|
6253
|
+
handleGasAmount: number;
|
|
6254
|
+
totalGasAmount: number;
|
|
6255
|
+
totalUsdCost: number;
|
|
6256
|
+
}, {
|
|
6257
|
+
handleGasAmount: number;
|
|
6258
|
+
totalGasAmount: number;
|
|
6259
|
+
totalUsdCost: number;
|
|
6260
|
+
}>>;
|
|
6089
6261
|
}, "strip", z.ZodTypeAny, {
|
|
6090
6262
|
gasPrice: string;
|
|
6091
6263
|
tokenExchangeRate: string;
|
|
6092
6264
|
tokenDecimals?: number | undefined;
|
|
6265
|
+
typicalCost?: {
|
|
6266
|
+
handleGasAmount: number;
|
|
6267
|
+
totalGasAmount: number;
|
|
6268
|
+
totalUsdCost: number;
|
|
6269
|
+
} | undefined;
|
|
6093
6270
|
}, {
|
|
6094
6271
|
gasPrice: string;
|
|
6095
6272
|
tokenExchangeRate: string;
|
|
6096
6273
|
tokenDecimals?: number | undefined;
|
|
6274
|
+
typicalCost?: {
|
|
6275
|
+
handleGasAmount: number;
|
|
6276
|
+
totalGasAmount: number;
|
|
6277
|
+
totalUsdCost: number;
|
|
6278
|
+
} | undefined;
|
|
6097
6279
|
}>>;
|
|
6098
6280
|
}, "strip", z.ZodTypeAny, {
|
|
6099
6281
|
type: HookType.INTERCHAIN_GAS_PAYMASTER;
|
|
@@ -6105,6 +6287,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6105
6287
|
gasPrice: string;
|
|
6106
6288
|
tokenExchangeRate: string;
|
|
6107
6289
|
tokenDecimals?: number | undefined;
|
|
6290
|
+
typicalCost?: {
|
|
6291
|
+
handleGasAmount: number;
|
|
6292
|
+
totalGasAmount: number;
|
|
6293
|
+
totalUsdCost: number;
|
|
6294
|
+
} | undefined;
|
|
6108
6295
|
}>;
|
|
6109
6296
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6110
6297
|
}, {
|
|
@@ -6117,6 +6304,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6117
6304
|
gasPrice: string;
|
|
6118
6305
|
tokenExchangeRate: string;
|
|
6119
6306
|
tokenDecimals?: number | undefined;
|
|
6307
|
+
typicalCost?: {
|
|
6308
|
+
handleGasAmount: number;
|
|
6309
|
+
totalGasAmount: number;
|
|
6310
|
+
totalUsdCost: number;
|
|
6311
|
+
} | undefined;
|
|
6120
6312
|
}>;
|
|
6121
6313
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6122
6314
|
}>, z.ZodType<import("../hook/types.js").DomainRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").DomainRoutingHookConfig>, z.ZodType<import("../hook/types.js").FallbackRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").FallbackRoutingHookConfig>, z.ZodType<import("../hook/types.js").AmountRoutingHookConfig, z.ZodTypeDef, import("../hook/types.js").AmountRoutingHookConfig>, z.ZodType<import("../hook/types.js").AggregationHookConfig, z.ZodTypeDef, import("../hook/types.js").AggregationHookConfig>, z.ZodObject<{
|
|
@@ -6323,6 +6515,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6323
6515
|
gasPrice: string;
|
|
6324
6516
|
tokenExchangeRate: string;
|
|
6325
6517
|
tokenDecimals?: number | undefined;
|
|
6518
|
+
typicalCost?: {
|
|
6519
|
+
handleGasAmount: number;
|
|
6520
|
+
totalGasAmount: number;
|
|
6521
|
+
totalUsdCost: number;
|
|
6522
|
+
} | undefined;
|
|
6326
6523
|
}>;
|
|
6327
6524
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6328
6525
|
} | {
|
|
@@ -6422,6 +6619,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6422
6619
|
gasPrice: string;
|
|
6423
6620
|
tokenExchangeRate: string;
|
|
6424
6621
|
tokenDecimals?: number | undefined;
|
|
6622
|
+
typicalCost?: {
|
|
6623
|
+
handleGasAmount: number;
|
|
6624
|
+
totalGasAmount: number;
|
|
6625
|
+
totalUsdCost: number;
|
|
6626
|
+
} | undefined;
|
|
6425
6627
|
}>;
|
|
6426
6628
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6427
6629
|
} | {
|
|
@@ -6656,6 +6858,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6656
6858
|
gasPrice: string;
|
|
6657
6859
|
tokenExchangeRate: string;
|
|
6658
6860
|
tokenDecimals?: number | undefined;
|
|
6861
|
+
typicalCost?: {
|
|
6862
|
+
handleGasAmount: number;
|
|
6863
|
+
totalGasAmount: number;
|
|
6864
|
+
totalUsdCost: number;
|
|
6865
|
+
} | undefined;
|
|
6659
6866
|
}>;
|
|
6660
6867
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6661
6868
|
} | {
|
|
@@ -6879,6 +7086,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
6879
7086
|
gasPrice: string;
|
|
6880
7087
|
tokenExchangeRate: string;
|
|
6881
7088
|
tokenDecimals?: number | undefined;
|
|
7089
|
+
typicalCost?: {
|
|
7090
|
+
handleGasAmount: number;
|
|
7091
|
+
totalGasAmount: number;
|
|
7092
|
+
totalUsdCost: number;
|
|
7093
|
+
} | undefined;
|
|
6882
7094
|
}>;
|
|
6883
7095
|
ownerOverrides?: Record<string, string> | undefined;
|
|
6884
7096
|
} | {
|
|
@@ -7107,6 +7319,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7107
7319
|
gasPrice: string;
|
|
7108
7320
|
tokenExchangeRate: string;
|
|
7109
7321
|
tokenDecimals?: number | undefined;
|
|
7322
|
+
typicalCost?: {
|
|
7323
|
+
handleGasAmount: number;
|
|
7324
|
+
totalGasAmount: number;
|
|
7325
|
+
totalUsdCost: number;
|
|
7326
|
+
} | undefined;
|
|
7110
7327
|
}>;
|
|
7111
7328
|
ownerOverrides?: Record<string, string> | undefined;
|
|
7112
7329
|
} | {
|
|
@@ -7330,6 +7547,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7330
7547
|
gasPrice: string;
|
|
7331
7548
|
tokenExchangeRate: string;
|
|
7332
7549
|
tokenDecimals?: number | undefined;
|
|
7550
|
+
typicalCost?: {
|
|
7551
|
+
handleGasAmount: number;
|
|
7552
|
+
totalGasAmount: number;
|
|
7553
|
+
totalUsdCost: number;
|
|
7554
|
+
} | undefined;
|
|
7333
7555
|
}>;
|
|
7334
7556
|
ownerOverrides?: Record<string, string> | undefined;
|
|
7335
7557
|
} | {
|
|
@@ -7558,6 +7780,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7558
7780
|
gasPrice: string;
|
|
7559
7781
|
tokenExchangeRate: string;
|
|
7560
7782
|
tokenDecimals?: number | undefined;
|
|
7783
|
+
typicalCost?: {
|
|
7784
|
+
handleGasAmount: number;
|
|
7785
|
+
totalGasAmount: number;
|
|
7786
|
+
totalUsdCost: number;
|
|
7787
|
+
} | undefined;
|
|
7561
7788
|
}>;
|
|
7562
7789
|
ownerOverrides?: Record<string, string> | undefined;
|
|
7563
7790
|
} | {
|
|
@@ -7781,6 +8008,11 @@ export declare const WarpRouteDeployConfigMailboxRequiredSchema: z.ZodIntersecti
|
|
|
7781
8008
|
gasPrice: string;
|
|
7782
8009
|
tokenExchangeRate: string;
|
|
7783
8010
|
tokenDecimals?: number | undefined;
|
|
8011
|
+
typicalCost?: {
|
|
8012
|
+
handleGasAmount: number;
|
|
8013
|
+
totalGasAmount: number;
|
|
8014
|
+
totalUsdCost: number;
|
|
8015
|
+
} | undefined;
|
|
7784
8016
|
}>;
|
|
7785
8017
|
ownerOverrides?: Record<string, string> | undefined;
|
|
7786
8018
|
} | {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/token/types.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2FpC,CAAC;AAEL,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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/token/types.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/sdk",
|
|
3
3
|
"description": "The official SDK for the Hyperlane Network",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.2.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@arbitrum/sdk": "^4.0.0",
|
|
7
7
|
"@aws-sdk/client-s3": "^3.577.0",
|
|
8
8
|
"@chain-registry/types": "^0.50.122",
|
|
9
9
|
"@cosmjs/cosmwasm-stargate": "^0.32.4",
|
|
10
10
|
"@cosmjs/stargate": "^0.32.4",
|
|
11
|
-
"@hyperlane-xyz/core": "8.1.
|
|
12
|
-
"@hyperlane-xyz/cosmos-sdk": "14.
|
|
13
|
-
"@hyperlane-xyz/starknet-core": "14.
|
|
14
|
-
"@hyperlane-xyz/utils": "14.
|
|
11
|
+
"@hyperlane-xyz/core": "8.1.1",
|
|
12
|
+
"@hyperlane-xyz/cosmos-sdk": "14.2.0",
|
|
13
|
+
"@hyperlane-xyz/starknet-core": "14.2.0",
|
|
14
|
+
"@hyperlane-xyz/utils": "14.2.0",
|
|
15
15
|
"@safe-global/api-kit": "1.3.0",
|
|
16
16
|
"@safe-global/protocol-kit": "1.3.0",
|
|
17
17
|
"@safe-global/safe-core-sdk-types": "2.3.0",
|