UNPKG

@bsv/wallet-toolbox

Version:

BRC100 conforming wallet, wallet storage and wallet signer components

12 lines 692 B
import { FiatExchangeRates, WalletServicesOptions } from '../../sdk/WalletServices.interfaces'; export declare function updateChaintracksFiatExchangeRates(targetCurrencies: string[], options: WalletServicesOptions): Promise<FiatExchangeRates>; export declare function updateExchangeratesapi(targetCurrencies: string[], options: WalletServicesOptions): Promise<FiatExchangeRates>; export interface ExchangeRatesIoApi { success: boolean; timestamp: number; base: 'EUR' | 'USD'; date: string; rates: Record<string, number>; } export declare function getExchangeRatesIo(key: string, symbols?: string[]): Promise<ExchangeRatesIoApi>; //# sourceMappingURL=exchangeRates.d.ts.map