@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
13 lines (11 loc) • 318 B
JavaScript
class AccountRequiresMemoError extends Error {
accountId;
operationIndex;
constructor(message, accountId, operationIndex) {
super(message);
this.accountId = accountId;
this.operationIndex = operationIndex;
}
}
export { AccountRequiresMemoError };
//# sourceMappingURL=account_requires_memo.js.map