package sdk

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. sdk
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Account(publicKey: PublicKeyOps, sequenceNumber: Long) extends Product with Serializable

    Represents an account in Stellar network with its sequence number.

  2. case class AccountSigner(key: PublicKeyOps, weight: Int) extends Signer with Product with Serializable
  3. trait Amount extends AnyRef
  4. sealed trait Asset extends AnyRef
  5. case class Balance(amount: Amount, limit: Option[Long] = None, buyingLiabilities: Long = 0, sellingLiabilities: Long = 0) extends Product with Serializable
  6. class FormatException extends RuntimeException
  7. trait FriendBot extends AnyRef

    A feature on certain networks (notably TestNet) for funding new accounts.

  8. case class HashSigner(hash: String, weight: Int) extends Signer with Product with Serializable
  9. sealed trait HorizonCursor extends AnyRef
  10. sealed trait HorizonOrder extends AnyRef
  11. case class IssuedAmount(units: Long, asset: NonNativeAsset) extends Amount with Product with Serializable
  12. case class IssuedAsset12 extends NonNativeAsset with Product with Serializable

    Represents all assets with codes 5-12 characters long.

    Represents all assets with codes 5-12 characters long.

    See also

    Assets

  13. case class IssuedAsset4 extends NonNativeAsset with Product with Serializable

    Represents all assets with codes 1-4 characters long.

    Represents all assets with codes 1-4 characters long.

    See also

    Assets

  14. case class KeyPair(pk: EdDSAPublicKey, sk: EdDSAPrivateKey) extends PublicKeyOps with Product with Serializable
  15. sealed trait Memo extends AnyRef
  16. case class MemoHash(bs: Array[Byte]) extends MemoWithHash with Product with Serializable
  17. case class MemoId(id: Long) extends Memo with Product with Serializable
  18. case class MemoReturnHash(bs: Array[Byte]) extends MemoWithHash with Product with Serializable
  19. case class MemoText(text: String) extends Memo with Product with Serializable
  20. trait MemoWithHash extends Memo
  21. case class NativeAmount(units: Long) extends Amount with Product with Serializable
  22. trait Network extends LazyLogging
  23. trait NonNativeAsset extends Asset
  24. case class Order(price: Price, quantity: Long) extends Product with Serializable
  25. case class OrderBook(selling: Asset, buying: Asset, bids: Seq[Order], asks: Seq[Order]) extends Product with Serializable
  26. case class PreAuthTxnSigner(hash: String, weight: Int) extends Signer with Product with Serializable
  27. case class Price(n: Int, d: Int) extends Product with Serializable
  28. case class PublicKey(pk: EdDSAPublicKey) extends PublicKeyOps with Product with Serializable
  29. trait PublicKeyOps extends AnyRef
  30. case class Record(value: Long) extends HorizonCursor with Product with Serializable
  31. case class SignedTransaction(transaction: Transaction, signatures: Seq[DecoratedSignature], hash: Array[Byte]) extends Product with Serializable
  32. sealed trait Signer extends AnyRef
  33. case class StandaloneNetwork(port: Int = 8000) extends Network with FriendBot with Product with Serializable

    A network that represents the stand-alone docker image for Horizon & core.

    A network that represents the stand-alone docker image for Horizon & core.

    See also

    https://github.com/stellar/docker-stellar-core-horizon

  34. case class Thresholds(low: Int, med: Int, high: Int) extends Product with Serializable
  35. case class TimeBounds(start: Instant, end: Instant) extends Product with Serializable
  36. case class Trade(id: String, ledgerCloseTime: ZonedDateTime, offerId: Long, baseAccount: PublicKeyOps, baseAmount: Amount, counterAccount: PublicKeyOps, counterAmount: Amount, baseIsSeller: Boolean) extends Product with Serializable
  37. case class Transaction(source: Account, operations: Seq[Operation] = Nil, memo: Memo = NoMemo, timeBounds: Option[TimeBounds] = None, fee: Option[NativeAmount] = None)(implicit network: Network) extends Product with Serializable

Value Members

  1. implicit def accnFromAccnResp(resp: AccountResp): Account
  2. object Amount
  3. object Asc extends HorizonOrder with Product with Serializable
  4. object Asset
  5. object ByteArrays
  6. object Desc extends HorizonOrder with Product with Serializable
  7. object IssuedAsset12 extends Serializable
  8. object IssuedAsset4 extends Serializable
  9. object KeyPair extends Serializable
  10. object Memo
  11. object MemoHash extends Serializable
  12. object MemoReturnHash extends Serializable
  13. object NativeAsset extends Asset with Product with Serializable
  14. object NoMemo extends Memo with Product with Serializable
  15. object Now extends HorizonCursor with Product with Serializable
  16. object OrderBookDeserializer extends ResponseParser[OrderBook]
  17. object PublicNetwork extends Network with Product with Serializable
  18. object SignedTransaction extends Serializable
  19. object StandaloneNetwork extends StandaloneNetwork

    A network that represents the stand-alone docker image for Horizon & core, on the default docker port of 8000.

    A network that represents the stand-alone docker image for Horizon & core, on the default docker port of 8000.

    See also

    https://github.com/stellar/docker-stellar-core-horizon

  20. object StrKey
  21. object TestNetwork extends Network with FriendBot with Product with Serializable
  22. object TimeBounds extends Serializable
  23. object TradeDeserializer extends ResponseParser[Trade]
  24. object Transaction extends Serializable
  25. object TrySeq
  26. object XDRPrimitives

Inherited from AnyRef

Inherited from Any

Ungrouped