Package | Description |
---|---|
org.bitcoinj.core |
The core package contains classes for network messages like
Block and
Transaction , peer connectivity via PeerGroup ,
block chain management and the Wallet class. |
org.bitcoinj.signers |
Transaction signers know how to calculate signatures over transactions in different contexts, for example, using
local private keys or fetching them from remote servers.
|
org.bitcoinj.testing |
Various utilities for writing unit tests: also useful for testing your own code and apps that build on top of
bitcoinj.
|
Modifier and Type | Method and Description |
---|---|
List<TransactionSigner> |
Wallet.getTransactionSigners() |
Modifier and Type | Method and Description |
---|---|
void |
Wallet.addTransactionSigner(TransactionSigner signer)
Adds given transaction signer to the list of signers.
|
Modifier and Type | Class and Description |
---|---|
class |
CustomTransactionSigner
This signer may be used as a template for creating custom multisig transaction signers.
|
class |
LocalTransactionSigner
TransactionSigner implementation for signing inputs using keys from provided KeyBag . |
class |
MissingSigResolutionSigner
This transaction signer resolves missing signatures in accordance with the given
Wallet.MissingSigsMode . |
class |
StatelessTransactionSigner
A signer that doesn't have any state to be serialized.
|
Modifier and Type | Class and Description |
---|---|
class |
KeyChainTransactionSigner
Transaction signer which uses provided keychain to get signing keys from.
|
class |
NopTransactionSigner |
Copyright © 2014. All rights reserved.