import type { Address } from "viem"; export type TradingType = "long" | "short"; export interface TradingPairConfigPayload { name: string; type: TradingType; id: string; tokenOutAddress: Address; baseOfTokenOutAddress?: Address; pricePair: [string, string]; chainId: number; network: string; creditManagers: Array
; hideInProd?: boolean; maxLeverage?: number; }