@hyperbridge/sdk 2.6.0 → 2.7.2
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/browser/index.d.ts +108 -11
- package/dist/browser/index.js +209 -69
- package/dist/browser/index.js.map +1 -1
- package/dist/node/{IntentGatewayV2-DuSwlT02.d.cts → IntentGatewayV2-MxUcNZNs.d.cts} +68 -3
- package/dist/node/{IntentGatewayV2-DuSwlT02.d.ts → IntentGatewayV2-MxUcNZNs.d.ts} +68 -3
- package/dist/node/index.cjs +209 -69
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.d.cts +43 -11
- package/dist/node/index.d.ts +43 -11
- package/dist/node/index.js +209 -69
- package/dist/node/index.js.map +1 -1
- package/dist/node/intents-helpers.d.cts +2 -2
- package/dist/node/intents-helpers.d.ts +2 -2
- package/package.json +1 -1
|
@@ -893,6 +893,14 @@ interface UniswapV4PoolConfigData {
|
|
|
893
893
|
tickSpacing: number;
|
|
894
894
|
hooks?: `0x${string}`;
|
|
895
895
|
}
|
|
896
|
+
/** A known ERC-4626 vault fillers can use as a stablecoin treasury. */
|
|
897
|
+
interface Erc4626VaultConfigData {
|
|
898
|
+
/** Display label, e.g. "Aave stataUSDC" */
|
|
899
|
+
label: string;
|
|
900
|
+
address: `0x${string}`;
|
|
901
|
+
/** Underlying asset symbol; the on-chain vault resolves the address. */
|
|
902
|
+
asset: ConfiguredAssetSymbol;
|
|
903
|
+
}
|
|
896
904
|
interface ChainConfigData {
|
|
897
905
|
chainId: number;
|
|
898
906
|
stateMachineId: Chains;
|
|
@@ -909,6 +917,7 @@ interface ChainConfigData {
|
|
|
909
917
|
EURC?: string;
|
|
910
918
|
XSGD?: string;
|
|
911
919
|
TRYB?: string;
|
|
920
|
+
USDR?: string;
|
|
912
921
|
};
|
|
913
922
|
tokenDecimals?: {
|
|
914
923
|
USDC: number;
|
|
@@ -971,6 +980,8 @@ interface ChainConfigData {
|
|
|
971
980
|
coingeckoId: string;
|
|
972
981
|
popularTokens?: string[];
|
|
973
982
|
uniswapV4Pools?: UniswapV4PoolConfigData[];
|
|
983
|
+
/** Known ERC-4626 treasury vaults on this chain */
|
|
984
|
+
erc4626Vaults?: Erc4626VaultConfigData[];
|
|
974
985
|
/** LayerZero Endpoint ID for cross-chain messaging */
|
|
975
986
|
layerZeroEid?: number;
|
|
976
987
|
}
|
|
@@ -1019,6 +1030,14 @@ declare class ChainConfigService {
|
|
|
1019
1030
|
getCNgnDecimals(chain: string): number | undefined;
|
|
1020
1031
|
getExtAsset(chain: string): HexString | undefined;
|
|
1021
1032
|
getExtDecimals(chain: string): number | undefined;
|
|
1033
|
+
/** Configured exotic (non-USD) tokens on a chain, for selection UIs. EXT is a test asset and is not offered. */
|
|
1034
|
+
getKnownExoticTokens(chain: string): Array<{
|
|
1035
|
+
symbol: string;
|
|
1036
|
+
address: HexString;
|
|
1037
|
+
decimals?: number;
|
|
1038
|
+
}>;
|
|
1039
|
+
/** Known ERC-4626 treasury vaults on a chain, for selection UIs. */
|
|
1040
|
+
getKnownVaults(chain: string): Erc4626VaultConfigData[];
|
|
1022
1041
|
getChainId(chain: string): number;
|
|
1023
1042
|
getConsensusStateId(chain: string): string;
|
|
1024
1043
|
getHyperbridgeChainId(): number;
|
|
@@ -1191,7 +1210,10 @@ declare class SubstrateChain implements IChain {
|
|
|
1191
1210
|
*/
|
|
1192
1211
|
latestStateMachineHeight(stateMachineId: StateMachineIdParams): Promise<bigint>;
|
|
1193
1212
|
/**
|
|
1194
|
-
* Get the state machine update time for a given state machine height.
|
|
1213
|
+
* Get the state machine update time for a given state machine height. Reads the
|
|
1214
|
+
* `BoundedStateMachineUpdateTime` map in pallet-ismp directly, so the height is either
|
|
1215
|
+
* still retained on-chain or it has been evicted — there's no intermediate RPC to
|
|
1216
|
+
* reinterpret the absence.
|
|
1195
1217
|
* @param {StateMachineHeight} stateMachineHeight - The state machine height.
|
|
1196
1218
|
* @returns {Promise<bigint>} The statemachine update time in seconds.
|
|
1197
1219
|
*/
|
|
@@ -2849,6 +2871,33 @@ interface FillOrderEstimate {
|
|
|
2849
2871
|
*/
|
|
2850
2872
|
relayerFeeInSourceFeeToken: bigint;
|
|
2851
2873
|
}
|
|
2874
|
+
/**
|
|
2875
|
+
* Solver-fee quote for an order, priced with the same policy `execute()` /
|
|
2876
|
+
* `executeBest()` apply when `order.fees` is `0n`.
|
|
2877
|
+
*/
|
|
2878
|
+
interface OrderFeesQuote {
|
|
2879
|
+
/**
|
|
2880
|
+
* The amount to set as `Order.fees`, denominated in the source-chain fee
|
|
2881
|
+
* token. Same-chain fills carry a 2x margin over the estimated fill gas without
|
|
2882
|
+
* a gas-price bump. Cross-chain gas is priced with 10% SDK-only headroom before
|
|
2883
|
+
* adding the settlement relayer fee and a further 5% buffer over the whole sum.
|
|
2884
|
+
*/
|
|
2885
|
+
fees: bigint;
|
|
2886
|
+
/**
|
|
2887
|
+
* The native value attached to the placement transaction when the fee is
|
|
2888
|
+
* paid in the native token: the estimated fill gas cost in source-chain
|
|
2889
|
+
* wei plus a 2% buffer. The gateway swaps it for the fee token and refunds
|
|
2890
|
+
* any unused amount.
|
|
2891
|
+
*/
|
|
2892
|
+
nativeValue: bigint;
|
|
2893
|
+
/**
|
|
2894
|
+
* The source-chain fee token `fees` is denominated in — check the user's
|
|
2895
|
+
* balance and allowance against this address when paying the fee directly.
|
|
2896
|
+
*/
|
|
2897
|
+
feeToken: HexString;
|
|
2898
|
+
/** The underlying gas estimate the quote was derived from. */
|
|
2899
|
+
estimate: FillOrderEstimate;
|
|
2900
|
+
}
|
|
2852
2901
|
/**
|
|
2853
2902
|
* Result of submitting a bid to Hyperbridge
|
|
2854
2903
|
*/
|
|
@@ -2972,8 +3021,24 @@ type IntentOrderStatusUpdate = {
|
|
|
2972
3021
|
status: "AWAITING_PLACE_ORDER";
|
|
2973
3022
|
to: HexString;
|
|
2974
3023
|
data: HexString;
|
|
2975
|
-
|
|
3024
|
+
/**
|
|
3025
|
+
* The order's native-token input amounts. Native inputs cannot be
|
|
3026
|
+
* pulled via allowance, so this must be part of the placement
|
|
3027
|
+
* transaction's `msg.value`. Does not include the solver fee.
|
|
3028
|
+
*/
|
|
3029
|
+
value: bigint;
|
|
3030
|
+
/**
|
|
3031
|
+
* The native amount that funds `order.fees`: what the gateway swaps
|
|
3032
|
+
* into the fee token at placement. Add it to `value` when paying the
|
|
3033
|
+
* fee in native token. `0n` when `order.fees` was set by the caller
|
|
3034
|
+
* (fee-token rail).
|
|
3035
|
+
*/
|
|
3036
|
+
nativeFee: bigint;
|
|
2976
3037
|
sessionPrivateKey: HexString;
|
|
3038
|
+
/** Exact source-chain fee-token amount encoded in `data`. */
|
|
3039
|
+
feeTokenAmount: bigint;
|
|
3040
|
+
/** Source-chain ERC-20 token charged for `feeTokenAmount`. */
|
|
3041
|
+
feeTokenAddress: HexString;
|
|
2977
3042
|
} | {
|
|
2978
3043
|
status: "ORDER_PLACED";
|
|
2979
3044
|
order: Order;
|
|
@@ -5860,4 +5925,4 @@ declare const _default: {
|
|
|
5860
5925
|
}];
|
|
5861
5926
|
};
|
|
5862
5927
|
|
|
5863
|
-
export { type
|
|
5928
|
+
export { type BidStorageEntry as $, type AssetTeleported as A, type Bid as B, ChainConfigService as C, type EstimateFillOrderParams as D, type EstimateGasCallData as E, type FillerBid as F, type GetRequestWithStatus as G, type HexString as H, type IChain as I, type FillOrderEstimate as J, type OrderFeesQuote as K, type ERC7821Call as L, type OrderWithStatus as M, OrderStatus as N, type Order as O, type PostRequestWithStatus as P, type TokenGatewayAssetTeleportedWithStatus as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, TeleportStatus as U, type DecodedOrderPlacedLog as V, type DecodedPostRequestEvent as W, type DecodedPostResponseEvent as X, type AllStatusKey as Y, type AssetTeleportedResponse as Z, type AvailableLiquidityByChain as _, type IEvmConfig as a, type TokenPricesResponse as a$, type BidSubmissionResult as a0, type BlockMetadata as a1, type BytesLikeHex as a2, type CancelOptions as a3, type ChainConfig as a4, type ChainConfigData as a5, Chains as a6, type ConfiguredAssetSymbol as a7, type Deployment as a8, type DispatchGet as a9, IntentOrderStatus as aA, type IntentOrderStatusKey as aB, type IsmpRequest as aC, type OrderResponse as aD, type OrderStatusMetadata as aE, type PaymentInfo as aF, type PhantomOrderEvent as aG, type PhantomOrderPriceSnapshot as aH, type PhantomOrderPriceSnapshotsResponse as aI, type PollPhantomOrdersOptions as aJ, type PostRequestStatus as aK, type RequestBody as aL, type RequestCommitment as aM, RequestKind as aN, type RequestResponse as aO, RequestStatus as aP, type RequestStatusKey as aQ, type SelectOptions as aR, type SigningAccount as aS, type StateMachineId as aT, type StateMachineResponse as aU, type StorageFacade as aV, TimeoutStatus as aW, type TimeoutStatusKey as aX, type TokenGatewayAssetTeleportedResponse as aY, type TokenInfo as aZ, type TokenPrice as a_, type DispatchInfo as aa, type DispatchPost as ab, type Erc4626VaultConfigData as ac, type ExecuteIntentOrderOptions as ad, type ExecutionResult as ae, type FillOptions as af, type FillerConfig as ag, type GetRequestResponse as ah, type GetResponseByRequestIdResponse as ai, type GetResponseStorageValues as aj, type HostParams as ak, HyperClientStatus as al, type IBatchConsensusAndGetResponseMessage as am, type IBatchConsensusAndPostRequestMessage as an, type IConfig as ao, type IConsensusMessage as ap, type IGetRequestMessage as aq, type IGetResponse as ar, type IGetResponseMessage as as, type IHyperbridgeConfig as at, type IPostResponse as au, type IRequestMessage as av, type ISubstrateConfig as aw, type ITimeoutPostRequestMessage as ax, ABI as ay, type IntentGatewayParams as az, type IMessage as b, type UniswapV4PoolConfigData as b0, chainConfigs as b1, convertCodecToIGetRequest as b2, convertCodecToIProof as b3, convertIGetRequestToCodec as b4, convertIProofToCodec as b5, convertStateIdToStateMachineId as b6, convertStateMachineEnumToString as b7, convertStateMachineIdToEnum as b8, decodeERC7821ExecuteBatch as b9, decodeUserOpScale as ba, encodeERC7821ExecuteBatch as bb, encodeISMPMessage as bc, encodeUserOpScale as bd, getChainId as be, getConfigByStateMachineId as bf, getViemChain as bg, hyperbridgeAddress as bh, pharosAtlantic as bi, pharosMainnet as bj, polkadotAssetHubPaseo as bk, polkadotHubMainnet as bl, tronChainIds as bm, tronNile as bn, _default as bo, type StateMachineHeight as c, type IIsmpMessage as d, type IPostRequest as e, type IGetRequest as f, type IPolkadotHubConfig as g, type IPharosConfig as h, type StateMachineUpdate as i, type ResponseCommitmentWithValues as j, type RequestStatusWithMetadata as k, type PostRequestTimeoutStatus as l, SubstrateChain as m, type ClientConfig as n, type IndexerQueryClient as o, type IProof as p, type IEvmChain as q, IntentsCoprocessor as r, type AvailableLiquiditySnapshot as s, type IntentOrderStatusUpdate as t, type SelectBidResult as u, type ResumeIntentOrderOptions as v, type CancelOrderOptions as w, type CancelQuote as x, type SubmitBidOptions as y, type PackedUserOperation as z };
|
|
@@ -893,6 +893,14 @@ interface UniswapV4PoolConfigData {
|
|
|
893
893
|
tickSpacing: number;
|
|
894
894
|
hooks?: `0x${string}`;
|
|
895
895
|
}
|
|
896
|
+
/** A known ERC-4626 vault fillers can use as a stablecoin treasury. */
|
|
897
|
+
interface Erc4626VaultConfigData {
|
|
898
|
+
/** Display label, e.g. "Aave stataUSDC" */
|
|
899
|
+
label: string;
|
|
900
|
+
address: `0x${string}`;
|
|
901
|
+
/** Underlying asset symbol; the on-chain vault resolves the address. */
|
|
902
|
+
asset: ConfiguredAssetSymbol;
|
|
903
|
+
}
|
|
896
904
|
interface ChainConfigData {
|
|
897
905
|
chainId: number;
|
|
898
906
|
stateMachineId: Chains;
|
|
@@ -909,6 +917,7 @@ interface ChainConfigData {
|
|
|
909
917
|
EURC?: string;
|
|
910
918
|
XSGD?: string;
|
|
911
919
|
TRYB?: string;
|
|
920
|
+
USDR?: string;
|
|
912
921
|
};
|
|
913
922
|
tokenDecimals?: {
|
|
914
923
|
USDC: number;
|
|
@@ -971,6 +980,8 @@ interface ChainConfigData {
|
|
|
971
980
|
coingeckoId: string;
|
|
972
981
|
popularTokens?: string[];
|
|
973
982
|
uniswapV4Pools?: UniswapV4PoolConfigData[];
|
|
983
|
+
/** Known ERC-4626 treasury vaults on this chain */
|
|
984
|
+
erc4626Vaults?: Erc4626VaultConfigData[];
|
|
974
985
|
/** LayerZero Endpoint ID for cross-chain messaging */
|
|
975
986
|
layerZeroEid?: number;
|
|
976
987
|
}
|
|
@@ -1019,6 +1030,14 @@ declare class ChainConfigService {
|
|
|
1019
1030
|
getCNgnDecimals(chain: string): number | undefined;
|
|
1020
1031
|
getExtAsset(chain: string): HexString | undefined;
|
|
1021
1032
|
getExtDecimals(chain: string): number | undefined;
|
|
1033
|
+
/** Configured exotic (non-USD) tokens on a chain, for selection UIs. EXT is a test asset and is not offered. */
|
|
1034
|
+
getKnownExoticTokens(chain: string): Array<{
|
|
1035
|
+
symbol: string;
|
|
1036
|
+
address: HexString;
|
|
1037
|
+
decimals?: number;
|
|
1038
|
+
}>;
|
|
1039
|
+
/** Known ERC-4626 treasury vaults on a chain, for selection UIs. */
|
|
1040
|
+
getKnownVaults(chain: string): Erc4626VaultConfigData[];
|
|
1022
1041
|
getChainId(chain: string): number;
|
|
1023
1042
|
getConsensusStateId(chain: string): string;
|
|
1024
1043
|
getHyperbridgeChainId(): number;
|
|
@@ -1191,7 +1210,10 @@ declare class SubstrateChain implements IChain {
|
|
|
1191
1210
|
*/
|
|
1192
1211
|
latestStateMachineHeight(stateMachineId: StateMachineIdParams): Promise<bigint>;
|
|
1193
1212
|
/**
|
|
1194
|
-
* Get the state machine update time for a given state machine height.
|
|
1213
|
+
* Get the state machine update time for a given state machine height. Reads the
|
|
1214
|
+
* `BoundedStateMachineUpdateTime` map in pallet-ismp directly, so the height is either
|
|
1215
|
+
* still retained on-chain or it has been evicted — there's no intermediate RPC to
|
|
1216
|
+
* reinterpret the absence.
|
|
1195
1217
|
* @param {StateMachineHeight} stateMachineHeight - The state machine height.
|
|
1196
1218
|
* @returns {Promise<bigint>} The statemachine update time in seconds.
|
|
1197
1219
|
*/
|
|
@@ -2849,6 +2871,33 @@ interface FillOrderEstimate {
|
|
|
2849
2871
|
*/
|
|
2850
2872
|
relayerFeeInSourceFeeToken: bigint;
|
|
2851
2873
|
}
|
|
2874
|
+
/**
|
|
2875
|
+
* Solver-fee quote for an order, priced with the same policy `execute()` /
|
|
2876
|
+
* `executeBest()` apply when `order.fees` is `0n`.
|
|
2877
|
+
*/
|
|
2878
|
+
interface OrderFeesQuote {
|
|
2879
|
+
/**
|
|
2880
|
+
* The amount to set as `Order.fees`, denominated in the source-chain fee
|
|
2881
|
+
* token. Same-chain fills carry a 2x margin over the estimated fill gas without
|
|
2882
|
+
* a gas-price bump. Cross-chain gas is priced with 10% SDK-only headroom before
|
|
2883
|
+
* adding the settlement relayer fee and a further 5% buffer over the whole sum.
|
|
2884
|
+
*/
|
|
2885
|
+
fees: bigint;
|
|
2886
|
+
/**
|
|
2887
|
+
* The native value attached to the placement transaction when the fee is
|
|
2888
|
+
* paid in the native token: the estimated fill gas cost in source-chain
|
|
2889
|
+
* wei plus a 2% buffer. The gateway swaps it for the fee token and refunds
|
|
2890
|
+
* any unused amount.
|
|
2891
|
+
*/
|
|
2892
|
+
nativeValue: bigint;
|
|
2893
|
+
/**
|
|
2894
|
+
* The source-chain fee token `fees` is denominated in — check the user's
|
|
2895
|
+
* balance and allowance against this address when paying the fee directly.
|
|
2896
|
+
*/
|
|
2897
|
+
feeToken: HexString;
|
|
2898
|
+
/** The underlying gas estimate the quote was derived from. */
|
|
2899
|
+
estimate: FillOrderEstimate;
|
|
2900
|
+
}
|
|
2852
2901
|
/**
|
|
2853
2902
|
* Result of submitting a bid to Hyperbridge
|
|
2854
2903
|
*/
|
|
@@ -2972,8 +3021,24 @@ type IntentOrderStatusUpdate = {
|
|
|
2972
3021
|
status: "AWAITING_PLACE_ORDER";
|
|
2973
3022
|
to: HexString;
|
|
2974
3023
|
data: HexString;
|
|
2975
|
-
|
|
3024
|
+
/**
|
|
3025
|
+
* The order's native-token input amounts. Native inputs cannot be
|
|
3026
|
+
* pulled via allowance, so this must be part of the placement
|
|
3027
|
+
* transaction's `msg.value`. Does not include the solver fee.
|
|
3028
|
+
*/
|
|
3029
|
+
value: bigint;
|
|
3030
|
+
/**
|
|
3031
|
+
* The native amount that funds `order.fees`: what the gateway swaps
|
|
3032
|
+
* into the fee token at placement. Add it to `value` when paying the
|
|
3033
|
+
* fee in native token. `0n` when `order.fees` was set by the caller
|
|
3034
|
+
* (fee-token rail).
|
|
3035
|
+
*/
|
|
3036
|
+
nativeFee: bigint;
|
|
2976
3037
|
sessionPrivateKey: HexString;
|
|
3038
|
+
/** Exact source-chain fee-token amount encoded in `data`. */
|
|
3039
|
+
feeTokenAmount: bigint;
|
|
3040
|
+
/** Source-chain ERC-20 token charged for `feeTokenAmount`. */
|
|
3041
|
+
feeTokenAddress: HexString;
|
|
2977
3042
|
} | {
|
|
2978
3043
|
status: "ORDER_PLACED";
|
|
2979
3044
|
order: Order;
|
|
@@ -5860,4 +5925,4 @@ declare const _default: {
|
|
|
5860
5925
|
}];
|
|
5861
5926
|
};
|
|
5862
5927
|
|
|
5863
|
-
export { type
|
|
5928
|
+
export { type BidStorageEntry as $, type AssetTeleported as A, type Bid as B, ChainConfigService as C, type EstimateFillOrderParams as D, type EstimateGasCallData as E, type FillerBid as F, type GetRequestWithStatus as G, type HexString as H, type IChain as I, type FillOrderEstimate as J, type OrderFeesQuote as K, type ERC7821Call as L, type OrderWithStatus as M, OrderStatus as N, type Order as O, type PostRequestWithStatus as P, type TokenGatewayAssetTeleportedWithStatus as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, TeleportStatus as U, type DecodedOrderPlacedLog as V, type DecodedPostRequestEvent as W, type DecodedPostResponseEvent as X, type AllStatusKey as Y, type AssetTeleportedResponse as Z, type AvailableLiquidityByChain as _, type IEvmConfig as a, type TokenPricesResponse as a$, type BidSubmissionResult as a0, type BlockMetadata as a1, type BytesLikeHex as a2, type CancelOptions as a3, type ChainConfig as a4, type ChainConfigData as a5, Chains as a6, type ConfiguredAssetSymbol as a7, type Deployment as a8, type DispatchGet as a9, IntentOrderStatus as aA, type IntentOrderStatusKey as aB, type IsmpRequest as aC, type OrderResponse as aD, type OrderStatusMetadata as aE, type PaymentInfo as aF, type PhantomOrderEvent as aG, type PhantomOrderPriceSnapshot as aH, type PhantomOrderPriceSnapshotsResponse as aI, type PollPhantomOrdersOptions as aJ, type PostRequestStatus as aK, type RequestBody as aL, type RequestCommitment as aM, RequestKind as aN, type RequestResponse as aO, RequestStatus as aP, type RequestStatusKey as aQ, type SelectOptions as aR, type SigningAccount as aS, type StateMachineId as aT, type StateMachineResponse as aU, type StorageFacade as aV, TimeoutStatus as aW, type TimeoutStatusKey as aX, type TokenGatewayAssetTeleportedResponse as aY, type TokenInfo as aZ, type TokenPrice as a_, type DispatchInfo as aa, type DispatchPost as ab, type Erc4626VaultConfigData as ac, type ExecuteIntentOrderOptions as ad, type ExecutionResult as ae, type FillOptions as af, type FillerConfig as ag, type GetRequestResponse as ah, type GetResponseByRequestIdResponse as ai, type GetResponseStorageValues as aj, type HostParams as ak, HyperClientStatus as al, type IBatchConsensusAndGetResponseMessage as am, type IBatchConsensusAndPostRequestMessage as an, type IConfig as ao, type IConsensusMessage as ap, type IGetRequestMessage as aq, type IGetResponse as ar, type IGetResponseMessage as as, type IHyperbridgeConfig as at, type IPostResponse as au, type IRequestMessage as av, type ISubstrateConfig as aw, type ITimeoutPostRequestMessage as ax, ABI as ay, type IntentGatewayParams as az, type IMessage as b, type UniswapV4PoolConfigData as b0, chainConfigs as b1, convertCodecToIGetRequest as b2, convertCodecToIProof as b3, convertIGetRequestToCodec as b4, convertIProofToCodec as b5, convertStateIdToStateMachineId as b6, convertStateMachineEnumToString as b7, convertStateMachineIdToEnum as b8, decodeERC7821ExecuteBatch as b9, decodeUserOpScale as ba, encodeERC7821ExecuteBatch as bb, encodeISMPMessage as bc, encodeUserOpScale as bd, getChainId as be, getConfigByStateMachineId as bf, getViemChain as bg, hyperbridgeAddress as bh, pharosAtlantic as bi, pharosMainnet as bj, polkadotAssetHubPaseo as bk, polkadotHubMainnet as bl, tronChainIds as bm, tronNile as bn, _default as bo, type StateMachineHeight as c, type IIsmpMessage as d, type IPostRequest as e, type IGetRequest as f, type IPolkadotHubConfig as g, type IPharosConfig as h, type StateMachineUpdate as i, type ResponseCommitmentWithValues as j, type RequestStatusWithMetadata as k, type PostRequestTimeoutStatus as l, SubstrateChain as m, type ClientConfig as n, type IndexerQueryClient as o, type IProof as p, type IEvmChain as q, IntentsCoprocessor as r, type AvailableLiquiditySnapshot as s, type IntentOrderStatusUpdate as t, type SelectBidResult as u, type ResumeIntentOrderOptions as v, type CancelOrderOptions as w, type CancelQuote as x, type SubmitBidOptions as y, type PackedUserOperation as z };
|