RpcConfig

data class RpcConfig(    val url: String,     val auth: Auth,     val network: Network,     val walletName: String,     val syncParams: RcpSyncParams?)

RpcBlockchain configuration options

Constructors

Link copied to clipboard
fun RpcConfig(    url: String,     auth: Auth,     network: Network,     walletName: String,     syncParams: RcpSyncParams?)

Properties

Link copied to clipboard
val auth: Auth

The bicoin node authentication mechanism.

Link copied to clipboard
val network: Network

The network we are using (it will be checked the bitcoin node network matches this).

Link copied to clipboard
val syncParams: RcpSyncParams?

Sync parameters.

Link copied to clipboard
val url: String

The bitcoin node url.

Link copied to clipboard
val walletName: String

The wallet name in the bitcoin node.