@hyperbridge/sdk 2.4.2 → 2.5.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.
@@ -958,6 +958,8 @@ interface ChainConfigData {
958
958
  UniswapV4StateView?: `0x${string}`;
959
959
  /** Circle Paymaster contract address (USDC-based ERC-4337 paymaster) */
960
960
  CirclePaymaster?: `0x${string}`;
961
+ /** SimplexPaymaster contract address (ERC-4337 paymaster accepting USDC/USDT via Chainlink pricing) */
962
+ SimplexPaymaster?: `0x${string}`;
961
963
  };
962
964
  rpcEnvKey?: string;
963
965
  defaultRpcUrl?: string;
@@ -1033,6 +1035,7 @@ declare class ChainConfigService {
1033
1035
  getPopularTokens(chain: string): string[];
1034
1036
  getEntryPointV08Address(chain: string): HexString;
1035
1037
  getCirclePaymasterAddress(chain: string): HexString | undefined;
1038
+ getSimplexPaymasterAddress(chain: string): HexString | undefined;
1036
1039
  getHyperbridgeAddress(): string;
1037
1040
  /**
1038
1041
  * Get the LayerZero Endpoint ID for the chain
@@ -1330,6 +1333,23 @@ interface PhantomOrderEvent {
1330
1333
  tokenB: HexString;
1331
1334
  standardAmount: bigint;
1332
1335
  }
1336
+ interface PollPhantomOrdersOptions {
1337
+ /** How often to check for a new head. Defaults to 6s, roughly one block. */
1338
+ intervalMs?: number;
1339
+ /**
1340
+ * Most blocks scanned in a single poll, so a long outage catches up over several ticks instead of
1341
+ * one unbounded scan. Defaults to 500.
1342
+ */
1343
+ maxBlocksPerPoll?: number;
1344
+ /**
1345
+ * How many blocks before the current head to start from on the first poll. Defaults to 0 (start
1346
+ * at the head). Set this to the runtime's bid window to have a restarting process pick up orders
1347
+ * whose window is still open.
1348
+ */
1349
+ lookbackBlocks?: number;
1350
+ /** Notified when a poll fails; polling continues regardless. */
1351
+ onError?: (err: unknown) => void;
1352
+ }
1333
1353
  /**
1334
1354
  * Service for interacting with Hyperbridge's pallet-intents coprocessor.
1335
1355
  * Handles bid submission and retrieval for the IntentGatewayV2 protocol.
@@ -1474,11 +1494,26 @@ declare class IntentsCoprocessor {
1474
1494
  */
1475
1495
  fetchPhantomOrder(commitment: HexString): Promise<Order | null>;
1476
1496
  /**
1477
- * Subscribes to PhantomOrderRegistered events from the intents coprocessor pallet.
1478
- * Calls the callback for each new phantom order as blocks arrive.
1479
- * Returns an unsubscribe function to stop the subscription.
1497
+ * Reads the PhantomOrderRegistered events emitted in a single block.
1480
1498
  */
1481
- subscribePhantomOrders(callback: (event: PhantomOrderEvent) => void): Promise<() => void>;
1499
+ getPhantomOrdersInBlock(blockNumber: number): Promise<PhantomOrderEvent[]>;
1500
+ /**
1501
+ * Polls for newly registered phantom orders, invoking the callback once per order.
1502
+ *
1503
+ * Each tick reads the current head and scans every block between the last one processed and that
1504
+ * head, so the block cursor — not the connection — determines what has been seen. This replaced a
1505
+ * system.events subscription, which was only as reliable as its socket: polkadot-js reconnects
1506
+ * the transport but does not reliably re-establish storage subscriptions, and anything emitted
1507
+ * while disconnected was lost silently. With a bid window measured in a handful of blocks, that
1508
+ * meant silently missed bids.
1509
+ *
1510
+ * Scanning a block range is gap-free rather than merely self-healing: an outage delays orders but
1511
+ * cannot drop them, because the cursor only advances past a block whose events were actually
1512
+ * read. Recovery replays the backlog.
1513
+ *
1514
+ * Returns a function that stops polling.
1515
+ */
1516
+ pollPhantomOrders(callback: (event: PhantomOrderEvent) => void, options?: PollPhantomOrdersOptions): () => void;
1482
1517
  }
1483
1518
 
