case class BitcoinSAppConfig(directory: Path, confs: Config*)(implicit system: ActorSystem) extends StartStopAsync[Unit] with Product with Serializable

A unified config class for all submodules of Bitcoin-S that accepts configuration. Thanks to implicit definitions in this case class' companion object an instance of this class can be passed in anywhere a wallet, chain or node config is required.

directory

The data directory of this app configuration

confs

A sequence of optional configuration overrides

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BitcoinSAppConfig
  2. Serializable
  3. Product
  4. Equals
  5. StartStopAsync
  6. StartStop
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BitcoinSAppConfig(directory: Path, confs: Config*)(implicit system: ActorSystem)

    directory

    The data directory of this app configuration

    confs

    A sequence of optional configuration overrides

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. lazy val bitcoindRpcConf: BitcoindRpcAppConfig
  6. lazy val chainConf: ChainAppConfig
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. lazy val config: Config

    The underlying config the result of our fields derive from

  9. def copyWithConfig(newConfs: Vector[Config]): BitcoinSAppConfig
  10. lazy val dlcConf: DLCAppConfig
  11. lazy val dlcNodeConf: DLCNodeAppConfig
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def exists(): Boolean
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. lazy val kmConf: KeyManagerAppConfig
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. lazy val network: NetworkParameters
  20. lazy val nodeConf: NodeAppConfig
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. def rpcBindOpt: Option[String]
  25. def rpcPort: Int
  26. def start(): Future[Unit]

    Initializes the wallet, node and chain projects

    Initializes the wallet, node and chain projects

    Definition Classes
    BitcoinSAppConfigStartStop
  27. def stop(): Future[Unit]
    Definition Classes
    BitcoinSAppConfigStartStop
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. lazy val torConf: TorAppConfig
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. lazy val walletConf: WalletAppConfig
  34. def withOverrides(configs: Config*): BitcoinSAppConfig
  35. def zipDatadir(target: Path): Path

    Zips $HOME/.bitcoin-s

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from StartStopAsync[Unit]

Inherited from StartStop[Future[Unit]]

Inherited from AnyRef

Inherited from Any

Ungrouped