import type { ChainType, CurrencyWithAmount } from "@coin-voyage/shared/types"; import { ROUTE } from "./routes"; export type InitState = { payOrderId: string; chainType: ChainType; open: boolean; walletId: string; route?: ROUTE; }; export type CurrencyAndQuoteID = CurrencyWithAmount & { quote_id?: string; };