1484
1519
  /**
@@ -1751,6 +1786,8 @@ interface RetryConfig {
1751
1786
  backoffMs: number;
1752
1787
  logMessage?: string;
1753
1788
  logger?: ConsolaInstance;
1789
+ /** Return false to stop retrying and immediately rethrow the error. */
1790
+ shouldRetry?: (error: unknown) => boolean;
1754
1791
  }
1755
1792
  interface IsmpRequest {
1756
1793
  source: string;
@@ -2616,6 +2653,26 @@ interface PhantomOrderPriceSnapshotsResponse {
2616
2653
  }>;
2617
2654
  };
2618
2655
  }
2656
+ /**
2657
+ * Total solver liquidity measured at one immutable Phantom price snapshot.
2658
+ *
2659
+ * Liquidity amounts are decimal strings formatted with the configured decimals
2660
+ * for their respective `tokenAddress` and chain.
2661
+ */
2662
+ interface AvailableLiquiditySnapshot {
2663
+ totalLiquidity: string;
2664
+ providerCount: number;
2665
+ tokenAddress: HexString;
2666
+ snapshotTime: Date;
2667
+ liquidityByChain: AvailableLiquidityByChain[];
2668
+ }
2669
+ /** Liquidity for one chain/token balance group in an availability snapshot. */
2670
+ interface AvailableLiquidityByChain {
2671
+ chain: string;
2672
+ tokenAddress: HexString;
2673
+ totalLiquidity: string;
2674
+ providerCount: number;
2675
+ }
2619
2676
  interface TokenPrice {
2620
2677
  symbol: string;
2621
2678
  address?: string;
@@ -5785,4 +5842,4 @@ declare const _default: {
5785
5842
  }];
5786
5843
  };
5787
5844
 
