@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
16 lines • 465 B
TypeScript
type Props = {
baseUrl?: string;
currencyFromId?: string;
providers: string[];
additionalCoinsFlag?: boolean;
};
export type ResponseData = {
currencyGroups: CurrencyGroup[];
};
type CurrencyGroup = {
network: string;
supportedCurrencies: string[];
};
export declare function fetchCurrencyTo({ baseUrl, currencyFromId, providers, additionalCoinsFlag, }: Props): Promise<string[]>;
export {};
//# sourceMappingURL=fetchCurrencyTo.d.ts.map