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