case class BitcoinSAppConfig(baseDatadir: Path, configOverrides: Vector[Config])(implicit system: ActorSystem) extends StartStopAsync[AppConfigMarker] with Logging 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. Logging
  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. def debug(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  13. def debug(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  14. def debug(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  15. lazy val dlcConf: DLCAppConfig
  16. lazy val dlcNodeConf: DLCNodeAppConfig
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def error(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  19. def error(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  20. def error(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  21. def exists(): Boolean
  22. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def info(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  25. def info(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  26. def info(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  27. def isDebugEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  28. def isErrorEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  29. def isInfoEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def isTraceEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  32. def isWarnEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  33. lazy val kmConf: KeyManagerAppConfig
  34. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  35. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. lazy val network: NetworkParameters
  38. lazy val nodeConf: NodeAppConfig
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. def productElementNames: Iterator[String]
    Definition Classes
    Product
  42. def rpcBindOpt: Option[String]
  43. def rpcPassword: String
  44. def rpcPort: Int
  45. def start(): Future[StartedBitcoinSAppConfig]

    Initializes the wallet, node and chain projects

    Initializes the wallet, node and chain projects

    Definition Classes
    BitcoinSAppConfigStartStop
  46. def stop(): Future[StoppedBitcoinSAppConfig.type]
    Definition Classes
    BitcoinSAppConfigStartStop
  47. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  48. def terminationDeadline: FiniteDuration

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

  49. lazy val torConf: TorAppConfig
  50. def trace(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  51. def trace(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  52. def trace(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  53. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  54. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  56. lazy val walletConf: WalletAppConfig
  57. def warn(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  58. def warn(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  59. def warn(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  60. def withOverrides(configs: Vector[Config]): BitcoinSAppConfig
  61. def wsBindOpt: Option[String]
  62. def wsPort: Int

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped