case class Transaction(source: Account, operations: List[Operation] = Nil, memo: Memo = NoMemo, timeBounds: TimeBounds, maxFee: NativeAmount, overrideMemoRequirement: Boolean = false)(implicit network: Network) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Transaction
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Transaction(source: Account, operations: List[Operation] = Nil, memo: Memo = NoMemo, timeBounds: TimeBounds, maxFee: NativeAmount, overrideMemoRequirement: Boolean = false)(implicit network: Network)

Value Members

  1. def add(op: Operation): Transaction
  2. def encodeXdrString: String
  3. def hash: ByteString
  4. val maxFee: NativeAmount
  5. val memo: Memo
  6. def minFee: NativeAmount
  7. implicit val network: Network
  8. val operations: List[Operation]
  9. val overrideMemoRequirement: Boolean
  10. def payeeAccounts: List[AccountId]

    If the transaction has no memo, these are the payment destination accounts that must be OK with not receiving a memo.

  11. def productElementNames: Iterator[String]
    Definition Classes
    Product
  12. def sign(preImage: Seq[Byte]): SignedTransaction
  13. def sign(key: KeyPair, otherKeys: KeyPair*): SignedTransaction
  14. def signatureBase: ByteString
  15. def signingRequest: TransactionSigningRequest

    The web+stellar: URL for this transaction.

  16. val source: Account
  17. val timeBounds: TimeBounds
  18. def xdr: org.stellar.xdr.Transaction