Packages

o

org.bitcoins.keymanager

WalletStorage

object WalletStorage extends KeyManagerLogger

Linear Supertypes
KeyManagerLogger, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WalletStorage
  2. KeyManagerLogger
  3. Logging
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class RawEncryptedSeed(rawIv: String, rawCipherText: String, rawSalt: String, rawCreationTime: Long) extends Product with Serializable

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. val ENCRYPTED_SEED_FILE_NAME: String
  5. val FIRST_BITCOIN_S_WALLET_TIME: Long

    Start of bitcoin-s wallet project, Block 555,990 block time on 2018-12-28

  6. val GENESIS_TIME: Long

    Epoch time of the mainnet Genesis Block

  7. val SEED_FOLDER_NAME: String
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def changeAesPassword(seedPath: Path, oldPasswordOpt: Option[AesPassword], newPasswordOpt: Option[AesPassword]): SeedState
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def debug(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  12. def debug(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  13. def debug(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  14. def decryptSeedFromDisk(seedPath: Path, passphraseOpt: Option[AesPassword]): Either[ReadMnemonicError, DecryptedSeedState]

    Reads the wallet mnemonic from disk and tries to parse and decrypt it

  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def error(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  18. def error(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  19. def error(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getPrivateKeyFromDisk(seedPath: Path, privKeyVersion: ExtKeyPrivVersion, passphraseOpt: Option[AesPassword], bip39PasswordOpt: Option[String]): ExtPrivateKeyHardened
  23. def hashCode(): Int
    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. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  34. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. def seedExists(seedPath: Path): Boolean

    Checks if a wallet seed exists in datadir

  39. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def trace(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  42. def trace(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  43. def trace(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  47. def warn(mkr: Marker, msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  48. def warn(msg: => Any, t: => Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  49. def warn(msg: => Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  50. def writeSeedToDisk(seedPath: Path, extKey: DecryptedExtPrivKey): Path

    Writes the unencrypted xprv to disk.

    Writes the unencrypted xprv to disk. If we encounter a file in the place we're about to write to, an error will be thrown.

  51. def writeSeedToDisk(seedPath: Path, mnemonic: DecryptedMnemonic): Path

    Writes the unencrypted mnemonic to disk.

    Writes the unencrypted mnemonic to disk. If we encounter a file in the place we're about to write to, an error will be thrown.

  52. def writeSeedToDisk(seedPath: Path, seed: EncryptedSeed): Path

    Writes the encrypted mnemonic to disk.

    Writes the encrypted mnemonic to disk. If we encounter a file in the place we're about to write to, an error will be thrown.

  53. def writeSeedToDisk(seedPath: Path, seed: SeedState): Path

    Writes the mnemonic to disk.

    Writes the mnemonic to disk. If we encounter a file in the place we're about to write to, an error will be thrown.

Inherited from KeyManagerLogger

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped