Package org.bitcoinj.core
package org.bitcoinj.core
The core package contains classes for network messages like
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.-
ClassDescriptionAn AbstractBlockChain holds a series of
Block
objects, links them together, and knows how to verify that the chain follows the rules of theNetworkParameters
for this chain.Indicates whether new Block was on the best chain or notAbstract superclass for address messages on the P2P network, which contain network addresses of other peers.Represents an "addr" message on the P2P network, which contains broadcast IP addresses of other peers.Represents an "addrv2" message on the P2P network, which contains broadcast addresses of other peers.A Message is a data structure that can be serialized/deserialized using the Bitcoin serialization format.Methods to serialize and de-serialize messages to the Bitcoin network format as defined in the protocol specification.A block is a group of transactions, and is one of the fundamental data structures of the Bitcoin system.Flags used to control which elements of block validation are done on received blocks.A BlockChain implements the simplified payment verification mode of the Bitcoin protocol.Represents Block Locator in GetBlocks and GetHeaders messagesA 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.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 P2PK outputs (default)Vends hard-codedStoredBlock
s for blocks throughout the chain.The Context object holds various objects and pieces of configuration that are scoped to a specific instantiation of bitcoinj for a specific network.Parent class for header only messages that don't have a payload.Represents a "feefilter" message on the P2P network, which instructs a peer to filter transaction invs for transactions that fall below the feerate provided.A FilteredBlock is used to relay a block with its transactions filtered using aBloomFilter
.A FullPrunedBlockChain works in conjunction with aFullPrunedBlockStore
to verify all the rules of the Bitcoin system, with the downside being a large cost in system resources.Represents the "getaddr" P2P protocol message, which requests networkAddressMessage
s from a peer.Represents the "getblocks" P2P network message, which requests the hashes of the parts of the block chain we're missing.Represents the "getdata" P2P network message, which requests the contents of blocks or transactions given their hashes.The "getheaders" command is structurally identical to "getblocks", but has different meaning.A protocol message that contains a repeated series of block headers, sent in response to the "getheaders" command.Thrown to indicate that you don't have enough money available to perform the requested operation.Represents the "inv" P2P network message.Abstract superclass of classes with list based payload, ie InventoryMessage and GetDataMessage.Wrapper for transaction lock time, specified either as a block heightLockTime.HeightLock
or as a timestampLockTime.TimeLock
(in seconds since epoch).ALockTime
instance that contains a block height.ALockTime
instance that contains a timestamp.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.A Message is a data structure that can be serialized/deserialized using the Bitcoin serialization format.Generic interface for classes which serialize/deserialize messages.NetworkParameters contains the data needed for working with an instantiation of a Bitcoin chain.Sent by a peer when a getdata request doesn't find the requested data in the mempool.A data structure that contains proofs of block inclusion for one or more transactions, in an efficient manner.A Peer handles the high level communication with a Bitcoin node, extending aPeerSocketHandler
which handles low-level message (de)serialization.A PeerAddress holds an IP address and port number representing the network location of a peer in the Bitcoin P2P network.Thrown when a problem occurs in communicating with a peer, and we should retry.An interface which provides the information required to properly filter data downloaded from Peers.Runs a set of connections to the P2P network, brings up connections to replace disconnected nodes and manages the interaction between them all.Handles high-level message (de)serialization for peers, acting as the bridge between theorg.bitcoinj.net
classes andPeer
.See BIP31 for details.See BIP31 for details.Define important versions of the Bitcoin ProtocolPrunedException 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.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.A message sent by nodes when a message we sent was rejected (ie a transaction had too little fee/was invalid/etc).Represents thesendaddrv2
P2P protocol message, which indicates that a node can understand and prefers to receiveaddrv2
messages instead ofaddr
messages.A new message, "sendheaders", which indicates that a node prefers to receive new block announcements via a "headers" message rather than an "inv".Wrapper for services bitfield used in various messages of the Bitcoin protocol.Wraps aBlock
object with extra data that can be derived from the block chain but is slow or inconvenient to calculate.Contains minimal data necessary to disconnect/connect the transactions in the stored block at will.A transaction represents the movement of coins from some addresses to some other addresses.This enum describes the underlying reason the transaction was created.These constants are a part of a scriptSig signature on the inputs.This interface is used to abstract theWallet
and theTransaction
Represents a single transaction broadcast that we are performing.An interface for receiving progress information on the propagation of the tx, from 0.0 to 1.0A general interface which declares the ability to broadcast transactions.A TransactionConfidence object tracks data you can use to make a confidence decision about a transaction.Describes the state of the transaction in general terms.A confidence listener is informed when the level ofTransactionConfidence
is updated by something, like for example aWallet
.An enum that describes why a transaction confidence listener is being invoked (i.e.Information about where the transaction was first seen (network, sent direct from peer, created by ourselves).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.This message is a reference or pointer to an output of a different transaction.A TransactionOutput message contains a scriptPubKey that controls who is able to spend its value.TransactionOutputChanges represents a delta to the set of unspent outputs.Tracks transactions that are being announced across the network.Instances of this class are not safe for use by multiple threads.A collection of various utility methods that are helpful for working with the Bitcoin protocol.A UTXO message contains the information necessary to check a spending transaction.A UTXOProvider encapsulates functionality for returning unspent transaction outputs, for use by the wallet or other code that crafts spends.The verack message, sent by a client accepting the version message they received from their peer.A VersionMessage holds information exchanged during connection setup with another peer.