import { networks } from './networks'; import { Config, Partners, TimeDuration } from './types'; export declare const SPOT_VERSION: string | undefined; export declare const getApiEndpoint: (isDev: boolean) => "https://order-sink-dev.orbs.network" | "https://order-sink.orbs.network" | "https://order-sink-v2.orbs.network"; export declare const getOrderApiEndpoints: (isDev: boolean) => string[]; export declare const getOrderSinkExchange: ({ endpoint, exchange, partner, }: { endpoint: string; exchange?: string; partner?: Partners; }) => string | undefined; export declare const SUGGEST_CHUNK_VALUE = 100; export declare const MIN_CHUNKS = 1; export declare const MIN_FILL_DELAY_MILLIS: number; export declare const MAX_ORDER_DURATION_MILLIS: number; export declare const MIN_ORDER_DURATION_MILLIS: number; export declare const MIN_FILL_DELAY_MINUTES: number; export declare const THE_GRAPH_ORDERS_API: { [networks.eth .id]: string; [networks.bsc .id]: string; [networks.poly .id]: string; [networks.arb .id]: string; [networks.base .id]: string; [networks.sei .id]: string; [networks.linea .id]: string; [networks.sonic .id]: string; [networks.ftm .id]: string; [networks.katana .id]: string; [networks.avax .id]: string; [networks.bera .id]: string; [networks.flare.id]: string; [networks.cronosZkEvm.id]: string; }; export declare const zeroAddress = "0x0000000000000000000000000000000000000000"; export declare const nativeTokenAddresses: string[]; export declare const maxUint256 = "115792089237316195423570985008687907853269984665640564039457584007913129639935"; export declare const getPartnerIdentifier: (config: Config) => string; export declare const LEGACY_EXCHANGES_MAP: Record; export declare const DEFAULT_FILL_DELAY: TimeDuration; export declare const FEES = 0.25; export declare const EXCLUSIVITY_OVERRIDE_BPS = "100"; export declare const REPERMIT_PRIMARY_TYPE: "RePermitWitnessTransferFrom"; export declare const EIP712_TYPES: { RePermitWitnessTransferFrom: { name: string; type: string; }[]; Exchange: { name: string; type: string; }[]; Input: { name: string; type: string; }[]; Order: { name: string; type: string; }[]; Output: { name: string; type: string; }[]; TokenPermissions: { name: string; type: string; }[]; }; export declare const ORBS_TWAP_FAQ_URL = "https://www.orbs.com/dtwap-and-dlimit-faq/"; export declare const ORBS_SLTP_FAQ_URL = "https://www.orbs.com/dtwap-and-dlimit-faq/#dSLTP"; export declare const ORBS_LOGO = "https://raw.githubusercontent.com/orbs-network/twap-ui/master/logo/orbslogo.svg"; export declare const ORBS_LOGO_FALLBACK = "https://www.orbs.com/assets/img/common/logo.svg"; export declare const ORBS_WEBSITE_URL = "https://www.orbs.com/"; export declare const DISCLAIMER_URL = "https://www.orbs.com/dtwap-dlimit-disclaimer"; export declare enum QUERY_PARAMS { FRESHNESS = "freshness", MIN_CHUNK_SIZE_USD = "minChunkSizeUsd", ENV = "env", DURATION = "duration", IGNORE_ERRORS = "ignore-errors" } export declare const DEFAULT_STOP_LOSS_PERCENTAGE = "-5"; export declare const DEFAULT_TAKE_PROFIT_PERCENTAGE = "10"; export declare const DEFAULT_STOP_LOSS_LIMIT_PERCENTAGE = "-10"; export declare const DEFAULT_TAKE_PROFIT_LIMIT_PERCENTAGE = "5"; export declare const CRASH_ERROR_MESSAGE = "Something went wrong"; //# sourceMappingURL=consts.d.ts.map