5788
- export { type BytesLikeHex as $, type AssetTeleported as A, type Bid as B, ChainConfigService as C, type FillOrderEstimate as D, type EstimateGasCallData as E, type FillerBid as F, type GetRequestWithStatus as G, type HexString as H, type IChain as I, type ERC7821Call as J, type OrderWithStatus as K, OrderStatus as L, type TokenGatewayAssetTeleportedWithStatus as M, TeleportStatus as N, type Order as O, type PostRequestWithStatus as P, type DecodedOrderPlacedLog as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, type DecodedPostRequestEvent as U, type DecodedPostResponseEvent as V, type AllStatusKey as W, type AssetTeleportedResponse as X, type BidStorageEntry as Y, type BidSubmissionResult as Z, type BlockMetadata as _, type IEvmConfig as a, convertIGetRequestToCodec as a$, type CancelOptions as a0, type ChainConfig as a1, type ChainConfigData as a2, Chains as a3, type ConfiguredAssetSymbol as a4, type Deployment as a5, type DispatchGet as a6, type DispatchInfo as a7, type DispatchPost as a8, type ExecuteIntentOrderOptions as a9, type OrderStatusMetadata as aA, type PaymentInfo as aB, type PhantomOrderEvent as aC, type PhantomOrderPriceSnapshot as aD, type PhantomOrderPriceSnapshotsResponse as aE, type PostRequestStatus as aF, type RequestBody as aG, type RequestCommitment as aH, RequestKind as aI, type RequestResponse as aJ, RequestStatus as aK, type RequestStatusKey as aL, type SelectOptions as aM, type SigningAccount as aN, type StateMachineId as aO, type StateMachineResponse as aP, type StorageFacade as aQ, TimeoutStatus as aR, type TimeoutStatusKey as aS, type TokenGatewayAssetTeleportedResponse as aT, type TokenInfo as aU, type TokenPrice as aV, type TokenPricesResponse as aW, type UniswapV4PoolConfigData as aX, chainConfigs as aY, convertCodecToIGetRequest as aZ, convertCodecToIProof as a_, type ExecutionResult as aa, type FillOptions as ab, type FillerConfig as ac, type GetRequestResponse as ad, type GetResponseByRequestIdResponse as ae, type GetResponseStorageValues as af, type HostParams as ag, HyperClientStatus as ah, type IBatchConsensusAndGetResponseMessage as ai, type IBatchConsensusAndPostRequestMessage as aj, type IConfig as ak, type IConsensusMessage as al, type IGetRequestMessage as am, type IGetResponse as an, type IGetResponseMessage as ao, type IHyperbridgeConfig as ap, type IPostResponse as aq, type IRequestMessage as ar, type ISubstrateConfig as as, type ITimeoutPostRequestMessage as at, ABI as au, type IntentGatewayParams as av, IntentOrderStatus as aw, type IntentOrderStatusKey as ax, type IsmpRequest as ay, type OrderResponse as az, type IMessage as b, convertIProofToCodec as b0, convertStateIdToStateMachineId as b1, convertStateMachineEnumToString as b2, convertStateMachineIdToEnum as b3, decodeERC7821ExecuteBatch as b4, decodeUserOpScale as b5, encodeERC7821ExecuteBatch as b6, encodeISMPMessage as b7, encodeUserOpScale as b8, getChainId as b9, getConfigByStateMachineId as ba, getViemChain as bb, hyperbridgeAddress as bc, pharosAtlantic as bd, pharosMainnet as be, polkadotAssetHubPaseo as bf, polkadotHubMainnet as bg, tronChainIds as bh, tronNile as bi, _default as bj, 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 IntentOrderStatusUpdate as s, type SelectBidResult as t, type ResumeIntentOrderOptions as u, type CancelOrderOptions as v, type CancelQuote as w, type SubmitBidOptions as x, type PackedUserOperation as y, type EstimateFillOrderParams as z };
5845
+ export { type BidSubmissionResult 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 ERC7821Call as K, type OrderWithStatus as L, OrderStatus as M, type TokenGatewayAssetTeleportedWithStatus as N, type Order as O, type PostRequestWithStatus as P, TeleportStatus as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, type DecodedOrderPlacedLog as U, type DecodedPostRequestEvent as V, type DecodedPostResponseEvent as W, type AllStatusKey as X, type AssetTeleportedResponse as Y, type AvailableLiquidityByChain as Z, type BidStorageEntry as _, type IEvmConfig as a, chainConfigs as a$, type BlockMetadata as a0, type BytesLikeHex as a1, type CancelOptions as a2, type ChainConfig as a3, type ChainConfigData as a4, Chains as a5, type ConfiguredAssetSymbol as a6, type Deployment as a7, type DispatchGet as a8, type DispatchInfo as a9, type IsmpRequest as aA, type OrderResponse as aB, type OrderStatusMetadata as aC, type PaymentInfo as aD, type PhantomOrderEvent as aE, type PhantomOrderPriceSnapshot as aF, type PhantomOrderPriceSnapshotsResponse as aG, type PollPhantomOrdersOptions as aH, type PostRequestStatus as aI, type RequestBody as aJ, type RequestCommitment as aK, RequestKind as aL, type RequestResponse as aM, RequestStatus as aN, type RequestStatusKey as aO, type SelectOptions as aP, type SigningAccount as aQ, type StateMachineId as aR, type StateMachineResponse as aS, type StorageFacade as aT, TimeoutStatus as aU, type TimeoutStatusKey as aV, type TokenGatewayAssetTeleportedResponse as aW, type TokenInfo as aX, type TokenPrice as aY, type TokenPricesResponse as aZ, type UniswapV4PoolConfigData as a_, type DispatchPost as aa, type ExecuteIntentOrderOptions as ab, type ExecutionResult as ac, type FillOptions as ad, type FillerConfig as ae, type GetRequestResponse as af, type GetResponseByRequestIdResponse as ag, type GetResponseStorageValues as ah, type HostParams as ai, HyperClientStatus as aj, type IBatchConsensusAndGetResponseMessage as ak, type IBatchConsensusAndPostRequestMessage as al, type IConfig as am, type IConsensusMessage as an, type IGetRequestMessage as ao, type IGetResponse as ap, type IGetResponseMessage as aq, type IHyperbridgeConfig as ar, type IPostResponse as as, type IRequestMessage as at, type ISubstrateConfig as au, type ITimeoutPostRequestMessage as av, ABI as aw, type IntentGatewayParams as ax, IntentOrderStatus as ay, type IntentOrderStatusKey as az, type IMessage as b, convertCodecToIGetRequest as b0, convertCodecToIProof as b1, convertIGetRequestToCodec as b2, convertIProofToCodec as b3, convertStateIdToStateMachineId as b4, convertStateMachineEnumToString as b5, convertStateMachineIdToEnum as b6, decodeERC7821ExecuteBatch as b7, decodeUserOpScale as b8, encodeERC7821ExecuteBatch as b9, encodeISMPMessage as ba, encodeUserOpScale as bb, getChainId as bc, getConfigByStateMachineId as bd, getViemChain as be, hyperbridgeAddress as bf, pharosAtlantic as bg, pharosMainnet as bh, polkadotAssetHubPaseo as bi, polkadotHubMainnet as bj, tronChainIds as bk, tronNile as bl, _default as bm, 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 };
@@ -958,6 +958,8 @@ interface ChainConfigData {
958
958
  UniswapV4StateView?: `0x${string}`;
959
959
  /** Circle Paymaster contract address (USDC-based ERC-4337 paymaster) */
960
960
  CirclePaymaster?: `0x${string}`;
961
+ /** SimplexPaymaster contract address (ERC-4337 paymaster accepting USDC/USDT via Chainlink pricing) */
962
+ SimplexPaymaster?: `0x${string}`;
961
963
  };
