@ledgerhq/coin-stellar
Version:
Ledger Stellar Coin integration
10 lines • 364 B
JavaScript
// SPDX-FileCopyrightText: © 2026 LEDGER SAS
// SPDX-License-Identifier: Apache-2.0
import { parseCurrencyUnit } from '@ledgerhq/coin-module-framework/currencies';
export const stellarUnit = {
name: 'Lumen',
code: 'XLM',
magnitude: 7,
};
export const parseAPIValue = (value) => parseCurrencyUnit(stellarUnit, value);
//# sourceMappingURL=common.js.map