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.

See also

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

Linear Supertypes
Serializable, Serializable, Product, Equals, FriendBot, Network, LazyLogging, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StandaloneNetwork
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. FriendBot
  7. Network
  8. LazyLogging
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandaloneNetwork(port: Int = 8000)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def account(pubKey: PublicKeyOps)(implicit ec: ExecutionContext): Future[AccountResp]

    Fetch details regarding the account identified by pubKey.

    Fetch details regarding the account identified by pubKey.

    Definition Classes
    Network
    See also

    endpoint doc

  5. def accountData(pubKey: PublicKeyOps, dataKey: String)(implicit ec: ExecutionContext): Future[String]

    Fetch value for single data field associated with an account.

    Fetch value for single data field associated with an account.

    Definition Classes
    Network
    See also

    endpoint doc

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def assets(code: Option[String] = None, issuer: Option[PublicKeyOps] = None, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[AssetResp]]

    Fetch a stream of assets, optionally filtered by code, issuer or neither

    Fetch a stream of assets, optionally filtered by code, issuer or neither

    code

    optional code to filter by (defaults to None)

    issuer

    optional issuer account to filter by (defaults to None)

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. def effects(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[EffectResp]]

    Fetch a stream of effects.

    Fetch a stream of effects.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  10. def effectsByAccount(account: PublicKeyOps, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[EffectResp]]

    Fetch a stream of effects for a given account.

    Fetch a stream of effects for a given account.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  11. def effectsByLedger(ledgerId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[EffectResp]]

    Fetch a stream of effects for a given ledger.

    Fetch a stream of effects for a given ledger.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  12. def effectsByOperation(operationId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[EffectResp]]

    Fetch a stream of effects for a given operation.

    Fetch a stream of effects for a given operation.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  13. def effectsByTransaction(txnHash: String, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[EffectResp]]

    Fetch a stream of effects for a given transaction hash.

    Fetch a stream of effects for a given transaction hash.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def fund(pk: PublicKeyOps)(implicit ec: ExecutionContext): Future[TransactionPostResp]
    Definition Classes
    FriendBot
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. val horizon: HorizonAccess
    Definition Classes
    StandaloneNetworkFriendBotNetwork
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def ledger(ledgerId: Long)(implicit ex: ExecutionContext): Future[LedgerResp]

    Fetch details of a ledger by its id

    Fetch details of a ledger by its id

    Definition Classes
    Network
    See also

    endpoint doc

  21. def ledgers(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ec: ExecutionContext): Future[Stream[LedgerResp]]

    Fetch a stream of details about ledgers.

    Fetch a stream of details about ledgers.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  22. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  23. lazy val masterAccount: KeyPair

    The keypair for the master account for this network

    The keypair for the master account for this network

    Definition Classes
    Network
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. lazy val networkId: Array[Byte]
    Definition Classes
    Network
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def offersByAccount(account: PublicKeyOps, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[OfferResp]]

    Fetch a stream of offers for an account.

    Fetch a stream of offers for an account.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  29. def operation(operationId: Long)(implicit ex: ExecutionContext): Future[Transacted[Operation]]

    Fetch operation details by its id

    Fetch operation details by its id

    Definition Classes
    Network
    See also

    endpoint doc

  30. def operations(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[Operation]]]

    Fetch a stream of operations.

    Fetch a stream of operations.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  31. def operationsByAccount(pubKey: PublicKeyOps, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[Operation]]]

    Fetch a stream of operations, filtered by account.

    Fetch a stream of operations, filtered by account.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  32. def operationsByLedger(ledgerId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[Operation]]]

    Fetch a stream of operations, filtered by ledger id.

    Fetch a stream of operations, filtered by ledger id.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  33. def operationsByTransaction(txnHash: String, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[Operation]]]

    Fetch a stream of operations, filtered by transaction hash.

    Fetch a stream of operations, filtered by transaction hash.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  34. def orderBook(selling: Asset, buying: Asset, limit: Int = 20)(implicit ex: ExecutionContext): Future[OrderBook]

    Fetch details of the current orderbook for the given asset pairs.

    Fetch details of the current orderbook for the given asset pairs.

    limit

    the maximun quantity of offers to return, should the order book depth exceed this value.

    Definition Classes
    Network
    See also

    endpoint doc

  35. val passphrase: String
    Definition Classes
    StandaloneNetworkNetwork
  36. def payments(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[PayOperation]]]

    Fetch a stream of payment operations.

    Fetch a stream of payment operations.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  37. def paymentsByAccount(pubKey: PublicKeyOps, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[PayOperation]]]

    Fetch a stream of payment operations filtered by account.

    Fetch a stream of payment operations filtered by account.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  38. def paymentsByLedger(ledgerId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[PayOperation]]]

    Fetch a stream of payment operations filtered by ledger id.

    Fetch a stream of payment operations filtered by ledger id.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  39. def paymentsByTransaction(txnHash: String, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Transacted[PayOperation]]]

    Fetch a stream of payment operations filtered by transaction hash.

    Fetch a stream of payment operations filtered by transaction hash.

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  40. val port: Int
  41. def submit(txn: SignedTransaction)(implicit ec: ExecutionContext): Future[TransactionPostResp]

    Submit the SignedTransaction to the network and eventually receive a TransactionPostResp with the results.

    Submit the SignedTransaction to the network and eventually receive a TransactionPostResp with the results.

    Definition Classes
    Network
    See also

    endpoint doc

  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def trades(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Trade]]

    Fetch a stream of trades

    Fetch a stream of trades

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  44. def tradesByOfferId(offerId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Trade]]

    Fetch a stream of trades filtered by offer id

    Fetch a stream of trades filtered by offer id

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  45. def tradesByOrderBook(base: Asset, counter: Asset, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[Trade]]

    Fetch a stream of trades filtered by orderbook

    Fetch a stream of trades filtered by orderbook

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  46. def transactions(cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[TransactionHistoryResp]]

    Fetch a stream of transactions

    Fetch a stream of transactions

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  47. def transactionsByAccount(pubKey: PublicKeyOps, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[TransactionHistoryResp]]

    Fetch a stream of transactions affecting a given account

    Fetch a stream of transactions affecting a given account

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  48. def transactionsByLedger(sequenceId: Long, cursor: HorizonCursor = Record(0), order: HorizonOrder = Asc)(implicit ex: ExecutionContext): Future[Stream[TransactionHistoryResp]]

    Fetch a stream of transactions for a given ledger

    Fetch a stream of transactions for a given ledger

    cursor

    optional record id to start results from (defaults to 0)

    order

    optional order to sort results by (defaults to Asc)

    Definition Classes
    Network
    See also

    endpoint doc

  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from FriendBot

Inherited from Network

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped