@hyperbridge/sdk 2.4.0 → 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;
@@ -988,6 +990,16 @@ declare class ChainConfigService {
988
990
  };
989
991
  getDaiAsset(chain: string): HexString;
990
992
  getAssetAddress(chain: string, symbol: ConfiguredAssetSymbol): HexString | undefined;
993
+ /**
994
+ * Resolves configured token metadata from an address on a specific chain.
995
+ * This is used by SDK helpers that accept token addresses rather than caller-
996
+ * supplied symbols or decimals.
997
+ */
998
+ getAssetMetadataByAddress(chain: string, address: HexString): {
999
+ symbol: ConfiguredAssetSymbol;
1000
+ address: HexString;
1001
+ decimals?: number;
1002
+ } | undefined;
991
1003
  getUsdtAsset(chain: string): HexString;
992
1004
  getUsdcAsset(chain: string): HexString;
993
1005
  getUsdcDecimals(chain: string): number;
@@ -1023,6 +1035,7 @@ declare class ChainConfigService {
1023
1035
  getPopularTokens(chain: string): string[];
1024
1036
  getEntryPointV08Address(chain: string): HexString;
1025
1037
  getCirclePaymasterAddress(chain: string): HexString | undefined;
1038
+ getSimplexPaymasterAddress(chain: string): HexString | undefined;
1026
1039
  getHyperbridgeAddress(): string;
1027
1040
  /**
1028
1041
  * Get the LayerZero Endpoint ID for the chain
@@ -1320,6 +1333,23 @@ interface PhantomOrderEvent {
1320
1333
  tokenB: HexString;
1321
1334
  standardAmount: bigint;
1322
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
+ }
1323
1353
  /**
1324
1354
  * Service for interacting with Hyperbridge's pallet-intents coprocessor.
1325
1355
  * Handles bid submission and retrieval for the IntentGatewayV2 protocol.
@@ -1464,11 +1494,26 @@ declare class IntentsCoprocessor {
1464
1494
  */
1465
1495
  fetchPhantomOrder(commitment: HexString): Promise<Order | null>;
1466
1496
  /**
1467
- * Subscribes to PhantomOrderRegistered events from the intents coprocessor pallet.
1468
- * Calls the callback for each new phantom order as blocks arrive.
1469
- * Returns an unsubscribe function to stop the subscription.
1497
+ * Reads the PhantomOrderRegistered events emitted in a single block.
1470
1498
  */
1471
- 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;
1472
1517
  }
1473
1518
 
1474
1519
  /**
@@ -1741,6 +1786,8 @@ interface RetryConfig {
1741
1786
  backoffMs: number;
1742
1787
  logMessage?: string;
1743
1788
  logger?: ConsolaInstance;
1789
+ /** Return false to stop retrying and immediately rethrow the error. */
1790
+ shouldRetry?: (error: unknown) => boolean;
1744
1791
  }
1745
1792
  interface IsmpRequest {
1746
1793
  source: string;
@@ -2578,6 +2625,54 @@ interface OrderResponse {
2578
2625
  }>;
2579
2626
  };
2580
2627
  }
2628
+ interface PhantomOrderPriceSnapshot {
2629
+ commitment: HexString;
2630
+ tokenA: HexString;
2631
+ tokenB: HexString;
2632
+ standardAmount: bigint;
2633
+ blockNumber: bigint;
2634
+ medianPrice: bigint;
2635
+ lowestPrice?: bigint;
2636
+ highestPrice?: bigint;
2637
+ bidCount: number;
2638
+ snapshotTime: Date;
2639
+ }
2640
+ interface PhantomOrderPriceSnapshotsResponse {
2641
+ phantomOrderPriceSnapshots: {
2642
+ nodes: Array<{
2643
+ commitment: string;
2644
+ tokenA: string;
2645
+ tokenB: string;
2646
+ standardAmount: string;
2647
+ blockNumber: string;
2648
+ medianPrice: string | null;
2649
+ lowestPrice: string | null;
2650
+ highestPrice: string | null;
2651
+ bidCount: number;
2652
+ snapshotTime: string;
2653
+ }>;
2654
+ };
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
+ }
2581
2676
  interface TokenPrice {
2582
2677
  symbol: string;
2583
2678
  address?: string;
@@ -5747,4 +5842,4 @@ declare const _default: {
5747
5842
  }];
5748
5843
  };
5749
5844
 
5750
- 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, convertStateIdToStateMachineId 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 PostRequestStatus as aD, type RequestBody as aE, type RequestCommitment as aF, RequestKind as aG, type RequestResponse as aH, RequestStatus as aI, type RequestStatusKey as aJ, type SelectOptions as aK, type SigningAccount as aL, type StateMachineId as aM, type StateMachineResponse as aN, type StorageFacade as aO, TimeoutStatus as aP, type TimeoutStatusKey as aQ, type TokenGatewayAssetTeleportedResponse as aR, type TokenInfo as aS, type TokenPrice as aT, type TokenPricesResponse as aU, type UniswapV4PoolConfigData as aV, chainConfigs as aW, convertCodecToIGetRequest as aX, convertCodecToIProof as aY, convertIGetRequestToCodec as aZ, convertIProofToCodec 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, convertStateMachineEnumToString as b0, convertStateMachineIdToEnum as b1, decodeERC7821ExecuteBatch as b2, decodeUserOpScale as b3, encodeERC7821ExecuteBatch as b4, encodeISMPMessage as b5, encodeUserOpScale as b6, getChainId as b7, getConfigByStateMachineId as b8, getViemChain as b9, hyperbridgeAddress as ba, pharosAtlantic as bb, pharosMainnet as bc, polkadotAssetHubPaseo as bd, polkadotHubMainnet as be, tronChainIds as bf, tronNile as bg, _default as bh, 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;
@@ -988,6 +990,16 @@ declare class ChainConfigService {
988
990
  };
