This guide describes how to consistently catch, inspect, and handle errors thrown by the PocketPay SDK.
The SDK surfaces all application, validation, and network errors through the custom PocketPayError class. By understanding its structure and error codes, you can provide robust fallback behavior and clean user feedback.
All errors thrown by the SDK's modules (Wallet, Payments, Transactions, and Soroban Vault) are instances of PocketPayError.
| Property | Type | Description |
|---|---|---|
message |
string |
A human-readable description of the error (inherited from standard Error). |
code |
string |
A machine-readable string identifier representing the specific error type. |
statusCode |
number | undefined |
The HTTP status code returned by the remote service (Horizon, Friendbot, etc.), if applicable. |
cause |
Error | undefined |
The original underlying error (e.g., Axios/Fetch error or Stellar SDK error) that triggered this error. |
Errors are grouped into four main categories based on where and why they occurred.
These errors are thrown locally before any network requests are made.
INVALID_PUBLIC_KEY: The provided public key is not a valid Stellar address (must start withGand be 56 characters).INVALID_SECRET_KEY: The provided secret key is not a valid Stellar private key (must start withSand be 56 characters).INVALID_AMOUNT: The amount is not a positive number or is formatted incorrectly.INVALID_AMOUNT_PRECISION: The amount exceeds the maximum Stellar precision of 7 decimal places (e.g.,1.12345678).INVALID_MEMO: The transaction memo text exceeds the Stellar limit of 28 bytes.SELF_PAYMENT: The source account and destination account are identical.
These errors occur during interactions with the Stellar Horizon network.
ACCOUNT_NOT_FOUND(HTTP 404): The requested public key has not been funded or created on the ledger yet.PAYMENT_FAILED(HTTP 400): Stellar Core rejected the transaction. The error message will contain Horizon-specific transaction and operation result codes (e.g.,tx_insufficient_balance,op_no_destination).SEND_ERROR: A general failure occurred while building or submitting the payment transaction.TX_FETCH_ERROR: Failed to query transaction history.PAYMENTS_FETCH_ERROR: Failed to query payment operation history.BALANCE_ERROR: Failed to retrieve the account balance.
These errors are specific to the testnet Friendbot service.
TESTNET_ONLY: Attempted to callfundTestnetAccountwhile configured for mainnet.FRIENDBOT_ERROR(HTTP 400/404/500): Friendbot returned a non-2xx response. ThestatusCodeproperty contains the HTTP response code.FUND_ERROR: A network or system failure occurred while requesting funds.
These errors are related to Smart Contract operations on the Soroban network.
MISSING_CONTRACT_ID: The Vault contract ID was not passed as a parameter and is missing from theVAULT_CONTRACT_IDenvironment variable.VAULT_DEPOSIT_ERROR: Simulation or submission failed while depositing XLM into the vault.VAULT_WITHDRAW_ERROR: Simulation or submission failed while withdrawing XLM from the vault.VAULT_BALANCE_ERROR: Simulation failed while querying the vault balance.
Always import PocketPayError to verify if a caught exception belongs to the SDK.
import { sendXLM, PocketPayError } from '@axionvera/pocketpay-sdk';
async function executePayment() {
try {
const result = await sendXLM({
sourceSecret: 'S...',
destination: 'G...',
amount: '10.50',
memo: 'Invoice #104'
});
console.log('Payment successful! Hash:', result.hash);
} catch (error) {
if (error instanceof PocketPayError) {
console.error(`SDK Error [${error.code}]: ${error.message}`);
} else {
console.error('Unknown application error:', error);
}
}
}Use the code property to take action, correct inputs, or show helpful hints.
import { getBalance, PocketPayError } from '@axionvera/pocketpay-sdk';
async function displayBalance(publicKey: string) {
try {
const balance = await getBalance(publicKey);
return balance.nativeBalance;
} catch (error) {
if (error instanceof PocketPayError) {
switch (error.code) {
case 'INVALID_PUBLIC_KEY':
showToast('Please enter a valid 56-character Stellar public key.');
break;
case 'ACCOUNT_NOT_FOUND':
showToast('This account does not exist on the network. It needs to be funded to activate.');
break;
default:
showToast('Failed to retrieve balance. Please try again later.');
}
}
}
}If the error was caused by a lower-level HTTP client or library failure, inspect error.cause.
import { fundTestnetAccount, PocketPayError } from '@axionvera/pocketpay-sdk';
async function fundAccount(publicKey: string) {
try {
await fundTestnetAccount(publicKey);
} catch (error) {
if (error instanceof PocketPayError) {
if (error.code === 'FRIENDBOT_ERROR') {
console.error(`Friendbot failed with status ${error.statusCode}`);
// Read raw response details from the cause if necessary
if (error.cause) {
console.error('Underlying HTTP details:', error.cause.message);
}
}
}
}
}When building customer-facing interfaces, translate machine-readable SDK error codes into clear, friendly guidance. Avoid displaying raw stack traces or complex developer messages directly to the end user.
| Error Code | Best Practice User-Facing Message |
|---|---|
INVALID_PUBLIC_KEY |
"The Stellar address you entered is invalid. Make sure it starts with 'G'." |
INVALID_SECRET_KEY |
"The secret key is invalid. Please verify and try again." |
INVALID_AMOUNT |
"Please enter a positive numeric amount." |
INVALID_AMOUNT_PRECISION |
"Amounts cannot have more than 7 decimal places." |
INVALID_MEMO |
"Memo is too long. Please shorten it to 28 characters or fewer." |
SELF_PAYMENT |
"You cannot send payments to your own account." |
ACCOUNT_NOT_FOUND |
"This account is inactive. Fund it with XLM first to activate it." |
PAYMENT_FAILED |
"Transaction failed. Please ensure you have sufficient balance and network fees." |
Caution
CRITICAL SECURITY REQUIREMENT
Never log raw error objects or arguments that contain secret keys, seed phrases, passwords, or personally identifiable information (PII).
SDK errors may be caught in contexts where secrets are present in the local scope. When writing logging logic:
- DO NOT serialize or log the entire local state, arguments, or raw requests.
- DO NOT log
sourceSecretor keypairs. - DO log only the safe, non-sensitive properties of
PocketPayError:// SAFE Logging Pattern logger.error('Payment failed', { errorCode: error.code, httpStatus: error.statusCode, errorMessage: error.message, // Checked to ensure no secrets are dynamically embedded });
- Be cautious with
error.cause. If the underlying HTTP library logs full request URLs containing query parameters or headers, sanitize them before writing to your logs.