package result
- Alphabetic
- Public
- Protected
Type Members
- sealed abstract class AccountMergeResult extends ProcessedOperationResult
- case class AccountMergeSuccess(sourceBalance: NativeAmount) extends AccountMergeResult with Product with Serializable
AccountMerge operation was successful.
- sealed abstract class AllowTrustResult extends ProcessedOperationResult
- sealed abstract class BeginSponsoringFutureReservesResult extends ProcessedOperationResult
- sealed abstract class BumpSequenceResult extends ProcessedOperationResult
- sealed abstract class ChangeTrustResult extends ProcessedOperationResult
- sealed abstract class ClaimClaimableBalanceResult extends ProcessedOperationResult
- sealed abstract class CreateAccountResult extends ProcessedOperationResult
- sealed abstract class CreateClaimableBalanceResult extends ProcessedOperationResult
- case class CreateClaimableBalanceSuccess(id: ClaimableBalanceId) extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation was successful.
CreateClaimableBalance operation was successful.
- id
the identifier of the claimable balance created.
- sealed abstract class CreatePassiveSellOfferResult extends ProcessedOperationResult
- case class CreatePassiveSellOfferSuccess(offer: OfferEntry, offerClaims: List[OfferClaim]) extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation was successful.
- sealed abstract class EndSponsoringFutureReservesResult extends ProcessedOperationResult
- case class FeeBumpHistory(maxFee: NativeAmount, hash: String, signatures: List[String]) extends Product with Serializable
- case class FeeBumpedTransactionResult(feeCharged: NativeAmount, result: TransactionResultCode, operationResults: List[OperationResult], hash: ByteString) extends Product with Serializable
After attempting a fee bump, the results of the transaction to be bumped
- case class InflationPayout(recipient: PublicKey, amount: NativeAmount) extends Product with Serializable
- sealed abstract class InflationResult extends ProcessedOperationResult
- case class InflationSuccess(payouts: Seq[InflationPayout]) extends InflationResult with Product with Serializable
Inflation operation was successful.
- sealed abstract class ManageBuyOfferResult extends ProcessedOperationResult
- case class ManageBuyOfferSuccess(claims: Seq[OfferClaim], entry: Option[OfferEntry], effect: ManageOfferEffect) extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation was successful.
ManageOffer operation was successful.
- claims
the trades that were effected as a result of posting this offer.
- entry
the offer entry that was newly created or updated.
- sealed abstract class ManageDataResult extends ProcessedOperationResult
- sealed abstract class ManageSellOfferResult extends ProcessedOperationResult
- case class ManageSellOfferSuccess(claims: List[OfferClaim], entry: Option[OfferEntry], effect: ManageOfferEffect) extends ManageSellOfferResult with Product with Serializable
ManageOffer operation was successful.
ManageOffer operation was successful.
- claims
the trades that were effected as a result of posting this offer.
- entry
the offer entry that was newly created or updated.
- case class OfferClaim(seller: PublicKey, offerId: Long, sold: Amount, bought: Amount) extends Product with Serializable
- abstract class OperationResult extends AnyRef
The result of an operation previously submitted to the network.
- case class PathPaymentReceiveNoIssuer(asset: Asset) extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because there was no issuer for one or more of the assets.
PathPayment operation failed because there was no issuer for one or more of the assets.
- asset
the asset for which there's no issuer.
- sealed abstract class PathPaymentReceiveResult extends ProcessedOperationResult
- case class PathPaymentReceiveSuccess(claims: Seq[OfferClaim], destination: PublicKey, paid: Amount) extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation was successful.
PathPayment operation was successful.
- claims
the trades that were effected during this path payment.
- case class PathPaymentSendNoIssuer(asset: Asset) extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because there was no issuer for one or more of the assets.
PathPayment operation failed because there was no issuer for one or more of the assets.
- asset
the asset for which there's no issuer.
- sealed abstract class PathPaymentSendResult extends ProcessedOperationResult
- case class PathPaymentSendSuccess(claims: Seq[OfferClaim], destination: PublicKey, paid: Amount) extends PathPaymentSendResult with Product with Serializable
PathPayment operation was successful.
PathPayment operation was successful.
- claims
the trades that were effected during this path payment.
- sealed abstract class PaymentResult extends ProcessedOperationResult
- abstract class ProcessedOperationResult extends OperationResult
The result of an operation previously submitted to, and attempted to be processed by the network.
- sealed abstract class RevokeSponsorshipResult extends ProcessedOperationResult
- sealed abstract class SetOptionsResult extends ProcessedOperationResult
- case class TransactionFailure(feeCharged: NativeAmount, operationResults: Seq[OperationResult]) extends TransactionNotSuccessful with Product with Serializable
The transaction failed when processing the operations.
- case class TransactionHistory(hash: String, ledgerId: Long, createdAt: ZonedDateTime, account: AccountId, sequence: Long, maxFee: NativeAmount, feeCharged: NativeAmount, operationCount: Int, memo: Memo, signatures: Seq[String], envelopeXDR: String, resultXDR: String, resultMetaXDR: String, feeMetaXDR: String, validAfter: Option[ZonedDateTime], validBefore: Option[ZonedDateTime], feeBump: Option[FeeBumpHistory]) extends Product with Serializable
A transaction that has been included in the ledger sometime in the past.
- case class TransactionNotAttempted(reason: TransactionResultCode, feeCharged: NativeAmount, innerTransaction: Option[FeeBumpedTransactionResult]) extends TransactionNotSuccessful with Product with Serializable
The transaction failed for the reason given prior to any operations being attempted.
The transaction failed for the reason given prior to any operations being attempted.
If the reasons is fee bump related, then innerTransaction must be defined. Otherwise not.
- sealed trait TransactionNotSuccessful extends TransactionResult
- sealed trait TransactionResult extends AnyRef
- case class TransactionSuccess(feeCharged: NativeAmount, operationResults: Seq[OperationResult], hash: ByteString) extends TransactionResult with Product with Serializable
The transaction and all contained operations were successfully processed.
Value Members
- case object AccountMergeDestinationFull extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the resulting destination account balance would be too large.
- case object AccountMergeHasSubEntries extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the source account has trustlines and/or offers.
- case object AccountMergeImmutable extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the source account has the AUTH_IMMUTABLE flag set.
- case object AccountMergeIsSponsor extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the account is sponsoring other accounts.
- case object AccountMergeMalformed extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the request was malformed.
AccountMerge operation failed because the request was malformed. E.g. The source and destination accounts are the same.
- case object AccountMergeNoAccount extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because the destination account does not exist.
- object AccountMergeResult
- case object AccountMergeSeqNumTooFar extends AccountMergeResult with Product with Serializable
AccountMerge operation failed because it would be possible to recreate it with an earlier sequence number.
- case object AddDataInvalidName extends ManageDataResult with Product with Serializable
ManageData operation failed because the name was not a valid string.
- case object AddDataLowReserve extends ManageDataResult with Product with Serializable
ManageData operation failed because there was insufficient reserve to support the addition of a new data entry.
- case object AllowTrustCannotRevoke extends AllowTrustResult with Product with Serializable
AllowTrust operation failed because the source account is unable to revoke trust.
- case object AllowTrustMalformed extends AllowTrustResult with Product with Serializable
AllowTrust operation failed because the request was malformed.
AllowTrust operation failed because the request was malformed. E.g. The limit was less than zero, or the asset was malformed, or the native asset was provided.
- case object AllowTrustNoTrustLine extends AllowTrustResult with Product with Serializable
AllowTrust operation failed because the trustor does not have a trustline.
- case object AllowTrustNotRequired extends AllowTrustResult with Product with Serializable
AllowTrust operation failed because the source account does not require trust.
- object AllowTrustResult
- case object AllowTrustSelfNotAllowed extends AllowTrustResult with Product with Serializable
AllowTrust operation failed because it is not valid to trust your own issued asset.
- case object AllowTrustSuccess extends AllowTrustResult with Product with Serializable
AllowTrust operation was successful.
- case object BadAuthenticationResult extends OperationResult with Product with Serializable
The operation was not attempted, because there were too few valid signatures, or the wrong network was used.
- case object BeginSponsoringFutureReservesAlreadySponsored extends BeginSponsoringFutureReservesResult with Product with Serializable
BeginSponsoringFutureReserves operation failed because there was insufficient reserve funds to add another signer.
- case object BeginSponsoringFutureReservesMalformed extends BeginSponsoringFutureReservesResult with Product with Serializable
BeginSponsoringFutureReserves operation failed because the maximum number of signers has already been met.
- case object BeginSponsoringFutureReservesRecursive extends BeginSponsoringFutureReservesResult with Product with Serializable
BeginSponsoringFutureReserves operation failed because there was an invalid combination of set/clear flags.
- object BeginSponsoringFutureReservesResult
- case object BeginSponsoringFutureReservesSuccess extends BeginSponsoringFutureReservesResult with Product with Serializable
BeginSponsoringFutureReserves operation was successful.
- case object BumpSequenceBadSeqNo extends BumpSequenceResult with Product with Serializable
BumpSequence operation failed because the desired sequence number was not within valid bounds.
- object BumpSequenceResult
- case object BumpSequenceSuccess extends BumpSequenceResult with Product with Serializable
BumpSequence operation was successful.
- case object ChangeTrustInvalidLimit extends ChangeTrustResult with Product with Serializable
ChangeTrust operation failed because the limit was zero or less than the current balance.
- case object ChangeTrustLowReserve extends ChangeTrustResult with Product with Serializable
ChangeTrust operation failed because there is not enough funds in reserve to create a new trustline.
- case object ChangeTrustMalformed extends ChangeTrustResult with Product with Serializable
ChangeTrust operation failed because the request was malformed.
ChangeTrust operation failed because the request was malformed. E.g. The limit was less than zero, or the asset was malformed, or the native asset was provided.
- case object ChangeTrustNoIssuer extends ChangeTrustResult with Product with Serializable
ChangeTrust operation failed because the issuer account does not exist.
- object ChangeTrustResult
- case object ChangeTrustSelfNotAllowed extends ChangeTrustResult with Product with Serializable
ChangeTrust operation failed because it is not valid to trust your own issued asset.
- case object ChangeTrustSuccess extends ChangeTrustResult with Product with Serializable
ChangeTrust operation was successful.
- case object ClaimClaimableBalanceCannotClaim extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation failed because the balance could not be claimed
- case object ClaimClaimableBalanceDoesNotExist extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation failed because the balance did not exist
- case object ClaimClaimableBalanceLineFull extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation failed because the trustline is full
- case object ClaimClaimableBalanceNoTrust extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation failed because the required trustline is not present
- case object ClaimClaimableBalanceNotAuthorized extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation failed because the requester was not authorised
- object ClaimClaimableBalanceResult
- case object ClaimClaimableBalanceSuccess extends ClaimClaimableBalanceResult with Product with Serializable
ClaimClaimableBalance operation was successful.
- case object CreateAccountAlreadyExists extends CreateAccountResult with Product with Serializable
CreateAccount operation failed because the destination account already exists.
- case object CreateAccountLowReserve extends CreateAccountResult with Product with Serializable
CreateAccount operation failed because there was insufficient funds sent to cover the base reserve.
- case object CreateAccountMalformed extends CreateAccountResult with Product with Serializable
CreateAccount operation failed because the destination account was malformed.
- object CreateAccountResult
- case object CreateAccountSuccess extends CreateAccountResult with Product with Serializable
CreateAccount operation was successful.
- case object CreateAccountUnderfunded extends CreateAccountResult with Product with Serializable
CreateAccount operation failed because there was insufficient funds in the source account.
- case object CreateClaimableBalanceLowReserve extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation failed because the declared reserve was insufficient
- case object CreateClaimableBalanceMalformed extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation failed because the request was malformed
- case object CreateClaimableBalanceNoTrust extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation failed because the required trustline does not exist
- case object CreateClaimableBalanceNotAuthorized extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation failed because the account was not authorized for this asset
- object CreateClaimableBalanceResult
- case object CreateClaimableBalanceUnderfunded extends CreateClaimableBalanceResult with Product with Serializable
CreateClaimableBalance operation failed because the source account had insufficient funds
- case object CreatePassiveSellOfferBuyNoAuth extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because the account is not authorised to buy the sought asset.
- case object CreatePassiveSellOfferBuyNoIssuer extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because there is no issuer for the asset being sought.
- case object CreatePassiveSellOfferBuyNoTrust extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because there was no trustline for what was being sought.
- case object CreatePassiveSellOfferCrossSelf extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because it would have matched with an offer from the same account.
- case object CreatePassiveSellOfferLineFull extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because it would have put the account's balance over the limit for the sought asset.
- case object CreatePassiveSellOfferLowReserve extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because the cumulative amount of it & all current offers from the same account would exceed the account's available balance.
- case object CreatePassiveSellOfferMalformed extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because the request was malformed.
CreatePassiveSellOffer operation failed because the request was malformed. E.g. Either of the assets were invalid, the assets were the same as each other, the amount was less than zero, or the price numerator or denominator were zero or less.
- object CreatePassiveSellOfferResult
- case object CreatePassiveSellOfferSellNoAuth extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because the account is not authorised to sell the offered asset.
- case object CreatePassiveSellOfferSellNoIssuer extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because there is no issuer for the asset being offered.
- case object CreatePassiveSellOfferSellNoTrust extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because there was no trustline for what was being offered.
CreatePassiveSellOffer operation failed because there was no trustline for what was being offered. (This also implies the account was underfunded).
- case object CreatePassiveSellOfferUnderfunded extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because there was an insufficient balance of the asset being offered to meet the offer.
- case object DeleteDataNameNotFound extends ManageDataResult with Product with Serializable
ManageData operation failed because there was no data entry with the given name.
- case object EndSponsoringFutureReservesNotSponsored extends EndSponsoringFutureReservesResult with Product with Serializable
EndSponsoringFutureReserves operation failed because there was insufficient reserve funds to add another signer.
- object EndSponsoringFutureReservesResult
- case object EndSponsoringFutureReservesSuccess extends EndSponsoringFutureReservesResult with Product with Serializable
EndSponsoringFutureReserves operation was successful.
- case object ExceededWorkLimitResult extends OperationResult with Product with Serializable
The operation was not attempted, because the operation did too much work.
- object FeeBumpedTransactionResult extends Serializable
- case object InflationNotDue extends InflationResult with Product with Serializable
Inflation operation failed because inflation is not yet due.
- object InflationPayout extends Serializable
- object InflationResult
- case object ManageBuyOfferBuyNoAuth extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because the account is not authorised to buy the sought asset.
- case object ManageBuyOfferBuyNoIssuer extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because there is no issuer for the asset being sought.
- case object ManageBuyOfferBuyNoTrust extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because there was no trustline for what was being sought.
- case object ManageBuyOfferCrossSelf extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because it would have matched with an offer from the same account.
- case object ManageBuyOfferLineFull extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because it would have put the account's balance over the limit for the sought asset.
- case object ManageBuyOfferLowReserve extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because the cumulative amount of it & all current offers from the same account would exceed the account's available balance.
- case object ManageBuyOfferMalformed extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because the request was malformed.
ManageOffer operation failed because the request was malformed. E.g. Either of the assets were invalid, the assets were the same as each other, the amount was less than zero, or the price numerator or denominator were zero or less.
- object ManageBuyOfferResult
- case object ManageBuyOfferSellNoAuth extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because the account is not authorised to sell the offered asset.
- case object ManageBuyOfferSellNoIssuer extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because there is no issuer for the asset being offered.
- case object ManageBuyOfferSellNoTrust extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because there was no trustline for what was being offered.
ManageOffer operation failed because there was no trustline for what was being offered. (This also implies the account was underfunded).
- case object ManageBuyOfferUnderfunded extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because there was an insufficient balance of the asset being offered to meet the offer.
- case object ManageDataNotSupportedYet extends ManageDataResult with Product with Serializable
ManageData operation failed because the network was not yet prepared to support this operation.
- object ManageDataResult
- case object ManageDataSuccess extends ManageDataResult with Product with Serializable
ManageData operation was successful.
- case object ManageSellOfferBuyNoAuth extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because the account is not authorised to buy the sought asset.
- case object ManageSellOfferBuyNoIssuer extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because there is no issuer for the asset being sought.
- case object ManageSellOfferBuyNoTrust extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because there was no trustline for what was being sought.
- case object ManageSellOfferCrossSelf extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because it would have matched with an offer from the same account.
- case object ManageSellOfferLineFull extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because it would have put the account's balance over the limit for the sought asset.
- case object ManageSellOfferLowReserve extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because the cumulative amount of it & all current offers from the same account would exceed the account's available balance.
- case object ManageSellOfferMalformed extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because the request was malformed.
ManageOffer operation failed because the request was malformed. E.g. Either of the assets were invalid, the assets were the same as each other, the amount was less than zero, or the price numerator or denominator were zero or less.
- object ManageSellOfferResult
- case object ManageSellOfferSellNoAuth extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because the account is not authorised to sell the offered asset.
- case object ManageSellOfferSellNoIssuer extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because there is no issuer for the asset being offered.
- case object ManageSellOfferSellNoTrust extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because there was no trustline for what was being offered.
ManageOffer operation failed because there was no trustline for what was being offered. (This also implies the account was underfunded).
- case object ManageSellOfferUnderfunded extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because there was an insufficient balance of the asset being offered to meet the offer.
- case object NoSourceAccountResult extends OperationResult with Product with Serializable
The operation was not attempted, because the source account was not found.
- object OfferClaim extends Serializable
- case object OperationNotSupportedResult extends OperationResult with Product with Serializable
The operation was not attempted, because the requested operation is not supported by the network.
- object OperationResult
- case object PathPaymentReceiveDestinationLineFull extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because it would have put the destination account's balance over the limit for the asset.
- case object PathPaymentReceiveDestinationNoTrust extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the destination account does not have a trustline for the asset.
- case object PathPaymentReceiveDestinationNotAuthorised extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the destination account is not authorised to hold the asset.
- case object PathPaymentReceiveMalformed extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the request was malformed.
PathPayment operation failed because the request was malformed. E.g. The destination or sendMax amounts were negative, or the any of the asset were invalid.
- case object PathPaymentReceiveNoDestination extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the destination account did not exist.
- case object PathPaymentReceiveOfferCrossesSelf extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because it would have resulted in matching its own offer.
- object PathPaymentReceiveResult
- case object PathPaymentReceiveSendMaxExceeded extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because it could not be effected without sending more than the specified maximum.
- case object PathPaymentReceiveSourceNoTrust extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the sender has not trustline for the specified asset.
PathPayment operation failed because the sender has not trustline for the specified asset. (Additionally, this implies the sender doesn't have the funds to send anyway).
- case object PathPaymentReceiveSourceNotAuthorised extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because the sender is not authorised to send the specified asset.
- case object PathPaymentReceiveTooFewOffers extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because there were too few offers to satisfy the path.
- case object PathPaymentReceiveUnderfunded extends PathPaymentReceiveResult with Product with Serializable
PathPayment operation failed because there were insufficient funds in the source account.
- case object PathPaymentSendDestMinNotMet extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because it could not be effected without sending less than the specified minimum.
- case object PathPaymentSendDestinationLineFull extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because it would have put the destination account's balance over the limit for the asset.
- case object PathPaymentSendDestinationNoTrust extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the destination account does not have a trustline for the asset.
- case object PathPaymentSendDestinationNotAuthorised extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the destination account is not authorised to hold the asset.
- case object PathPaymentSendMalformed extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the request was malformed.
PathPayment operation failed because the request was malformed. E.g. The destination or sendMax amounts were negative, or the any of the asset were invalid.
- case object PathPaymentSendNoDestination extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the destination account did not exist.
- case object PathPaymentSendOfferCrossesSelf extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because it would have resulted in matching its own offer.
- object PathPaymentSendResult
- case object PathPaymentSendSourceNoTrust extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the sender has not trustline for the specified asset.
PathPayment operation failed because the sender has not trustline for the specified asset. (Additionally, this implies the sender doesn't have the funds to send anyway).
- case object PathPaymentSendSourceNotAuthorised extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because the sender is not authorised to send the specified asset.
- case object PathPaymentSendTooFewOffers extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because there were too few offers to satisfy the path.
- case object PathPaymentSendUnderfunded extends PathPaymentSendResult with Product with Serializable
PathPayment operation failed because there were insufficient funds in the source account.
- case object PaymentDestinationLineFull extends PaymentResult with Product with Serializable
Payment operation failed because it would have put the destination account's balance over the limit for the asset.
- case object PaymentDestinationNoTrust extends PaymentResult with Product with Serializable
Payment operation failed because the destination account does not have a trustline for the asset.
- case object PaymentDestinationNotAuthorised extends PaymentResult with Product with Serializable
Payment operation failed because the destination account is not authorised to hold the asset.
- case object PaymentMalformed extends PaymentResult with Product with Serializable
Payment operation failed because the request was malformed.
Payment operation failed because the request was malformed. E.g. The amount was negative, or the asset was invalid.
- case object PaymentNoDestination extends PaymentResult with Product with Serializable
Payment operation failed because the destination account did not exist.
- case object PaymentNoIssuer extends PaymentResult with Product with Serializable
Payment operation failed because there was no issuer specified for the asset.
- object PaymentResult
- case object PaymentSourceNoTrust extends PaymentResult with Product with Serializable
Payment operation failed because the sender has not trustline for the specified asset.
Payment operation failed because the sender has not trustline for the specified asset. (Additionally, this implies the sender doesn't have the funds to send anyway).
- case object PaymentSourceNotAuthorised extends PaymentResult with Product with Serializable
Payment operation failed because the sender is not authorised to send the specified asset.
- case object PaymentSuccess extends PaymentResult with Product with Serializable
Payment operation was successful.
- case object PaymentUnderfunded extends PaymentResult with Product with Serializable
Payment operation failed because there were insufficient funds.
- case object RevokeSponsorshipDoesNotExist extends RevokeSponsorshipResult with Product with Serializable
RevokeSponsorship operation failed because the sponsorship didn't exist.
- case object RevokeSponsorshipLowReserve extends RevokeSponsorshipResult with Product with Serializable
RevokeSponsorship operation failed because the account had insufficient reserves to cover the sponsored entries.
- case object RevokeSponsorshipNotSponsor extends RevokeSponsorshipResult with Product with Serializable
RevokeSponsorship operation failed because there was a sponsorship, but the sponsoring account did not authorise the operation.
- case object RevokeSponsorshipOnlyTransferable extends RevokeSponsorshipResult with Product with Serializable
RevokeSponsorship operation failed because the sponsorship can only be transferred.
- object RevokeSponsorshipResult
- case object RevokeSponsorshipSuccess extends RevokeSponsorshipResult with Product with Serializable
RevokeSponsorship operation was successful.
- case object SetOptionsBadFlags extends SetOptionsResult with Product with Serializable
SetOptions operation failed because there was an invalid combination of set/clear flags.
- case object SetOptionsBadSigner extends SetOptionsResult with Product with Serializable
SetOptions operation failed because of an attempt to set the master key as a signer.
- case object SetOptionsCannotChange extends SetOptionsResult with Product with Serializable
SetOptions operation failed because the options can no longer be altered.
- case object SetOptionsInvalidHomeDomain extends SetOptionsResult with Product with Serializable
SetOptions operation failed because the home domain was invalid.
- case object SetOptionsInvalidInflation extends SetOptionsResult with Product with Serializable
SetOptions operation failed because the inflation target does not exist.
- case object SetOptionsLowReserve extends SetOptionsResult with Product with Serializable
SetOptions operation failed because there was insufficient reserve funds to add another signer.
- object SetOptionsResult
- case object SetOptionsSuccess extends SetOptionsResult with Product with Serializable
SetOptions operation was successful.
- case object SetOptionsThresholdOutOfRange extends SetOptionsResult with Product with Serializable
SetOptions operation failed because a bad value for a weight/threshold was provided.
- case object SetOptionsTooManySigners extends SetOptionsResult with Product with Serializable
SetOptions operation failed because the maximum number of signers has already been met.
- case object SetOptionsUnknownFlag extends SetOptionsResult with Product with Serializable
SetOptions operation failed because the flag being altered does not exist.
- case object TooManySponsoringResult extends OperationResult with Product with Serializable
The operation was not attempted, because the account is sponsoring too many entries
- case object TooManySubEntriesResult extends OperationResult with Product with Serializable
The operation was not attempted, because the maximum number of subentries was already reached.
- object TransactionHistoryDeserializer extends ResponseParser[TransactionHistory]
- object TransactionResult
- case object UpdateBuyOfferIdNotFound extends ManageBuyOfferResult with Product with Serializable
ManageOffer operation failed because it was an update attempt, but an offer with the given id did not exist.
- case object UpdatePassiveOfferIdNotFound extends CreatePassiveSellOfferResult with Product with Serializable
CreatePassiveSellOffer operation failed because it was an update attempt, but an offer with the given id did not exist.
- case object UpdateSellOfferIdNotFound extends ManageSellOfferResult with Product with Serializable
ManageOffer operation failed because it was an update attempt, but an offer with the given id did not exist.