@ledgerhq/coin-stellar
Version:
Ledger Stellar Coin integration
16 lines • 1.34 kB
JavaScript
// SPDX-FileCopyrightText: © 2026 LEDGER SAS
// SPDX-License-Identifier: Apache-2.0
import { createCustomErrorClass } from '@ledgerhq/errors';
export const StellarBroadcastFailedError = createCustomErrorClass('StellarBroadcastFailedError');
export const StellarBurnAddressError = createCustomErrorClass('StellarBurnAddressError');
export const StellarAssetRequired = createCustomErrorClass('StellarAssetRequired');
export const StellarMuxedAccountNotExist = createCustomErrorClass('StellarMuxedAccountNotExist');
export const StellarWrongMemoFormat = createCustomErrorClass('StellarWrongMemoFormat');
export const StellarAssetNotAccepted = createCustomErrorClass('StellarAssetNotAccepted');
export const StellarAssetNotFound = createCustomErrorClass('StellarAssetNotFound');
export const StellarNotEnoughNativeBalance = createCustomErrorClass('StellarNotEnoughNativeBalance');
export const StellarFeeSmallerThanRecommended = createCustomErrorClass('StellarFeeSmallerThanRecommended');
export const StellarFeeSmallerThanBase = createCustomErrorClass('StellarFeeSmallerThanBase');
export const StellarNotEnoughNativeBalanceToAddTrustline = createCustomErrorClass('StellarNotEnoughNativeBalanceToAddTrustline');
export const StellarSourceHasMultiSign = createCustomErrorClass('StellarSourceHasMultiSign');
//# sourceMappingURL=errors.js.map