@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
20 lines • 409 B
TypeScript
export type ExchangeProvider = {
id: string;
name: string;
supportedOrders: {
sell?: {
fee: number;
max?: number;
min?: number;
};
buy?: {
fee: number;
max?: number;
min?: number;
};
};
appId: string;
logo: string;
supportUrl?: string;
};
//# sourceMappingURL=provider.d.ts.map