Package | Description |
---|---|
org.bitcoinj.kits |
High level wrapper APIs around the bitcoinj building blocks.
|
org.bitcoinj.wallet |
Classes that support the
Wallet , which knows how to find and save transactions relevant to
a set of keys or scripts, calculate balances, and spend money: the wallet has many features and can be extended
in various ways, please refer to the website for documentation on how to use it. |
Modifier and Type | Field and Description |
---|---|
protected DeterministicSeed |
WalletAppKit.restoreFromSeed |
Modifier and Type | Method and Description |
---|---|
WalletAppKit |
WalletAppKit.restoreWalletFromSeed(DeterministicSeed seed)
If a seed is set here then any existing wallet that matches the file name will be renamed to a backup name,
the chain file will be deleted, and the wallet object will be instantiated with the given seed instead of
a fresh one being created.
|
Modifier and Type | Field and Description |
---|---|
protected DeterministicSeed |
DeterministicKeyChain.Builder.seed |
Modifier and Type | Method and Description |
---|---|
DeterministicSeed |
DeterministicSeed.decrypt(KeyCrypter crypter,
String passphrase,
org.spongycastle.crypto.params.KeyParameter aesKey) |
DeterministicSeed |
DeterministicSeed.encrypt(KeyCrypter keyCrypter,
org.spongycastle.crypto.params.KeyParameter aesKey) |
DeterministicSeed |
Wallet.getKeyChainSeed()
Returns the immutable seed for the current active HD chain.
|
DeterministicSeed |
DeterministicKeyChain.getSeed()
Returns the seed or null if this chain is a watching chain.
|
Modifier and Type | Method and Description |
---|---|
static Wallet |
Wallet.fromSeed(NetworkParameters params,
DeterministicSeed seed) |
DeterministicKeyChain |
DefaultKeyChainFactory.makeKeyChain(Protos.Key key,
Protos.Key firstSubKey,
DeterministicSeed seed,
KeyCrypter crypter,
boolean isMarried) |
DeterministicKeyChain |
KeyChainFactory.makeKeyChain(Protos.Key key,
Protos.Key firstSubKey,
DeterministicSeed seed,
KeyCrypter crypter,
boolean isMarried)
Make a keychain (but not a watching one).
|
protected DeterministicKeyChain |
DeterministicKeyChain.makeKeyChainFromSeed(DeterministicSeed seed)
Factory method to create a key chain from a seed.
|
T |
DeterministicKeyChain.Builder.seed(DeterministicSeed seed)
Creates a deterministic key chain starting from the given seed.
|
Constructor and Description |
---|
DeterministicKeyChain(DeterministicSeed seed)
Creates a deterministic key chain starting from the given seed.
|
DeterministicKeyChain(DeterministicSeed seed,
KeyCrypter crypter)
For use in
KeyChainFactory during deserialization. |
KeyChainGroup(NetworkParameters params,
DeterministicSeed seed)
Creates a keychain group with no basic chain, and an HD chain initialized from the given seed.
|
Copyright © 2016. All rights reserved.