Class Transaction


public class Transaction extends ChildMessage

A transaction represents the movement of coins from some addresses to some other addresses. It can also represent the minting of new coins. A Transaction object corresponds to the equivalent in the Bitcoin C++ implementation.

Transactions are the fundamental atoms of Bitcoin and have many powerful features. Read "Working with transactions" in the documentation to learn more about how to use this class.

All Bitcoin transactions are at risk of being reversed, though the risk is much less than with traditional payment systems. Transactions have confidence levels, which help you decide whether to trust a transaction or not. Whether to trust a transaction is something that needs to be decided on a case by case basis - a rule that makes sense for selling MP3s might not make sense for selling cars, or accepting payments from a family member. If you are building a wallet, how to present confidence to your users is something to consider carefully.

Instances of this class are not safe for use by multiple threads.

  • Field Details

    • SORT_TX_BY_UPDATE_TIME

      public static final Comparator<Transaction> SORT_TX_BY_UPDATE_TIME
      A comparator that can be used to sort transactions by their updateTime field. The ordering goes from most recent into the past.
    • SORT_TX_BY_HEIGHT

      public static final Comparator<Transaction> SORT_TX_BY_HEIGHT
      A comparator that can be used to sort transactions by their chain height.
    • SERIALIZE_TRANSACTION_NO_WITNESS

      public static final int SERIALIZE_TRANSACTION_NO_WITNESS
      When this bit is set in protocolVersion, do not include witness. The actual value is the same as in Bitcoin Core for consistency.
      See Also:
    • LOCKTIME_THRESHOLD

      public static final int LOCKTIME_THRESHOLD
      Threshold for lockTime: below this value it is interpreted as block number, otherwise as timestamp.
      See Also:
    • LOCKTIME_THRESHOLD_BIG

      public static final BigInteger LOCKTIME_THRESHOLD_BIG
      Same but as a BigInteger for CHECKLOCKTIMEVERIFY
    • MAX_STANDARD_TX_SIZE

      public static final int MAX_STANDARD_TX_SIZE
      How many bytes a transaction can be before it won't be relayed anymore. Currently 100kb.
      See Also:
    • REFERENCE_DEFAULT_MIN_TX_FEE

      public static final Coin REFERENCE_DEFAULT_MIN_TX_FEE
      If feePerKb is lower than this, Bitcoin Core will treat it as if there were no fee.
    • DEFAULT_TX_FEE

      public static final Coin DEFAULT_TX_FEE
      If using this feePerKb, transactions will get confirmed within the next couple of blocks. This should be adjusted from time to time. Last adjustment: February 2017.
    • MIN_NONDUST_OUTPUT

      @Deprecated public static final Coin MIN_NONDUST_OUTPUT
    • SIGHASH_ANYONECANPAY_VALUE

      public static final byte SIGHASH_ANYONECANPAY_VALUE
      Deprecated.
      Instead use SigHash.ANYONECANPAY.value or SigHash.ANYONECANPAY.byteValue() as appropriate.
      See Also:
  • Constructor Details

    • Transaction

      public Transaction(NetworkParameters params)
    • Transaction

      public Transaction(NetworkParameters params, byte[] payloadBytes) throws ProtocolException
      Creates a transaction from the given serialized bytes, eg, from a block or a tx network message.
      Throws:
      ProtocolException
    • Transaction

      public Transaction(NetworkParameters params, byte[] payload, int offset) throws ProtocolException
      Creates a transaction by reading payload starting from offset bytes in. Length of a transaction is fixed.
      Throws:
      ProtocolException
    • Transaction

      public Transaction(NetworkParameters params, byte[] payload, int offset, @Nullable Message parent, MessageSerializer setSerializer, int length, @Nullable byte[] hashFromHeader) throws ProtocolException
      Creates a transaction by reading payload starting from offset bytes in. Length of a transaction is fixed.
      Parameters:
      params - NetworkParameters object.
      payload - Bitcoin protocol formatted byte array containing message content.
      offset - The location of the first payload byte within the array.
      parent - The parent of the transaction.
      setSerializer - The serializer to use for this transaction.
      length - The length of message if known. Usually this is provided when deserializing of the wire as the length will be provided as part of the header. If unknown then set to Message.UNKNOWN_LENGTH
      hashFromHeader - Used by BitcoinSerializer. The serializer has to calculate a hash for checksumming so to avoid wasting the considerable effort a set method is provided so the serializer can set it. No verification is performed on this hash.
      Throws:
      ProtocolException
    • Transaction

      public Transaction(NetworkParameters params, byte[] payload, @Nullable Message parent, MessageSerializer setSerializer, int length) throws ProtocolException
      Creates a transaction by reading payload. Length of a transaction is fixed.
      Throws:
      ProtocolException
  • Method Details

    • getHash

      @Deprecated public Sha256Hash getHash()
      Deprecated.
      Description copied from class: Message
      This method is a NOP for all classes except Block and Transaction. It is only declared in Message so BitcoinSerializer can avoid 2 instanceof checks + a casting.
      Overrides:
      getHash in class Message
    • getHashAsString

      @Deprecated public String getHashAsString()
      Deprecated.
      use getTxId().toString()
    • getTxId

      public Sha256Hash getTxId()
      Returns the transaction id as you see them in block explorers. It is used as a reference by transaction inputs via outpoints.
    • getWTxId

      public Sha256Hash getWTxId()
      Returns the witness transaction id (aka witness id) as per BIP144. For transactions without witness, this is the same as getTxId().
    • getWeight

      public int getWeight()
      Gets the transaction weight as defined in BIP141.
    • getVsize

      public int getVsize()
      Gets the virtual transaction size as defined in BIP141.
    • getInputSum

      public Coin getInputSum()
      Gets the sum of the inputs, regardless of who owns them.
    • getValueSentToMe

      public Coin getValueSentToMe(TransactionBag transactionBag)
      Calculates the sum of the outputs that are sending coins to a key in the wallet.
    • getAppearsInHashes

      @Nullable public Map<Sha256Hash,Integer> getAppearsInHashes()
      Returns a map of block [hashes] which contain the transaction mapped to relativity counters, or null if this transaction doesn't have that data because it's not stored in the wallet or because it has never appeared in a block.
    • isPending

      public boolean isPending()
      Convenience wrapper around getConfidence().getConfidenceType()
      Returns:
      true if this transaction hasn't been seen in any block yet.
    • setBlockAppearance

      public void setBlockAppearance(StoredBlock block, boolean bestChain, int relativityOffset)

      Puts the given block in the internal set of blocks in which this transaction appears. This is used by the wallet to ensure transactions that appear on side chains are recorded properly even though the block stores do not save the transaction data at all.

      If there is a re-org this will be called once for each block that was previously seen, to update which block is the best chain. The best chain block is guaranteed to be called last. So this must be idempotent.

      Sets updatedAt to be the earliest valid block time where this tx was seen.

      Parameters:
      block - The StoredBlock in which the transaction has appeared.
      bestChain - whether to set the updatedAt timestamp from the block header (only if not already set)
      relativityOffset - A number that disambiguates the order of transactions within a block.
    • addBlockAppearance

      public void addBlockAppearance(Sha256Hash blockHash, int relativityOffset)
    • getValueSentFromMe

      public Coin getValueSentFromMe(TransactionBag wallet) throws ScriptException
      Calculates the sum of the inputs that are spending coins with keys in the wallet. This requires the transactions sending coins to those keys to be in the wallet. This method will not attempt to download the blocks containing the input transactions if the key is in the wallet but the transactions are not.
      Returns:
      sum of the inputs that are spending coins with keys in the wallet
      Throws:
      ScriptException
    • getOutputSum

      public Coin getOutputSum()
      Gets the sum of the outputs of the transaction. If the outputs are less than the inputs, it does not count the fee.
      Returns:
      the sum of the outputs regardless of who owns them.
    • getValue

      public Coin getValue(TransactionBag wallet) throws ScriptException
      Throws:
      ScriptException
    • getFee

      public Coin getFee()
      The transaction fee is the difference of the value of all inputs and the value of all outputs. Currently, the fee can only be determined for transactions created by us.
      Returns:
      fee, or null if it cannot be determined
    • isAnyOutputSpent

      public boolean isAnyOutputSpent()
      Returns true if any of the outputs is marked as spent.
    • isEveryOwnedOutputSpent

      public boolean isEveryOwnedOutputSpent(TransactionBag transactionBag)
      Returns false if this transaction has at least one output that is owned by the given wallet and unspent, true otherwise.
    • getUpdateTime

      public Date getUpdateTime()
      Returns the earliest time at which the transaction was seen (broadcast or included into the chain), or the epoch if that information isn't available.
    • setUpdateTime

      public void setUpdateTime(Date updatedAt)
    • unCache

      protected void unCache()
      Description copied from class: Message

      To be called before any change of internal values including any setters. This ensures any cached byte array is removed.

      Child messages of this object(e.g. Transactions belonging to a Block) will not have their internal byte caches invalidated unless they are also modified internally.

      Overrides:
      unCache in class ChildMessage
    • calcLength

      protected static int calcLength(byte[] buf, int offset)
    • parse

      protected void parse() throws ProtocolException
      Deserialize according to BIP144 or the classic format, depending on if the transaction is segwit or not.
      Specified by:
      parse in class Message
      Throws:
      ProtocolException
    • hasWitnesses

      public boolean hasWitnesses()
      Returns:
      true of the transaction has any witnesses in any of its inputs
    • getOptimalEncodingMessageSize

      public int getOptimalEncodingMessageSize()
    • getMessageSizeForPriorityCalc

      public int getMessageSizeForPriorityCalc()
      The priority (coin age) calculation doesn't use the regular message size, but rather one adjusted downwards for the number of inputs. The goal is to incentivise cleaning up the UTXO set with free transactions, if one can do so.
    • isCoinBase

      public boolean isCoinBase()
      A coinbase transaction is one that creates a new coin. They are the first transaction in each block and their value is determined by a formula that all implementations of Bitcoin share. In 2011 the value of a coinbase transaction is 50 coins, but in future it will be less. A coinbase transaction is defined not only by its position in a block but by the data in the inputs.
    • isMature

      public boolean isMature()
      A transaction is mature if it is either a building coinbase tx that is as deep or deeper than the required coinbase depth, or a non-coinbase tx.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toString

      public String toString(@Nullable AbstractBlockChain chain, @Nullable CharSequence indent)
      A human readable version of the transaction useful for debugging. The format is not guaranteed to be stable.
      Parameters:
      chain - If provided, will be used to estimate lock times (if set). Can be null.
    • toHexString

      public String toHexString()
      Serializes the transaction into the Bitcoin network format and encodes it as hex string.
      Returns:
      raw transaction in hex format
    • clearInputs

      public void clearInputs()
      Removes all the inputs from this transaction. Note that this also invalidates the length attribute
    • addInput

      public TransactionInput addInput(TransactionOutput from)
      Adds an input to this transaction that imports value from the given output. Note that this input is not complete and after every input is added with addInput(TransactionInput) and every output is added with addOutput(TransactionOutput), a TransactionSigner must be used to finalize the transaction and finish the inputs off. Otherwise it won't be accepted by the network.
      Returns:
      the newly created input.
    • addInput

      public TransactionInput addInput(TransactionInput input)
      Adds an input directly, with no checking that it's valid.
      Returns:
      the new input.
    • addInput

      public TransactionInput addInput(Sha256Hash spendTxHash, long outputIndex, Script script)
      Creates and adds an input to this transaction, with no checking that it's valid.
      Returns:
      the newly created input.
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, Coin amount, ECKey sigKey, Transaction.SigHash sigHash, boolean anyoneCanPay) throws ScriptException
      Adds a new and fully signed input for the given parameters. Note that this method is not thread safe and requires external synchronization. Please refer to general documentation on Bitcoin scripting and contracts to understand the values of sigHash and anyoneCanPay: otherwise you can use the other form of this method that sets them to typical defaults.
      Parameters:
      prevOut - A reference to the output being spent
      scriptPubKey - The scriptPubKey of the output
      amount - The amount of the output (which is part of the signature hash for segwit)
      sigKey - The signing key
      sigHash - enum specifying how the transaction hash is calculated
      anyoneCanPay - anyone-can-pay hashing
      Returns:
      The newly created input
      Throws:
      ScriptException - if the scriptPubKey is something we don't know how to sign.
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, ECKey sigKey, Transaction.SigHash sigHash, boolean anyoneCanPay) throws ScriptException
      Parameters:
      prevOut - A reference to the output being spent
      scriptPubKey - The scriptPubKey of the output
      sigKey - The signing key
      sigHash - enum specifying how the transaction hash is calculated
      anyoneCanPay - anyone-can-pay hashing
      Returns:
      The newly created input
      Throws:
      ScriptException - if the scriptPubKey is something we don't know how to sign.
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, Coin amount, ECKey sigKey) throws ScriptException
      Adds a new and fully signed input for the given parameters. Note that this method is not thread safe and requires external synchronization. Defaults to Transaction.SigHash.ALL and "false" for the anyoneCanPay flag. This is normally what you want.
      Parameters:
      prevOut - A reference to the output being spent
      scriptPubKey - The scriptPubKey of the output
      amount - The amount of the output (which is part of the signature hash for segwit)
      sigKey - The signing key
      Returns:
      The newly created input
      Throws:
      ScriptException - if the scriptPubKey is something we don't know how to sign.
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, ECKey sigKey) throws ScriptException
      Parameters:
      prevOut - A reference to the output being spent
      scriptPubKey - The scriptPubKey of the output
      sigKey - The signing key
      Returns:
      The newly created input
      Throws:
      ScriptException - if the scriptPubKey is something we don't know how to sign.
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutput output, ECKey sigKey)
      Adds an input that points to the given output and contains a valid signature for it, calculated using the signing key. Defaults to Transaction.SigHash.ALL and "false" for the anyoneCanPay flag. This is normally what you want.
      Parameters:
      output - output to sign and use as input
      sigKey - The signing key
      Returns:
      The newly created input
    • addSignedInput

      public TransactionInput addSignedInput(TransactionOutput output, ECKey sigKey, Transaction.SigHash sigHash, boolean anyoneCanPay)
      Adds an input that points to the given output and contains a valid signature for it, calculated using the signing key.
      Parameters:
      output - output to sign and use as input
      sigKey - The signing key
      sigHash - enum specifying how the transaction hash is calculated
      anyoneCanPay - anyone-can-pay hashing
      Returns:
      The newly created input
      See Also:
    • clearOutputs

      public void clearOutputs()
      Removes all the outputs from this transaction. Note that this also invalidates the length attribute
    • addOutput

      public TransactionOutput addOutput(TransactionOutput to)
      Adds the given output to this transaction. The output must be completely initialized. Returns the given output.
    • addOutput

      public TransactionOutput addOutput(Coin value, Address address)
      Creates an output based on the given address and value, adds it to this transaction, and returns the new output.
    • addOutput

      public TransactionOutput addOutput(Coin value, ECKey pubkey)
      Creates an output that pays to the given pubkey directly (no address) with the given value, adds it to this transaction, and returns the new output.
    • addOutput

      public TransactionOutput addOutput(Coin value, Script script)
      Creates an output that pays to the given script. The address and key forms are specialisations of this method, you won't normally need to use it unless you're doing unusual things.
    • calculateSignature

      public TransactionSignature calculateSignature(int inputIndex, ECKey key, byte[] redeemScript, Transaction.SigHash hashType, boolean anyoneCanPay)
      Calculates a signature that is valid for being inserted into the input at the given position. This is simply a wrapper around calling hashForSignature(int, byte[], Transaction.SigHash, boolean) followed by ECKey.sign(Sha256Hash) and then returning a new TransactionSignature. The key must be usable for signing as-is: if the key is encrypted it must be decrypted first external to this method.
      Parameters:
      inputIndex - Which input to calculate the signature for, as an index.
      key - The private key used to calculate the signature.
      redeemScript - Byte-exact contents of the scriptPubKey that is being satisfied, or the P2SH redeem script.
      hashType - Signing mode, see the enum for documentation.
      anyoneCanPay - Signing mode, see the SigHash enum for documentation.
      Returns:
      A newly calculated signature object that wraps the r, s and sighash components.
    • calculateSignature

      public TransactionSignature calculateSignature(int inputIndex, ECKey key, Script redeemScript, Transaction.SigHash hashType, boolean anyoneCanPay)
      Calculates a signature that is valid for being inserted into the input at the given position. This is simply a wrapper around calling hashForSignature(int, byte[], Transaction.SigHash, boolean) followed by ECKey.sign(Sha256Hash) and then returning a new TransactionSignature.
      Parameters:
      inputIndex - Which input to calculate the signature for, as an index.
      key - The private key used to calculate the signature.
      redeemScript - The scriptPubKey that is being satisfied, or the P2SH redeem script.
      hashType - Signing mode, see the enum for documentation.
      anyoneCanPay - Signing mode, see the SigHash enum for documentation.
      Returns:
      A newly calculated signature object that wraps the r, s and sighash components.
    • calculateSignature

      public TransactionSignature calculateSignature(int inputIndex, ECKey key, @Nullable org.bouncycastle.crypto.params.KeyParameter aesKey, byte[] redeemScript, Transaction.SigHash hashType, boolean anyoneCanPay)
      Calculates a signature that is valid for being inserted into the input at the given position. This is simply a wrapper around calling hashForSignature(int, byte[], Transaction.SigHash, boolean) followed by ECKey.sign(Sha256Hash) and then returning a new TransactionSignature. The key must be usable for signing as-is: if the key is encrypted it must be decrypted first external to this method.
      Parameters:
      inputIndex - Which input to calculate the signature for, as an index.
      key - The private key used to calculate the signature.
      aesKey - The AES key to use for decryption of the private key. If null then no decryption is required.
      redeemScript - Byte-exact contents of the scriptPubKey that is being satisfied, or the P2SH redeem script.
      hashType - Signing mode, see the enum for documentation.
      anyoneCanPay - Signing mode, see the SigHash enum for documentation.
      Returns:
      A newly calculated signature object that wraps the r, s and sighash components.
    • calculateSignature

      public TransactionSignature calculateSignature(int inputIndex, ECKey key, @Nullable org.bouncycastle.crypto.params.KeyParameter aesKey, Script redeemScript, Transaction.SigHash hashType, boolean anyoneCanPay)
      Calculates a signature that is valid for being inserted into the input at the given position. This is simply a wrapper around calling hashForSignature(int, byte[], Transaction.SigHash, boolean) followed by ECKey.sign(Sha256Hash) and then returning a new TransactionSignature.
      Parameters:
      inputIndex - Which input to calculate the signature for, as an index.
      key - The private key used to calculate the signature.
      aesKey - The AES key to use for decryption of the private key. If null then no decryption is required.
      redeemScript - The scriptPubKey that is being satisfied, or the P2SH redeem script.
      hashType - Signing mode, see the enum for documentation.
      anyoneCanPay - Signing mode, see the SigHash enum for documentation.
      Returns:
      A newly calculated signature object that wraps the r, s and sighash components.
    • hashForSignature

      public Sha256Hash hashForSignature(int inputIndex, byte[] redeemScript, Transaction.SigHash type, boolean anyoneCanPay)

      Calculates a signature hash, that is, a hash of a simplified form of the transaction. How exactly the transaction is simplified is specified by the type and anyoneCanPay parameters.

      This is a low level API and when using the regular Wallet class you don't have to call this yourself. When working with more complex transaction types and contracts, it can be necessary. When signing a P2SH output the redeemScript should be the script encoded into the scriptSig field, for normal transactions, it's the scriptPubKey of the output you're signing for.

      Parameters:
      inputIndex - input the signature is being calculated for. Tx signatures are always relative to an input.
      redeemScript - the bytes that should be in the given input during signing.
      type - Should be SigHash.ALL
      anyoneCanPay - should be false.
    • hashForSignature

      public Sha256Hash hashForSignature(int inputIndex, Script redeemScript, Transaction.SigHash type, boolean anyoneCanPay)

      Calculates a signature hash, that is, a hash of a simplified form of the transaction. How exactly the transaction is simplified is specified by the type and anyoneCanPay parameters.

      This is a low level API and when using the regular Wallet class you don't have to call this yourself. When working with more complex transaction types and contracts, it can be necessary. When signing a P2SH output the redeemScript should be the script encoded into the scriptSig field, for normal transactions, it's the scriptPubKey of the output you're signing for.

      Parameters:
      inputIndex - input the signature is being calculated for. Tx signatures are always relative to an input.
      redeemScript - the script that should be in the given input during signing.
      type - Should be SigHash.ALL
      anyoneCanPay - should be false.
    • hashForSignature

      public Sha256Hash hashForSignature(int inputIndex, byte[] connectedScript, byte sigHashType)
      This is required for signatures which use a sigHashType which cannot be represented using SigHash and anyoneCanPay See transaction c99c49da4c38af669dea436d3e73780dfdb6c1ecf9958baa52960e8baee30e73, which has sigHashType 0
    • calculateWitnessSignature

      public TransactionSignature calculateWitnessSignature(int inputIndex, ECKey key, byte[] scriptCode, Coin value, Transaction.SigHash hashType, boolean anyoneCanPay)
    • calculateWitnessSignature

      public TransactionSignature calculateWitnessSignature(int inputIndex, ECKey key, Script scriptCode, Coin value, Transaction.SigHash hashType, boolean anyoneCanPay)
    • calculateWitnessSignature

      public TransactionSignature calculateWitnessSignature(int inputIndex, ECKey key, @Nullable org.bouncycastle.crypto.params.KeyParameter aesKey, byte[] scriptCode, Coin value, Transaction.SigHash hashType, boolean anyoneCanPay)
    • calculateWitnessSignature

      public TransactionSignature calculateWitnessSignature(int inputIndex, ECKey key, @Nullable org.bouncycastle.crypto.params.KeyParameter aesKey, Script scriptCode, Coin value, Transaction.SigHash hashType, boolean anyoneCanPay)
    • hashForWitnessSignature

      public Sha256Hash hashForWitnessSignature(int inputIndex, byte[] scriptCode, Coin prevValue, Transaction.SigHash type, boolean anyoneCanPay)
    • hashForWitnessSignature

      public Sha256Hash hashForWitnessSignature(int inputIndex, Script scriptCode, Coin prevValue, Transaction.SigHash type, boolean anyoneCanPay)

      Calculates a signature hash, that is, a hash of a simplified form of the transaction. How exactly the transaction is simplified is specified by the type and anyoneCanPay parameters.

      This is a low level API and when using the regular Wallet class you don't have to call this yourself. When working with more complex transaction types and contracts, it can be necessary. When signing a Witness output the scriptCode should be the script encoded into the scriptSig field, for normal transactions, it's the scriptPubKey of the output you're signing for. (See BIP143: https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki)

      Parameters:
      inputIndex - input the signature is being calculated for. Tx signatures are always relative to an input.
      scriptCode - the script that should be in the given input during signing.
      prevValue - the value of the coin being spent
      type - Should be SigHash.ALL
      anyoneCanPay - should be false.
    • hashForWitnessSignature

      public Sha256Hash hashForWitnessSignature(int inputIndex, byte[] scriptCode, Coin prevValue, byte sigHashType)
    • bitcoinSerializeToStream

      protected void bitcoinSerializeToStream(OutputStream stream) throws IOException
      Description copied from class: Message
      Serializes this message to the provided stream. If you just want the raw bytes use bitcoinSerialize().
      Overrides:
      bitcoinSerializeToStream in class Message
      Throws:
      IOException
    • bitcoinSerializeToStream

      protected void bitcoinSerializeToStream(OutputStream stream, boolean useSegwit) throws IOException
      Serialize according to BIP144 or the classic format, depending on if segwit is desired.
      Throws:
      IOException
    • getLockTime

      public long getLockTime()
      Transactions can have an associated lock time, specified either as a block height or in seconds since the UNIX epoch. A transaction is not allowed to be confirmed by miners until the lock time is reached, and since Bitcoin 0.8+ a transaction that did not end its lock period (non final) is considered to be non standard and won't be relayed or included in the memory pool either.
    • setLockTime

      public void setLockTime(long lockTime)
      Transactions can have an associated lock time, specified either as a block height or in seconds since the UNIX epoch. A transaction is not allowed to be confirmed by miners until the lock time is reached, and since Bitcoin 0.8+ a transaction that did not end its lock period (non final) is considered to be non standard and won't be relayed or included in the memory pool either.
    • getVersion

      public long getVersion()
    • setVersion

      public void setVersion(int version)
    • getInputs

      public List<TransactionInput> getInputs()
      Returns an unmodifiable view of all inputs.
    • getOutputs

      public List<TransactionOutput> getOutputs()
      Returns an unmodifiable view of all outputs.
    • getWalletOutputs

      public List<TransactionOutput> getWalletOutputs(TransactionBag transactionBag)

      Returns the list of transacion outputs, whether spent or unspent, that match a wallet by address or that are watched by a wallet, i.e., transaction outputs whose script's address is controlled by the wallet and transaction outputs whose script is watched by the wallet.

      Parameters:
      transactionBag - The wallet that controls addresses and watches scripts.
      Returns:
      linked list of outputs relevant to the wallet in this transaction
    • shuffleOutputs

      public void shuffleOutputs()
      Randomly re-orders the transaction outputs: good for privacy
    • getInput

      public TransactionInput getInput(long index)
      Same as getInputs().get(index).
    • getOutput

      public TransactionOutput getOutput(long index)
      Same as getOutputs().get(index)
    • getConfidence

      public TransactionConfidence getConfidence()
      Returns the confidence object for this transaction from the TxConfidenceTable referenced by the implicit Context.
    • getConfidence

      public TransactionConfidence getConfidence(Context context)
      Returns the confidence object for this transaction from the TxConfidenceTable referenced by the given Context.
    • getConfidence

      public TransactionConfidence getConfidence(TxConfidenceTable table)
      Returns the confidence object for this transaction from the TxConfidenceTable
    • hasConfidence

      public boolean hasConfidence()
      Check if the transaction has a known confidence
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getSigOpCount

      public int getSigOpCount() throws ScriptException
      Gets the count of regular SigOps in this transactions
      Throws:
      ScriptException
    • checkCoinBaseHeight

      public void checkCoinBaseHeight(int height) throws VerificationException
      Check block height is in coinbase input script, for use after BIP 34 enforcement is enabled.
      Throws:
      VerificationException
    • findWitnessCommitment

      public Sha256Hash findWitnessCommitment()
      Loops the outputs of a coinbase transaction to locate the witness commitment.
    • verify

      public void verify() throws VerificationException

      Checks the transaction contents for sanity, in ways that can be done in a standalone manner. Does not perform all checks on a transaction such as whether the inputs are already spent. Specifically this method verifies:

      • That there is at least one input and output.
      • That the serialized size is not larger than the max block size.
      • That no outputs have negative value.
      • That the outputs do not sum to larger than the max allowed quantity of coin in the system.
      • If the tx is a coinbase tx, the coinbase scriptSig size is within range. Otherwise that there are no coinbase inputs in the tx.
      Throws:
      VerificationException
    • isTimeLocked

      public boolean isTimeLocked()

      A transaction is time-locked if at least one of its inputs is non-final and it has a lock time. A transaction can also have a relative lock time which this method doesn't tell. Use hasRelativeLockTime() to find out.

      To check if this transaction is final at a given height and time, see isFinal(int, long)

    • hasRelativeLockTime

      public boolean hasRelativeLockTime()
      A transaction has a relative lock time (BIP 68) if it is version 2 or higher and at least one of its inputs has its TransactionInput.SEQUENCE_LOCKTIME_DISABLE_FLAG cleared.
    • isOptInFullRBF

      public boolean isOptInFullRBF()
      Returns whether this transaction will opt into the full replace-by-fee semantics.
    • isFinal

      public boolean isFinal(int height, long blockTimeSeconds)

      Returns true if this transaction is considered finalized and can be placed in a block. Non-finalized transactions won't be included by miners and can be replaced with newer versions using sequence numbers. This is useful in certain types of contracts, such as micropayment channels.

      Note that currently the replacement feature is disabled in Bitcoin Core and will need to be re-activated before this functionality is useful.

    • estimateLockTime

      public Date estimateLockTime(AbstractBlockChain chain)
      Returns either the lock time as a date, if it was specified in seconds, or an estimate based on the time in the current head block if it was specified as a block time.
    • getPurpose

      public Transaction.Purpose getPurpose()
      Returns the purpose for which this transaction was created. See the javadoc for Transaction.Purpose for more information on the point of this field and what it can be.
    • setPurpose

      public void setPurpose(Transaction.Purpose purpose)
      Marks the transaction as being created for the given purpose. See the javadoc for Transaction.Purpose for more information on the point of this field and what it can be.
    • getExchangeRate

      @Nullable public ExchangeRate getExchangeRate()
      Getter for exchangeRate.
    • setExchangeRate

      public void setExchangeRate(ExchangeRate exchangeRate)
      Setter for exchangeRate.
    • getMemo

      @Nullable public String getMemo()
      Returns the transaction memo.
    • setMemo

      public void setMemo(String memo)
      Set the transaction memo. It can be used to record the memo of the payment request that initiated the transaction.