989
991
  getDaiAsset(chain: string): HexString;
990
992
  getAssetAddress(chain: string, symbol: ConfiguredAssetSymbol): HexString | undefined;
993
+ /**
994
+ * Resolves configured token metadata from an address on a specific chain.
995
+ * This is used by SDK helpers that accept token addresses rather than caller-
996
+ * supplied symbols or decimals.
997
+ */
998
+ getAssetMetadataByAddress(chain: string, address: HexString): {
999
+ symbol: ConfiguredAssetSymbol;
1000
+ address: HexString;
1001
+ decimals?: number;
1002
+ } | undefined;
991
1003
  getUsdtAsset(chain: string): HexString;
992
1004
  getUsdcAsset(chain: string): HexString;
993
1005
  getUsdcDecimals(chain: string): number;
@@ -1023,6 +1035,7 @@ declare class ChainConfigService {
1023
1035
  getPopularTokens(chain: string): string[];
1024
1036
  getEntryPointV08Address(chain: string): HexString;
1025
1037
  getCirclePaymasterAddress(chain: string): HexString | undefined;
1038
+ getSimplexPaymasterAddress(chain: string): HexString | undefined;
1026
1039
  getHyperbridgeAddress(): string;
1027
1040
  /**
1028
1041
  * Get the LayerZero Endpoint ID for the chain
@@ -1320,6 +1333,23 @@ interface PhantomOrderEvent {
1320
1333
  tokenB: HexString;
1321
1334
  standardAmount: bigint;
1322
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
+ }
1323
1353
  /**
1324
1354
  * Service for interacting with Hyperbridge's pallet-intents coprocessor.
1325
1355
  * Handles bid submission and retrieval for the IntentGatewayV2 protocol.
@@ -1464,11 +1494,26 @@ declare class IntentsCoprocessor {
1464
1494
  */
1465
1495
  fetchPhantomOrder(commitment: HexString): Promise<Order | null>;
1466
1496
  /**
1467
- * Subscribes to PhantomOrderRegistered events from the intents coprocessor pallet.
1468
- * Calls the callback for each new phantom order as blocks arrive.
1469
- * Returns an unsubscribe function to stop the subscription.
1497
+ * Reads the PhantomOrderRegistered events emitted in a single block.
1470
1498
  */
1471
- 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;
1472
1517
  }
1473
1518
 
1474
1519
  /**
@@ -1741,6 +1786,8 @@ interface RetryConfig {
1741
1786
  backoffMs: number;
1742
1787
  logMessage?: string;
1743
1788
  logger?: ConsolaInstance;
1789
+ /** Return false to stop retrying and immediately rethrow the error. */
1790
+ shouldRetry?: (error: unknown) => boolean;
1744
1791
  }
1745
1792
  interface IsmpRequest {
1746
1793
  source: string;
@@ -2578,6 +2625,54 @@ interface OrderResponse {
2578
2625
  }>;
2579
2626
  };
2580
2627
  }
2628
+ interface PhantomOrderPriceSnapshot {
2629
+ commitment: HexString;
2630
+ tokenA: HexString;
2631
+ tokenB: HexString;
2632
+ standardAmount: bigint;
2633
+ blockNumber: bigint;
2634
+ medianPrice: bigint;
2635
+ lowestPrice?: bigint;
2636
+ highestPrice?: bigint;
2637
+ bidCount: number;
2638
+ snapshotTime: Date;
2639
+ }
2640
+ interface PhantomOrderPriceSnapshotsResponse {
2641
+ phantomOrderPriceSnapshots: {
2642
+ nodes: Array<{
2643
+ commitment: string;
2644
+ tokenA: string;
2645
+ tokenB: string;
2646
+ standardAmount: string;
2647
+ blockNumber: string;
2648
+ medianPrice: string | null;
2649
+ lowestPrice: string | null;
2650
+ highestPrice: string | null;
2651
+ bidCount: number;
2652
+ snapshotTime: string;
2653
+ }>;
2654
+ };
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
+ }
2581
2676
  interface TokenPrice {
2582
2677
  symbol: string;
2583
2678
  address?: string;
@@ -5747,4 +5842,4 @@ declare const _default: {
5747
5842
  }];
5748
5843
  };
5749
5844
 
5750
- 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, convertStateIdToStateMachineId 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 PostRequestStatus as aD, type RequestBody as aE, type RequestCommitment as aF, RequestKind as aG, type RequestResponse as aH, RequestStatus as aI, type RequestStatusKey as aJ, type SelectOptions as aK, type SigningAccount as aL, type StateMachineId as aM, type StateMachineResponse as aN, type StorageFacade as aO, TimeoutStatus as aP, type TimeoutStatusKey as aQ, type TokenGatewayAssetTeleportedResponse as aR, type TokenInfo as aS, type TokenPrice as aT, type TokenPricesResponse as aU, type UniswapV4PoolConfigData as aV, chainConfigs as aW, convertCodecToIGetRequest as aX, convertCodecToIProof as aY, convertIGetRequestToCodec as aZ, convertIProofToCodec 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, convertStateMachineEnumToString as b0, convertStateMachineIdToEnum as b1, decodeERC7821ExecuteBatch as b2, decodeUserOpScale as b3, encodeERC7821ExecuteBatch as b4, encodeISMPMessage as b5, encodeUserOpScale as b6, getChainId as b7, getConfigByStateMachineId as b8, getViemChain as b9, hyperbridgeAddress as ba, pharosAtlantic as bb, pharosMainnet as bc, polkadotAssetHubPaseo as bd, polkadotHubMainnet as be, tronChainIds as bf, tronNile as bg, _default as bh, 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 };