Block
and
Transaction
, peer connectivity via PeerGroup
,
and block chain management.See: Description
Interface | Description |
---|---|
Monetary |
Classes implementing this interface represent a monetary value, such as a Bitcoin or fiat amount.
|
PeerFilterProvider |
An interface which provides the information required to properly filter data downloaded from Peers.
|
TransactionBag |
This interface is used to abstract the
Wallet and the Transaction |
TransactionBroadcast.ProgressCallback |
An interface for receiving progress information on the propagation of the tx, from 0.0 to 1.0
|
TransactionBroadcaster |
A general interface which declares the ability to broadcast transactions.
|
TransactionConfidence.Listener |
A confidence listener is informed when the level of
TransactionConfidence is updated by something, like
for example a Wallet . |
UTXOProvider |
A UTXOProvider encapsulates functionality for returning unspent transaction outputs,
for use by the wallet or other code that crafts spends.
|
Class | Description |
---|---|
AbstractBlockChain |
An AbstractBlockChain holds a series of
Block objects, links them together, and knows how to verify that
the chain follows the rules of the NetworkParameters for this chain. |
Address |
A Bitcoin address looks like 1MsScoe2fTJoq4ZPdQgqyhgWeoNamYPevy and is derived from an elliptic curve public key
plus a set of network parameters.
|
AddressMessage |
Represents an "addr" message on the P2P network, which contains broadcast IP addresses of other peers.
|
AlertMessage |
Alerts are signed messages that are broadcast on the peer-to-peer network if they match a hard-coded signing key.
|
Base58 |
Base58 is a way to encode Bitcoin addresses (or arbitrary data) as alphanumeric strings.
|
BitcoinSerializer |
Methods to serialize and de-serialize messages to the Bitcoin network format as defined in
the protocol specification.
|
BitcoinSerializer.BitcoinPacketHeader | |
Block |
A block is a group of transactions, and is one of the fundamental data structures of the Bitcoin system.
|
BlockChain |
A BlockChain implements the simplified payment verification mode of the Bitcoin protocol.
|
BloomFilter |
A Bloom filter is a probabilistic data structure which can be sent to another client so that it can avoid
sending us transactions that aren't relevant to our set of keys.
|
CheckpointManager |
Vends hard-coded
StoredBlock s for blocks throughout the chain. |
ChildMessage |
Represents a Message type that can be contained within another Message.
|
Coin |
Represents a monetary Bitcoin value.
|
Context |
The Context object holds various objects and pieces of configuration that are scoped to a specific instantiation of
bitcoinj for a specific network.
|
DumpedPrivateKey |
Parses and generates private keys in the form used by the Bitcoin "dumpprivkey" command.
|
ECKey |
Represents an elliptic curve public and (optionally) private key, usable for digital signatures but not encryption.
|
ECKey.ECDSASignature |
Groups the two components that make up a signature, and provides a way to encode to DER form, which is
how ECDSA signatures are represented when embedded in other data structures in the Bitcoin protocol.
|
EmptyMessage |
Parent class for header only messages that don't have a payload.
|
FilteredBlock |
A FilteredBlock is used to relay a block with its transactions filtered using a
BloomFilter . |
FullPrunedBlockChain |
A FullPrunedBlockChain works in conjunction with a
FullPrunedBlockStore to verify all the rules of the
Bitcoin system, with the downside being a large cost in system resources. |
GetAddrMessage |
Represents the "getaddr" P2P protocol message, which requests network
AddressMessage s from a peer. |
GetBlocksMessage |
Represents the "getblocks" P2P network message, which requests the hashes of the parts of the block chain we're
missing.
|
GetDataMessage |
Represents the "getdata" P2P network message, which requests the contents of blocks or transactions given their
hashes.
|
GetHeadersMessage |
The "getheaders" command is structurally identical to "getblocks", but has different meaning.
|
GetUTXOsMessage |
This command is supported only by Bitcoin XT nodes, which
advertise themselves using the second service bit flag.
|
HeadersMessage |
A protocol message that contains a repeated series of block headers, sent in response to the "getheaders" command.
|
InventoryItem | |
InventoryMessage |
Represents the "inv" P2P network message.
|
ListMessage |
Abstract superclass of classes with list based payload, ie InventoryMessage and GetDataMessage.
|
MemoryPoolMessage |
The "mempool" message asks a remote peer to announce all transactions in its memory pool, possibly restricted by
any Bloom filter set on the connection.
|
Message |
A Message is a data structure that can be serialized/deserialized using the Bitcoin serialization format.
|
MessageSerializer |
Generic interface for classes which serialize/deserialize messages.
|
NetworkParameters |
NetworkParameters contains the data needed for working with an instantiation of a Bitcoin chain.
|
NotFoundMessage |
Sent by a peer when a getdata request doesn't find the requested data in the mempool.
|
PartialMerkleTree |
A data structure that contains proofs of block inclusion for one or more transactions, in an efficient manner.
|
Peer |
A Peer handles the high level communication with a Bitcoin node, extending a
PeerSocketHandler which
handles low-level message (de)serialization. |
PeerAddress |
A PeerAddress holds an IP address and port number representing the network location of
a peer in the Bitcoin P2P network.
|
PeerGroup |
Runs a set of connections to the P2P network, brings up connections to replace disconnected nodes and manages
the interaction between them all.
|
PeerSocketHandler |
Handles high-level message (de)serialization for peers, acting as the bridge between the
org.bitcoinj.net classes and Peer . |
Ping |
Instances of this class are not safe for use by multiple threads.
|
Pong |
Instances of this class are not safe for use by multiple threads.
|
RejectMessage |
A message sent by nodes when a message we sent was rejected (ie a transaction had too little fee/was invalid/etc).
|
Sha256Hash |
A Sha256Hash just wraps a byte[] so that equals and hashcode work correctly, allowing it to be used as keys in a
map.
|
StoredBlock |
Wraps a
Block object with extra data that can be derived from the block chain but is slow or inconvenient to
calculate. |
StoredUndoableBlock |
Contains minimal data neccessary to disconnect/connect the transactions
in the stored block at will.
|
Transaction |
A transaction represents the movement of coins from some addresses to some other addresses.
|
TransactionBroadcast |
Represents a single transaction broadcast that we are performing.
|
TransactionConfidence |
A TransactionConfidence object tracks data you can use to make a confidence decision about a transaction.
|
TransactionInput |
A transfer of coins from one address to another creates a transaction in which the outputs
can be claimed by the recipient in the input of another transaction.
|
TransactionOutPoint |
This message is a reference or pointer to an output of a different transaction.
|
TransactionOutput |
A TransactionOutput message contains a scriptPubKey that controls who is able to spend its value.
|
TransactionOutputChanges |
TransactionOutputChanges represents a delta to the set of unspent outputs.
|
TxConfidenceTable |
Tracks transactions that are being announced across the network.
|
UnknownMessage |
Instances of this class are not safe for use by multiple threads.
|
UnsafeByteArrayOutputStream |
An unsynchronized implementation of ByteArrayOutputStream that will return the backing byte array if its length == size().
|
Utils |
A collection of various utility methods that are helpful for working with the Bitcoin protocol.
|
UTXO |
A UTXO message contains the information necessary to check a spending transaction.
|
UTXOsMessage |
Message representing a list of unspent transaction outputs ("utxos"), returned in response to sending a
GetUTXOsMessage ("getutxos"). |
VarInt |
A variable-length encoded unsigned integer using Satoshi's encoding (a.k.a.
|
VersionAck |
The verack message, sent by a client accepting the version message they
received from their peer.
|
VersionedChecksummedBytes |
In Bitcoin the following format is often used to represent some type of key:
|
VersionMessage |
A VersionMessage holds information exchanged during connection setup with another peer.
|
Enum | Description |
---|---|
AbstractBlockChain.NewBlockType | |
Block.VerifyFlag |
Flags used to control which elements of block validation are done on
received blocks.
|
BloomFilter.BloomUpdate |
The BLOOM_UPDATE_* constants control when the bloom filter is auto-updated by the peer using
it as a filter, either never, for all outputs or only for pay-2-pubkey outputs (default)
|
InventoryItem.Type | |
NetworkParameters.ProtocolVersion | |
PeerGroup.FilterRecalculateMode | |
RejectMessage.RejectCode | |
Transaction.Purpose |
This enum describes the underlying reason the transaction was created.
|
Transaction.SigHash |
These constants are a part of a scriptSig signature on the inputs.
|
TransactionConfidence.ConfidenceType |
Describes the state of the transaction in general terms.
|
TransactionConfidence.Listener.ChangeReason |
An enum that describes why a transaction confidence listener is being invoked (i.e.
|
TransactionConfidence.Source |
Information about where the transaction was first seen (network, sent direct from peer, created by ourselves).
|
TransactionInput.ConnectionResult | |
TransactionInput.ConnectMode |
Exception | Description |
---|---|
AddressFormatException | |
ECKey.KeyIsEncryptedException | |
ECKey.MissingPrivateKeyException | |
InsufficientMoneyException |
Thrown to indicate that you don't have enough money available to perform the requested operation.
|
PeerException |
Thrown when a problem occurs in communicating with a peer, and we should
retry.
|
ProtocolException | |
PrunedException |
PrunedException is thrown in cases where a fully verifying node has deleted (pruned) old block data that turned
out to be necessary for handling a re-org.
|
RejectedTransactionException |
This exception is used by the TransactionBroadcast class to indicate that a broadcast
Transaction has been rejected by the network, for example because it violates a
protocol rule.
|
ScriptException | |
UTXOProviderException | |
VerificationException | |
VerificationException.BlockVersionOutOfDate | |
VerificationException.CoinbaseHeightMismatch | |
VerificationException.CoinbaseScriptSizeOutOfRange | |
VerificationException.DuplicatedOutPoint | |
VerificationException.EmptyInputsOrOutputs | |
VerificationException.ExcessiveValue | |
VerificationException.LargerThanMaxBlockSize | |
VerificationException.NegativeValueOutput | |
VerificationException.UnexpectedCoinbaseInput | |
WrongNetworkException |
This exception is thrown by the Address class when you try and decode an address with a version code that isn't
used by that network.
|
Block
and
Transaction
, peer connectivity via PeerGroup
,
and block chain management.
If what you're doing can be described as basic bitcoin tasks, the code is probably found here.
To learn more please consult the documentation on the website.Copyright © 2016. All rights reserved.