962
964
  rpcEnvKey?: string;
963
965
  defaultRpcUrl?: string;
@@ -1033,6 +1035,7 @@ declare class ChainConfigService {
1033
1035
  getPopularTokens(chain: string): string[];
1034
1036
  getEntryPointV08Address(chain: string): HexString;
1035
1037
  getCirclePaymasterAddress(chain: string): HexString | undefined;
1038
+ getSimplexPaymasterAddress(chain: string): HexString | undefined;
1036
1039
  getHyperbridgeAddress(): string;
1037
1040
  /**
1038
1041
  * Get the LayerZero Endpoint ID for the chain
@@ -1330,6 +1333,23 @@ interface PhantomOrderEvent {
1330
1333
  tokenB: HexString;
1331
1334
  standardAmount: bigint;
1332
1335
  }
1336
+ interface PollPhantomOrdersOptions {
1337
+ /** How often to check for a new head. Defaults to 6s, roughly one block. */
1338
+ intervalMs?: number;
1339
+ /**
1340
+ * Most blocks scanned in a single poll, so a long outage catches up over several ticks instead of
1341
+ * one unbounded scan. Defaults to 500.
1342
+ */
1343
+ maxBlocksPerPoll?: number;
1344
+ /**
1345
+ * How many blocks before the current head to start from on the first poll. Defaults to 0 (start
1346
+ * at the head). Set this to the runtime's bid window to have a restarting process pick up orders
1347
+ * whose window is still open.
1348
+ */
1349
+ lookbackBlocks?: number;
1350
+ /** Notified when a poll fails; polling continues regardless. */
1351
+ onError?: (err: unknown) => void;
1352
+ }
1333
1353
  /**
1334
1354
  * Service for interacting with Hyperbridge's pallet-intents coprocessor.
1335
1355
  * Handles bid submission and retrieval for the IntentGatewayV2 protocol.
@@ -1474,11 +1494,26 @@ declare class IntentsCoprocessor {
1474
1494
  */
1475
1495
  fetchPhantomOrder(commitment: HexString): Promise<Order | null>;
1476
1496
  /**
1477
- * Subscribes to PhantomOrderRegistered events from the intents coprocessor pallet.
1478
- * Calls the callback for each new phantom order as blocks arrive.
1479
- * Returns an unsubscribe function to stop the subscription.
1497
+ * Reads the PhantomOrderRegistered events emitted in a single block.
1480
1498
  */
1481
- subscribePhantomOrders(callback: (event: PhantomOrderEvent) => void): Promise<() => void>;
1499
+ getPhantomOrdersInBlock(blockNumber: number): Promise<PhantomOrderEvent[]>;
1500
+ /**
1501
+ * Polls for newly registered phantom orders, invoking the callback once per order.
1502
+ *
1503
+ * Each tick reads the current head and scans every block between the last one processed and that
1504
+ * head, so the block cursor — not the connection — determines what has been seen. This replaced a
1505
+ * system.events subscription, which was only as reliable as its socket: polkadot-js reconnects
1506
+ * the transport but does not reliably re-establish storage subscriptions, and anything emitted
1507
+ * while disconnected was lost silently. With a bid window measured in a handful of blocks, that
1508
+ * meant silently missed bids.
1509
+ *
1510
+ * Scanning a block range is gap-free rather than merely self-healing: an outage delays orders but
1511
+ * cannot drop them, because the cursor only advances past a block whose events were actually
1512
+ * read. Recovery replays the backlog.
1513
+ *
1514
+ * Returns a function that stops polling.
1515
+ */
1516
+ pollPhantomOrders(callback: (event: PhantomOrderEvent) => void, options?: PollPhantomOrdersOptions): () => void;
1482
1517
  }
1483
1518
 
1484
1519
  /**
@@ -1751,6 +1786,8 @@ interface RetryConfig {
1751
1786
  backoffMs: number;
1752
1787
  logMessage?: string;
1753
1788
  logger?: ConsolaInstance;
1789
+ /** Return false to stop retrying and immediately rethrow the error. */
1790
+ shouldRetry?: (error: unknown) => boolean;
1754
1791
  }
1755
1792
  interface IsmpRequest {
1756
1793
  source: string;
@@ -2616,6 +2653,26 @@ interface PhantomOrderPriceSnapshotsResponse {
2616
2653
  }>;
2617
2654
  };
2618
2655
  }
2656
+ /**
2657
+ * Total solver liquidity measured at one immutable Phantom price snapshot.
2658
+ *
2659
+ * Liquidity amounts are decimal strings formatted with the configured decimals
2660
+ * for their respective `tokenAddress` and chain.
2661
+ */
2662
+ interface AvailableLiquiditySnapshot {
2663
+ totalLiquidity: string;
2664
+ providerCount: number;
2665
+ tokenAddress: HexString;
2666
+ snapshotTime: Date;
2667
+ liquidityByChain: AvailableLiquidityByChain[];
2668
+ }
2669
+ /** Liquidity for one chain/token balance group in an availability snapshot. */
2670
+ interface AvailableLiquidityByChain {
2671
+ chain: string;
2672
+ tokenAddress: HexString;
2673
+ totalLiquidity: string;
2674
+ providerCount: number;
2675
+ }
2619
2676
  interface TokenPrice {
2620
2677
  symbol: string;
2621
2678
  address?: string;
@@ -5785,4 +5842,4 @@ declare const _default: {
5785
5842
  }];
5786
5843
  };
5787
5844
 
