Packages

trait WalletRpc extends AnyRef

RPC calls related to wallet management functionality in bitcoind

Self Type
WalletRpc with Client
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WalletRpc
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def backupWallet(destination: String, walletName: String = DEFAULT_WALLET): Future[Unit]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def createWallet(walletName: String, disablePrivateKeys: Boolean = false, blank: Boolean = false, passphrase: String = "", avoidReuse: Boolean = false, descriptors: Boolean = false): Future[CreateWalletResult]

    blank

    Not available to versions before v19

    passphrase

    Not available to versions before v19

  8. def encryptWallet(passphrase: String, walletName: String = DEFAULT_WALLET): Future[String]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def getAddressInfo(address: BitcoinAddress, walletName: String = DEFAULT_WALLET): Future[AddressInfoResult]
  13. def getBalance(walletName: String): Future[Bitcoins]
  14. def getBalance: Future[Bitcoins]
  15. def getBalances(walletName: String): Future[GetBalancesResult]
  16. def getBalances: Future[GetBalancesResult]
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def getNewAddress(accountOrLabel: String, addressType: AddressType, walletName: String): Future[BitcoinAddress]
  19. def getNewAddress(accountOrLabel: String, addressType: AddressType): Future[BitcoinAddress]
  20. def getNewAddress(addressType: AddressType): Future[BitcoinAddress]
  21. def getNewAddress(addressType: AddressType, walletName: String): Future[BitcoinAddress]
  22. def getNewAddress(walletName: String, label: String = ""): Future[BitcoinAddress]
  23. def getNewAddress: Future[BitcoinAddress]
  24. def getRawChangeAddress(addressType: AddressType, walletName: String): Future[BitcoinAddress]
  25. def getRawChangeAddress(walletName: String): Future[BitcoinAddress]
  26. def getRawChangeAddress(addressType: AddressType): Future[BitcoinAddress]
  27. def getRawChangeAddress: Future[BitcoinAddress]
  28. def getReceivedByAddress(address: BitcoinAddress, minConfirmations: Int = 1, walletName: String = DEFAULT_WALLET): Future[Bitcoins]
  29. def getUnconfirmedBalance(walletName: String): Future[Bitcoins]
  30. def getUnconfirmedBalance: Future[Bitcoins]
  31. def getWalletInfo: Future[GetWalletInfoResult]
  32. def getWalletInfo(walletName: String): Future[GetWalletInfoResult]
  33. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. def importMulti(requests: Vector[ImportMultiRequest], rescan: Boolean = true, walletName: String = DEFAULT_WALLET): Future[Vector[ImportMultiResult]]
  35. def importPrunedFunds(transaction: Transaction, txOutProof: MerkleBlock, walletName: String = DEFAULT_WALLET): Future[Unit]
  36. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  37. def keyPoolRefill(keyPoolSize: Int = 100, walletName: String = DEFAULT_WALLET): Future[Unit]

  38. def listAddressGroupings(walletName: String): Future[Vector[Vector[RpcAddress]]]
  39. def listAddressGroupings: Future[Vector[Vector[RpcAddress]]]
  40. def listReceivedByAddress(confirmations: Int = 1, includeEmpty: Boolean = false, includeWatchOnly: Boolean = false, walletName: String = DEFAULT_WALLET): Future[Vector[ReceivedAddress]]
  41. def listWallets: Future[Vector[String]]
  42. def loadWallet(filePath: String): Future[LoadWalletResult]
  43. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. def removePrunedFunds(txid: DoubleSha256Digest, walletName: String): Future[Unit]
  47. def removePrunedFunds(txid: DoubleSha256Digest): Future[Unit]
  48. def removePrunedFunds(txid: DoubleSha256DigestBE): Future[Unit]
  49. def removePrunedFunds(txid: DoubleSha256DigestBE, walletName: String): Future[Unit]
  50. def sendMany(amounts: Map[BitcoinAddress, CurrencyUnit], minconf: Int = 1, comment: String = "", subtractFeeFrom: Vector[BitcoinAddress] = Vector.empty, walletName: String = DEFAULT_WALLET): Future[DoubleSha256DigestBE]
  51. def sendToAddress(address: BitcoinAddress, amount: CurrencyUnit, localComment: String = "", toComment: String = "", subractFeeFromAmount: Boolean = false, walletName: String = DEFAULT_WALLET): Future[DoubleSha256DigestBE]
  52. def setTxFee(feePerKB: Bitcoins, walletName: String = DEFAULT_WALLET): Future[Boolean]
  53. def setWalletFlag(flag: WalletFlag, value: Boolean, walletName: String = DEFAULT_WALLET): Future[SetWalletFlagResult]

    Change the state of the given wallet flag for a wallet.

  54. def signRawTransactionWithKey(transaction: Transaction, keys: Vector[ECPrivateKey], utxoDeps: Vector[SignRawTransactionOutputParameter] = Vector.empty, sigHash: HashType = HashType.sigHashAll): Future[SignRawTransactionResult]

    $signRawTx

    $signRawTx

    This RPC call signs the raw transaction with keys provided manually.

  55. def signRawTransactionWithWallet(transaction: Transaction, utxoDeps: Vector[SignRawTransactionOutputParameter], sigHash: HashType = HashType.sigHashAll): Future[SignRawTransactionResult]

    $signRawTx

    $signRawTx

    This RPC call signs the raw transaction with keys found in the Bitcoin Core wallet.

  56. def signRawTransactionWithWallet(transaction: Transaction): Future[SignRawTransactionWithWalletResult]
  57. def signRawTransactionWithWallet(transaction: Transaction, walletName: String): Future[SignRawTransactionWithWalletResult]
  58. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  59. def toString(): String
    Definition Classes
    AnyRef → Any
  60. def unloadWallet(filePath: String): Future[Unit]
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  64. def walletCreateFundedPsbt(inputs: Vector[TransactionInput], outputs: Map[BitcoinAddress, CurrencyUnit], locktime: Int = 0, options: WalletCreateFundedPsbtOptions = WalletCreateFundedPsbtOptions(), bip32derivs: Boolean = false, walletName: String = DEFAULT_WALLET): Future[WalletCreateFundedPsbtResult]
  65. def walletLock(walletName: String): Future[Unit]
  66. def walletLock(): Future[Unit]
  67. def walletPassphrase(passphrase: String, seconds: Int, walletName: String = DEFAULT_WALLET): Future[Unit]
  68. def walletPassphraseChange(currentPassphrase: String, newPassphrase: String, walletName: String = DEFAULT_WALLET): Future[Unit]
  69. def walletProcessPSBT(psbt: PSBT, sign: Boolean = true, sigHashType: HashType = HashType.sigHashAll, walletName: String = DEFAULT_WALLET): Future[WalletProcessPsbtResult]

Inherited from AnyRef

Inherited from Any

Ungrouped