case class BitcoinSAppConfig(baseDatadir: Path, configOverrides: Vector[Config])(implicit system: ActorSystem) extends StartStopAsync[AppConfigMarker] with BitcoinSLogger 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.

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

Instance Constructors

  1. new BitcoinSAppConfig(baseDatadir: Path, configOverrides: Vector[Config])(implicit system: ActorSystem)

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

    The underlying config the result of our fields derive from

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

    Initializes the wallet, node and chain projects

    Initializes the wallet, node and chain projects

    Definition Classes
    BitcoinSAppConfigStartStop
  31. def stop(): Future[StoppedBitcoinSAppConfig.type]
    Definition Classes
    BitcoinSAppConfigStartStop
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def terminationDeadline: FiniteDuration

    How long until we forcefully terminate connections to the server when shutting down the server

  34. lazy val torConf: TorAppConfig
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. lazy val walletConf: WalletAppConfig
  39. def withOverrides(configs: Vector[Config]): BitcoinSAppConfig
  40. def wsBindOpt: Option[String]
  41. def wsPort: Int

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from BitcoinSLogger

Inherited from AnyRef

Inherited from Any

Ungrouped