import type { FeeTier } from '@lifi/perps-types'; /** * Hyperliquid provider key (exported from the package index as * `HYPERLIQUID_PROVIDER_KEY`). * * @public */ export declare const PROVIDER_KEY = "hyperliquid"; /** * Default Hyperliquid REST base URL. * * @public */ export declare const DEFAULT_HYPERLIQUID_API_URL = "https://api.hyperliquid.xyz"; /** * Hyperliquid explorer RPC endpoint. It serves the `userDetails` transaction * window from a host separate from the REST API, and it answers a browser * cross-origin POST. * * @public */ export declare const HYPERLIQUID_EXPLORER_RPC_URL = "https://rpc.hyperliquid.xyz/explorer"; /** * Approximate published baseline maker/taker fee tier for Hyperliquid, used to * seed fee math before the live account `feeTier` resolves. Rates are fractions * (not basis points): `0.00015` = 0.015% maker, `0.00045` = 0.045% taker. * * @public */ export declare const HYPERLIQUID_FEE_TIER_FALLBACK: FeeTier; /** @internal */ export declare const DEFAULT_HISTORY_LIMIT = 50; /** @internal */ export declare const MAX_HISTORY_LIMIT = 200; /** * Main perps DEX uses an empty sub-dex name on the wire; surfaced as * 'hyperliquid' in normalised market IDs. * * @internal */ export declare const MAIN_DEX_NAME = ""; /** @internal */ export declare const MAIN_MARKET_ID = "hyperliquid"; /** @internal */ export declare const SPOT_MARKET_ID = "spot"; //# sourceMappingURL=constants.d.ts.map