UNPKG

@ledgerhq/coin-stellar

Version:
16 lines 627 B
import { type CurrencyConfig } from "@ledgerhq/coin-framework/config"; export type StellarConfig = { explorer: { url: string; fetchLimit?: number; }; useStaticFees?: boolean; enableNetworkLogs?: boolean; }; export type StellarCoinConfig = CurrencyConfig & StellarConfig; declare const coinConfig: { setCoinConfig: (config: import("@ledgerhq/coin-framework/config").CoinConfig<StellarCoinConfig>) => void; getCoinConfig: (currency?: import("@ledgerhq/types-cryptoassets").CryptoCurrency | undefined) => StellarCoinConfig; }; export default coinConfig; //# sourceMappingURL=config.d.ts.map