5788
- export { type BytesLikeHex as $, type AssetTeleported as A, type Bid as B, ChainConfigService as C, type FillOrderEstimate as D, type EstimateGasCallData as E, type FillerBid as F, type GetRequestWithStatus as G, type HexString as H, type IChain as I, type ERC7821Call as J, type OrderWithStatus as K, OrderStatus as L, type TokenGatewayAssetTeleportedWithStatus as M, TeleportStatus as N, type Order as O, type PostRequestWithStatus as P, type DecodedOrderPlacedLog as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, type DecodedPostRequestEvent as U, type DecodedPostResponseEvent as V, type AllStatusKey as W, type AssetTeleportedResponse as X, type BidStorageEntry as Y, type BidSubmissionResult as Z, type BlockMetadata as _, type IEvmConfig as a, convertIGetRequestToCodec as a$, type CancelOptions as a0, type ChainConfig as a1, type ChainConfigData as a2, Chains as a3, type ConfiguredAssetSymbol as a4, type Deployment as a5, type DispatchGet as a6, type DispatchInfo as a7, type DispatchPost as a8, type ExecuteIntentOrderOptions as a9, type OrderStatusMetadata as aA, type PaymentInfo as aB, type PhantomOrderEvent as aC, type PhantomOrderPriceSnapshot as aD, type PhantomOrderPriceSnapshotsResponse as aE, type PostRequestStatus as aF, type RequestBody as aG, type RequestCommitment as aH, RequestKind as aI, type RequestResponse as aJ, RequestStatus as aK, type RequestStatusKey as aL, type SelectOptions as aM, type SigningAccount as aN, type StateMachineId as aO, type StateMachineResponse as aP, type StorageFacade as aQ, TimeoutStatus as aR, type TimeoutStatusKey as aS, type TokenGatewayAssetTeleportedResponse as aT, type TokenInfo as aU, type TokenPrice as aV, type TokenPricesResponse as aW, type UniswapV4PoolConfigData as aX, chainConfigs as aY, convertCodecToIGetRequest as aZ, convertCodecToIProof as a_, type ExecutionResult as aa, type FillOptions as ab, type FillerConfig as ac, type GetRequestResponse as ad, type GetResponseByRequestIdResponse as ae, type GetResponseStorageValues as af, type HostParams as ag, HyperClientStatus as ah, type IBatchConsensusAndGetResponseMessage as ai, type IBatchConsensusAndPostRequestMessage as aj, type IConfig as ak, type IConsensusMessage as al, type IGetRequestMessage as am, type IGetResponse as an, type IGetResponseMessage as ao, type IHyperbridgeConfig as ap, type IPostResponse as aq, type IRequestMessage as ar, type ISubstrateConfig as as, type ITimeoutPostRequestMessage as at, ABI as au, type IntentGatewayParams as av, IntentOrderStatus as aw, type IntentOrderStatusKey as ax, type IsmpRequest as ay, type OrderResponse as az, type IMessage as b, convertIProofToCodec as b0, convertStateIdToStateMachineId as b1, convertStateMachineEnumToString as b2, convertStateMachineIdToEnum as b3, decodeERC7821ExecuteBatch as b4, decodeUserOpScale as b5, encodeERC7821ExecuteBatch as b6, encodeISMPMessage as b7, encodeUserOpScale as b8, getChainId as b9, getConfigByStateMachineId as ba, getViemChain as bb, hyperbridgeAddress as bc, pharosAtlantic as bd, pharosMainnet as be, polkadotAssetHubPaseo as bf, polkadotHubMainnet as bg, tronChainIds as bh, tronNile as bi, _default as bj, 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 IntentOrderStatusUpdate as s, type SelectBidResult as t, type ResumeIntentOrderOptions as u, type CancelOrderOptions as v, type CancelQuote as w, type SubmitBidOptions as x, type PackedUserOperation as y, type EstimateFillOrderParams as z };
5845
+ export { type BidSubmissionResult 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 ERC7821Call as K, type OrderWithStatus as L, OrderStatus as M, type TokenGatewayAssetTeleportedWithStatus as N, type Order as O, type PostRequestWithStatus as P, TeleportStatus as Q, type RetryConfig as R, type StateMachineIdParams as S, type Transaction as T, type DecodedOrderPlacedLog as U, type DecodedPostRequestEvent as V, type DecodedPostResponseEvent as W, type AllStatusKey as X, type AssetTeleportedResponse as Y, type AvailableLiquidityByChain as Z, type BidStorageEntry as _, type IEvmConfig as a, chainConfigs as a$, type BlockMetadata as a0, type BytesLikeHex as a1, type CancelOptions as a2, type ChainConfig as a3, type ChainConfigData as a4, Chains as a5, type ConfiguredAssetSymbol as a6, type Deployment as a7, type DispatchGet as a8, type DispatchInfo as a9, type IsmpRequest as aA, type OrderResponse as aB, type OrderStatusMetadata as aC, type PaymentInfo as aD, type PhantomOrderEvent as aE, type PhantomOrderPriceSnapshot as aF, type PhantomOrderPriceSnapshotsResponse as aG, type PollPhantomOrdersOptions as aH, type PostRequestStatus as aI, type RequestBody as aJ, type RequestCommitment as aK, RequestKind as aL, type RequestResponse as aM, RequestStatus as aN, type RequestStatusKey as aO, type SelectOptions as aP, type SigningAccount as aQ, type StateMachineId as aR, type StateMachineResponse as aS, type StorageFacade as aT, TimeoutStatus as aU, type TimeoutStatusKey as aV, type TokenGatewayAssetTeleportedResponse as aW, type TokenInfo as aX, type TokenPrice as aY, type TokenPricesResponse as aZ, type UniswapV4PoolConfigData as a_, type DispatchPost as aa, type ExecuteIntentOrderOptions as ab, type ExecutionResult as ac, type FillOptions as ad, type FillerConfig as ae, type GetRequestResponse as af, type GetResponseByRequestIdResponse as ag, type GetResponseStorageValues as ah, type HostParams as ai, HyperClientStatus as aj, type IBatchConsensusAndGetResponseMessage as ak, type IBatchConsensusAndPostRequestMessage as al, type IConfig as am, type IConsensusMessage as an, type IGetRequestMessage as ao, type IGetResponse as ap, type IGetResponseMessage as aq, type IHyperbridgeConfig as ar, type IPostResponse as as, type IRequestMessage as at, type ISubstrateConfig as au, type ITimeoutPostRequestMessage as av, ABI as aw, type IntentGatewayParams as ax, IntentOrderStatus as ay, type IntentOrderStatusKey as az, type IMessage as b, convertCodecToIGetRequest as b0, convertCodecToIProof as b1, convertIGetRequestToCodec as b2, convertIProofToCodec as b3, convertStateIdToStateMachineId as b4, convertStateMachineEnumToString as b5, convertStateMachineIdToEnum as b6, decodeERC7821ExecuteBatch as b7, decodeUserOpScale as b8, encodeERC7821ExecuteBatch as b9, encodeISMPMessage as ba, encodeUserOpScale as bb, getChainId as bc, getConfigByStateMachineId as bd, getViemChain as be, hyperbridgeAddress as bf, pharosAtlantic as bg, pharosMainnet as bh, polkadotAssetHubPaseo as bi, polkadotHubMainnet as bj, tronChainIds as bk, tronNile as bl, _default as bm, 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 };