export type Market = {
    id: string;
    base: string;
    quote: string;
    type?: string;
};
