Serialized Form


Package com.google.bitcoin.core

Class com.google.bitcoin.core.AddressFormatException extends Exception implements Serializable

Class com.google.bitcoin.core.AddressMessage extends Message implements Serializable

serialVersionUID: 8058283864924679460L

Serialized Fields

addresses

List<E> addresses

Class com.google.bitcoin.core.AlertMessage extends Message implements Serializable

Serialized Fields

content

byte[] content

signature

byte[] signature

version

long version

relayUntil

Date relayUntil

expiration

Date expiration

id

long id

cancel

long cancel

cancelSet

Set<E> cancelSet

minVer

long minVer

maxVer

long maxVer

matchingSubVers

Set<E> matchingSubVers

priority

long priority

comment

String comment

statusBar

String statusBar

reserved

String reserved

Class com.google.bitcoin.core.Block extends Message implements Serializable

serialVersionUID: 2738848929966035281L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException
Serialized Fields

version

long version

prevBlockHash

Sha256Hash prevBlockHash

merkleRoot

Sha256Hash merkleRoot

time

long time

difficultyTarget

long difficultyTarget

nonce

long nonce

transactions

List<E> transactions
If null, it means this object holds only the headers.

Class com.google.bitcoin.core.BloomFilter extends Message implements Serializable

Serialized Fields

data

byte[] data

hashFuncs

long hashFuncs

nTweak

long nTweak

nFlags

byte nFlags

Class com.google.bitcoin.core.ChildMessage extends Message implements Serializable

serialVersionUID: -7657113383624517931L

Serialized Fields

parent

Message parent

Class com.google.bitcoin.core.ECKey extends Object implements Serializable

serialVersionUID: -728224901792295832L

Serialized Fields

priv

BigInteger priv

pub

byte[] pub

creationTimeSeconds

long creationTimeSeconds

encryptedPrivateKey

EncryptedPrivateKey encryptedPrivateKey
The encrypted private key information.

Class com.google.bitcoin.core.EmptyMessage extends Message implements Serializable

serialVersionUID: 8240801253854151802L

Class com.google.bitcoin.core.FilteredBlock extends Message implements Serializable

Serialized Fields

header

Block header

merkleTree

PartialMerkleTree merkleTree

cachedTransactionHashes

List<E> cachedTransactionHashes

associatedTransactions

Map<K,V> associatedTransactions

Class com.google.bitcoin.core.GetAddrMessage extends EmptyMessage implements Serializable

serialVersionUID: 6204437624599661503L

Class com.google.bitcoin.core.GetBlocksMessage extends Message implements Serializable

serialVersionUID: 3479412877853645644L

Serialized Fields

version

long version

locator

List<E> locator

stopHash

Sha256Hash stopHash

Class com.google.bitcoin.core.GetDataMessage extends ListMessage implements Serializable

serialVersionUID: 2754681589501709887L

Class com.google.bitcoin.core.GetHeadersMessage extends GetBlocksMessage implements Serializable

Class com.google.bitcoin.core.HeadersMessage extends Message implements Serializable

Serialized Fields

blockHeaders

List<E> blockHeaders

Class com.google.bitcoin.core.InsufficientMoneyException extends Exception implements Serializable

Serialized Fields

missing

BigInteger missing
Contains the number of satoshis that would have been required to complete the operation.

Class com.google.bitcoin.core.InsufficientMoneyException.CouldNotAdjustDownwards extends InsufficientMoneyException implements Serializable

Class com.google.bitcoin.core.InventoryMessage extends ListMessage implements Serializable

serialVersionUID: -7050246551646107066L

Class com.google.bitcoin.core.ListMessage extends Message implements Serializable

serialVersionUID: -4275896329391143643L

Serialized Fields

arrayLen

long arrayLen

items

List<E> items

Class com.google.bitcoin.core.MemoryPoolMessage extends Message implements Serializable

Class com.google.bitcoin.core.Message extends Object implements Serializable

serialVersionUID: -3561053461717079135L

Serialized Fields

params

NetworkParameters params

Class com.google.bitcoin.core.Message.LazyParseException extends RuntimeException implements Serializable

serialVersionUID: 6971943053112975594L

Class com.google.bitcoin.core.NetworkParameters extends Object implements Serializable

Serialized Fields

genesisBlock

Block genesisBlock

proofOfWorkLimit

BigInteger proofOfWorkLimit

port

int port

packetMagic

long packetMagic

addressHeader

int addressHeader

p2shHeader

int p2shHeader

dumpedPrivateKeyHeader

int dumpedPrivateKeyHeader

interval

int interval

targetTimespan

int targetTimespan

alertSigningKey

byte[] alertSigningKey

id

String id
See getId(). This may be null for old deserialized wallets. In that case we derive it heuristically by looking at the port number.


spendableCoinbaseDepth

int spendableCoinbaseDepth
The depth of blocks required for a coinbase transaction to be spendable.


subsidyDecreaseBlockCount

int subsidyDecreaseBlockCount

acceptableAddressCodes

int[] acceptableAddressCodes

dnsSeeds

String[] dnsSeeds

checkpoints

Map<K,V> checkpoints

Class com.google.bitcoin.core.NotFoundMessage extends InventoryMessage implements Serializable

Class com.google.bitcoin.core.PartialMerkleTree extends Message implements Serializable

Serialized Fields

transactionCount

int transactionCount

matchedChildBits

byte[] matchedChildBits

hashes

List<E> hashes

Class com.google.bitcoin.core.PeerAddress extends ChildMessage implements Serializable

serialVersionUID: 7501293709324197411L

Serialized Fields

addr

InetAddress addr

port

int port

services

BigInteger services

time

long time

Class com.google.bitcoin.core.PeerException extends Exception implements Serializable

Class com.google.bitcoin.core.Ping extends Message implements Serializable

Serialized Fields

nonce

long nonce

hasNonce

boolean hasNonce

Class com.google.bitcoin.core.Pong extends Message implements Serializable

Serialized Fields

nonce

long nonce

Class com.google.bitcoin.core.ProtocolException extends VerificationException implements Serializable

Class com.google.bitcoin.core.PrunedException extends Exception implements Serializable

Serialized Fields

hash

Sha256Hash hash

Class com.google.bitcoin.core.RejectMessage extends Message implements Serializable

serialVersionUID: -5246995579800334336L

Serialized Fields

message

String message

reason

String reason

code

com.google.bitcoin.core.RejectMessage.RejectCode code

messageHash

Sha256Hash messageHash

Class com.google.bitcoin.core.ScriptException extends VerificationException implements Serializable

Class com.google.bitcoin.core.Sha256Hash extends Object implements Serializable

Serialized Fields

bytes

byte[] bytes

Class com.google.bitcoin.core.StoredBlock extends Object implements Serializable

serialVersionUID: -6097565241243701771L

Serialized Fields

header

Block header

chainWork

BigInteger chainWork

height

int height

Class com.google.bitcoin.core.StoredTransactionOutput extends Object implements Serializable

serialVersionUID: -8744924157056340509L

Serialized Fields

value

BigInteger value
A transaction output has some value and a script used for authenticating that the redeemer is allowed to spend this output.


scriptBytes

byte[] scriptBytes

hash

Sha256Hash hash
Hash of the transaction to which we refer.


index

long index
Which output of that transaction we are talking about.


height

int height
The height of the creating block (for coinbases, NONCOINBASE_HEIGHT otherwise)

Class com.google.bitcoin.core.StoredUndoableBlock extends Object implements Serializable

serialVersionUID: 5127353027086786117L

Serialized Fields

blockHash

Sha256Hash blockHash

txOutChanges

TransactionOutputChanges txOutChanges

transactions

List<E> transactions

Class com.google.bitcoin.core.Transaction extends ChildMessage implements Serializable

serialVersionUID: -8567546957352643140L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Ensure object is fully parsed before invoking java serialization. The backing byte array is transient so if the object has parseLazy = true and hasn't invoked checkParse yet then data will be lost during serialization.

Throws:
IOException
Serialized Fields

version

long version

inputs

ArrayList<E> inputs

outputs

ArrayList<E> outputs

lockTime

long lockTime

updatedAt

Date updatedAt

confidence

TransactionConfidence confidence

appearsInHashes

Map<K,V> appearsInHashes

purpose

Transaction.Purpose purpose

Class com.google.bitcoin.core.TransactionConfidence extends Object implements Serializable

serialVersionUID: 4577920141400556444L

Serialized Fields

broadcastBy

CopyOnWriteArrayList<E> broadcastBy
The peers that have announced the transaction to us. Network nodes don't have stable identities, so we use IP address as an approximation. It's obviously vulnerable to being gamed if we allow arbitrary people to connect to us, so only peers we explicitly connected to should go here.


transaction

Transaction transaction
The Transaction that this confidence object is associated with.


depth

int depth

workDone

BigInteger workDone

confidenceType

TransactionConfidence.ConfidenceType confidenceType

appearedAtChainHeight

int appearedAtChainHeight

overridingTransaction

Transaction overridingTransaction

source

TransactionConfidence.Source source

Class com.google.bitcoin.core.TransactionInput extends ChildMessage implements Serializable

serialVersionUID: 2L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Ensure object is fully parsed before invoking java serialization. The backing byte array is transient so if the object has parseLazy = true and hasn't invoked checkParse yet then data will be lost during serialization.

Throws:
IOException
Serialized Fields

sequence

long sequence

outpoint

TransactionOutPoint outpoint

scriptBytes

byte[] scriptBytes

parentTransaction

Transaction parentTransaction

Class com.google.bitcoin.core.TransactionOutPoint extends ChildMessage implements Serializable

serialVersionUID: -6320880638344662579L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Ensure object is fully parsed before invoking java serialization. The backing byte array is transient so if the object has parseLazy = true and hasn't invoked checkParse yet then data will be lost during serialization.

Throws:
IOException
Serialized Fields

hash

Sha256Hash hash
Hash of the transaction to which we refer.


index

long index
Which output of that transaction we are talking about.


fromTx

Transaction fromTx

Class com.google.bitcoin.core.TransactionOutput extends ChildMessage implements Serializable

serialVersionUID: -590332479859256824L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Ensure object is fully parsed before invoking java serialization. The backing byte array is transient so if the object has parseLazy = true and hasn't invoked checkParse yet then data will be lost during serialization.

Throws:
IOException
Serialized Fields

value

BigInteger value

scriptBytes

byte[] scriptBytes

availableForSpending

boolean availableForSpending

spentBy

TransactionInput spentBy

parentTransaction

Transaction parentTransaction

Class com.google.bitcoin.core.UnknownMessage extends EmptyMessage implements Serializable

serialVersionUID: 3614705938207918775L

Serialized Fields

name

String name

Class com.google.bitcoin.core.VerificationException extends RuntimeException implements Serializable

Class com.google.bitcoin.core.VersionAck extends EmptyMessage implements Serializable

Class com.google.bitcoin.core.VersionMessage extends Message implements Serializable

serialVersionUID: 7313594258967483180L

Serialized Fields

clientVersion

int clientVersion
The version number of the protocol spoken.


localServices

long localServices
Flags defining what is supported. Right now VersionMessage.NODE_NETWORK is the only flag defined.


time

long time
What the other side believes the current time to be, in seconds.


myAddr

PeerAddress myAddr
What the other side believes the address of this program is. Not used.


theirAddr

PeerAddress theirAddr
What the other side believes their own address is. Not used.


subVer

String subVer
An additional string that today the official client sets to the empty string. We treat it as something like an HTTP User-Agent header.


bestHeight

long bestHeight
How many blocks are in the chain, according to the other side.


relayTxesBeforeFilter

boolean relayTxesBeforeFilter
Whether or not to relay tx invs before a filter is received

Class com.google.bitcoin.core.Wallet extends Object implements Serializable

serialVersionUID: 2L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

lock

ReentrantLock lock

pending

Map<K,V> pending

unspent

Map<K,V> unspent

spent

Map<K,V> spent

dead

Map<K,V> dead

transactions

Map<K,V> transactions

keychain

ArrayList<E> keychain

watchedScripts

Set<E> watchedScripts

params

NetworkParameters params

lastBlockSeenHash

Sha256Hash lastBlockSeenHash

lastBlockSeenHeight

int lastBlockSeenHeight

lastBlockSeenTimeSecs

long lastBlockSeenTimeSecs

acceptRiskyTransactions

boolean acceptRiskyTransactions

onWalletChangedSuppressions

int onWalletChangedSuppressions

insideReorg

boolean insideReorg

confidenceChanged

Map<K,V> confidenceChanged

vFileManager

WalletFiles vFileManager

vTransactionBroadcaster

TransactionBroadcaster vTransactionBroadcaster

vKeyRotationTimestamp

long vKeyRotationTimestamp

vKeyRotationEnabled

boolean vKeyRotationEnabled

keyCrypter

KeyCrypter keyCrypter

version

int version

description

String description

extensions

HashMap<K,V> extensions

riskAnalyzer

RiskAnalysis.Analyzer riskAnalyzer

balanceFutureRequests

List<E> balanceFutureRequests

Class com.google.bitcoin.core.WrongNetworkException extends AddressFormatException implements Serializable

Serialized Fields

verCode

int verCode
The version code that was provided in the address.


acceptableVersions

int[] acceptableVersions
The list of acceptable versions that were expected given the addresses network parameters.


Package com.google.bitcoin.crypto

Class com.google.bitcoin.crypto.DeterministicHierarchy extends Object implements Serializable

Serialized Fields

keys

Map<K,V> keys

rootPath

com.google.common.collect.ImmutableList<E> rootPath

lastPrivDerivedNumbers

Map<K,V> lastPrivDerivedNumbers

lastPubDerivedNumbers

Map<K,V> lastPubDerivedNumbers

Class com.google.bitcoin.crypto.DeterministicKey extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

parent

DeterministicKey parent

publicAsPoint

org.spongycastle.math.ec.ECPoint publicAsPoint

privateAsFieldElement

BigInteger privateAsFieldElement

childNumberPath

com.google.common.collect.ImmutableList<E> childNumberPath

chainCode

byte[] chainCode
32 bytes

Class com.google.bitcoin.crypto.HDDerivationException extends RuntimeException implements Serializable

Class com.google.bitcoin.crypto.KeyCrypterException extends RuntimeException implements Serializable

serialVersionUID: -4441989608332681377L

Class com.google.bitcoin.crypto.KeyCrypterScrypt extends Object implements Serializable

serialVersionUID: 949662512049152670L

Class com.google.bitcoin.crypto.MnemonicException extends Exception implements Serializable

Class com.google.bitcoin.crypto.MnemonicException.MnemonicChecksumException extends MnemonicException implements Serializable

Class com.google.bitcoin.crypto.MnemonicException.MnemonicLengthException extends MnemonicException implements Serializable

Class com.google.bitcoin.crypto.MnemonicException.MnemonicWordException extends MnemonicException implements Serializable

Serialized Fields

badWord

String badWord
Contains the word that was not found in the word list.


Package com.google.bitcoin.net.discovery

Class com.google.bitcoin.net.discovery.PeerDiscoveryException extends Exception implements Serializable

serialVersionUID: -2863411151549391392L


Package com.google.bitcoin.params

Class com.google.bitcoin.params.MainNetParams extends NetworkParameters implements Serializable

Class com.google.bitcoin.params.RegTestParams extends TestNet2Params implements Serializable

Class com.google.bitcoin.params.TestNet2Params extends NetworkParameters implements Serializable

Class com.google.bitcoin.params.TestNet3Params extends NetworkParameters implements Serializable

Class com.google.bitcoin.params.UnitTestParams extends NetworkParameters implements Serializable


Package com.google.bitcoin.protocols.channels

Class com.google.bitcoin.protocols.channels.ClientState.StoredClientPaymentChannel extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

id_

com.google.protobuf.ByteString id_

contractTransaction_

com.google.protobuf.ByteString contractTransaction_

refundTransaction_

com.google.protobuf.ByteString refundTransaction_

myKey_

com.google.protobuf.ByteString myKey_

valueToMe_

long valueToMe_

refundFees_

long refundFees_

closeTransactionHash_

com.google.protobuf.ByteString closeTransactionHash_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class com.google.bitcoin.protocols.channels.ClientState.StoredClientPaymentChannels extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

channels_

List<E> channels_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class com.google.bitcoin.protocols.channels.PaymentChannelCloseException extends Exception implements Serializable

Serialized Fields

error

PaymentChannelCloseException.CloseReason error

Class com.google.bitcoin.protocols.channels.ServerState.StoredServerPaymentChannel extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

bestValueToMe_

long bestValueToMe_

bestValueSignature_

com.google.protobuf.ByteString bestValueSignature_

refundTransactionUnlockTimeSecs_

long refundTransactionUnlockTimeSecs_

contractTransaction_

com.google.protobuf.ByteString contractTransaction_

clientOutput_

com.google.protobuf.ByteString clientOutput_

myKey_

com.google.protobuf.ByteString myKey_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class com.google.bitcoin.protocols.channels.ServerState.StoredServerPaymentChannels extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

channels_

List<E> channels_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class com.google.bitcoin.protocols.channels.ValueOutOfRangeException extends Exception implements Serializable


Package com.google.bitcoin.protocols.payments

Class com.google.bitcoin.protocols.payments.PaymentRequestException extends Exception implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.Expired extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidNetwork extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidOutputs extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidPaymentRequestURL extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidPaymentURL extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidPkiData extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidPkiType extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.InvalidVersion extends PaymentRequestException implements Serializable

Class com.google.bitcoin.protocols.payments.PaymentRequestException.PkiVerificationException extends PaymentRequestException implements Serializable


Package com.google.bitcoin.store

Class com.google.bitcoin.store.BlockStoreException extends Exception implements Serializable

Class com.google.bitcoin.store.UnreadableWalletException extends Exception implements Serializable


Package com.google.bitcoin.uri

Class com.google.bitcoin.uri.BitcoinURIParseException extends Exception implements Serializable

Class com.google.bitcoin.uri.OptionalFieldValidationException extends BitcoinURIParseException implements Serializable

Class com.google.bitcoin.uri.RequiredFieldValidationException extends BitcoinURIParseException implements Serializable


Package org.bitcoin.paymentchannel

Class org.bitcoin.paymentchannel.Protos.ClientVersion extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

major_

int major_

minor_

int minor_

previousChannelContractHash_

com.google.protobuf.ByteString previousChannelContractHash_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.Error extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

code_

Protos.Error.ErrorCode code_

explanation_

Object explanation_

expectedValue_

long expectedValue_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.Initiate extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

multisigKey_

com.google.protobuf.ByteString multisigKey_

minAcceptedChannelSize_

long minAcceptedChannelSize_

expireTimeSecs_

long expireTimeSecs_

minPayment_

long minPayment_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.ProvideContract extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

tx_

com.google.protobuf.ByteString tx_

initialPayment_

Protos.UpdatePayment initialPayment_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.ProvideRefund extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

multisigKey_

com.google.protobuf.ByteString multisigKey_

tx_

com.google.protobuf.ByteString tx_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.ReturnRefund extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

signature_

com.google.protobuf.ByteString signature_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.ServerVersion extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

major_

int major_

minor_

int minor_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.Settlement extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

tx_

com.google.protobuf.ByteString tx_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.TwoWayChannelMessage extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

type_

Protos.TwoWayChannelMessage.MessageType type_

clientVersion_

Protos.ClientVersion clientVersion_

serverVersion_

Protos.ServerVersion serverVersion_

initiate_

Protos.Initiate initiate_

provideRefund_

Protos.ProvideRefund provideRefund_

returnRefund_

Protos.ReturnRefund returnRefund_

provideContract_

Protos.ProvideContract provideContract_

updatePayment_

Protos.UpdatePayment updatePayment_

settlement_

Protos.Settlement settlement_

error_

Protos.Error error_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.paymentchannel.Protos.UpdatePayment extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

clientChangeValue_

long clientChangeValue_

signature_

com.google.protobuf.ByteString signature_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package org.bitcoin.protocols.payments

Class org.bitcoin.protocols.payments.Protos.Output extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

amount_

long amount_

script_

com.google.protobuf.ByteString script_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.protocols.payments.Protos.Payment extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

merchantData_

com.google.protobuf.ByteString merchantData_

transactions_

List<E> transactions_

refundTo_

List<E> refundTo_

memo_

Object memo_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.protocols.payments.Protos.PaymentACK extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

payment_

Protos.Payment payment_

memo_

Object memo_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.protocols.payments.Protos.PaymentDetails extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

network_

Object network_

outputs_

List<E> outputs_

time_

long time_

expires_

long expires_

memo_

Object memo_

paymentUrl_

Object paymentUrl_

merchantData_

com.google.protobuf.ByteString merchantData_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.protocols.payments.Protos.PaymentRequest extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

paymentDetailsVersion_

int paymentDetailsVersion_

pkiType_

Object pkiType_

pkiData_

com.google.protobuf.ByteString pkiData_

serializedPaymentDetails_

com.google.protobuf.ByteString serializedPaymentDetails_

signature_

com.google.protobuf.ByteString signature_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoin.protocols.payments.Protos.X509Certificates extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

certificate_

List<E> certificate_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Package org.bitcoinj.wallet

Class org.bitcoinj.wallet.Protos.EncryptedPrivateKey extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

initialisationVector_

com.google.protobuf.ByteString initialisationVector_

encryptedPrivateKey_

com.google.protobuf.ByteString encryptedPrivateKey_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.Extension extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

id_

Object id_

data_

com.google.protobuf.ByteString data_

mandatory_

boolean mandatory_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.Key extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

type_

Protos.Key.Type type_

privateKey_

com.google.protobuf.ByteString privateKey_

encryptedPrivateKey_

Protos.EncryptedPrivateKey encryptedPrivateKey_

publicKey_

com.google.protobuf.ByteString publicKey_

label_

Object label_

creationTimestamp_

long creationTimestamp_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.PeerAddress extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

ipAddress_

com.google.protobuf.ByteString ipAddress_

port_

int port_

services_

long services_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.Script extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

program_

com.google.protobuf.ByteString program_

creationTimestamp_

long creationTimestamp_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.ScryptParameters extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

salt_

com.google.protobuf.ByteString salt_

n_

long n_

r_

int r_

p_

int p_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.Transaction extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

version_

int version_

hash_

com.google.protobuf.ByteString hash_

pool_

Protos.Transaction.Pool pool_

lockTime_

int lockTime_

updatedAt_

long updatedAt_

transactionInput_

List<E> transactionInput_

transactionOutput_

List<E> transactionOutput_

blockHash_

List<E> blockHash_

blockRelativityOffsets_

List<E> blockRelativityOffsets_

confidence_

Protos.TransactionConfidence confidence_

purpose_

Protos.Transaction.Purpose purpose_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.TransactionConfidence extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

type_

Protos.TransactionConfidence.Type type_

appearedAtHeight_

int appearedAtHeight_

overridingTransaction_

com.google.protobuf.ByteString overridingTransaction_

depth_

int depth_

workDone_

long workDone_

broadcastBy_

List<E> broadcastBy_

source_

Protos.TransactionConfidence.Source source_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.TransactionInput extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

transactionOutPointHash_

com.google.protobuf.ByteString transactionOutPointHash_

transactionOutPointIndex_

int transactionOutPointIndex_

scriptBytes_

com.google.protobuf.ByteString scriptBytes_

sequence_

int sequence_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.TransactionOutput extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

value_

long value_

scriptBytes_

com.google.protobuf.ByteString scriptBytes_

spentByTransactionHash_

com.google.protobuf.ByteString spentByTransactionHash_

spentByTransactionIndex_

int spentByTransactionIndex_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize

Class org.bitcoinj.wallet.Protos.Wallet extends com.google.protobuf.GeneratedMessage implements Serializable

serialVersionUID: 0L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

unknownFields

com.google.protobuf.UnknownFieldSet unknownFields

bitField0_

int bitField0_

networkIdentifier_

Object networkIdentifier_

lastSeenBlockHash_

com.google.protobuf.ByteString lastSeenBlockHash_

lastSeenBlockHeight_

int lastSeenBlockHeight_

lastSeenBlockTimeSecs_

long lastSeenBlockTimeSecs_

key_

List<E> key_

transaction_

List<E> transaction_

watchedScript_

List<E> watchedScript_

encryptionType_

Protos.Wallet.EncryptionType encryptionType_

encryptionParameters_

Protos.ScryptParameters encryptionParameters_

version_

int version_

extension_

List<E> extension_

description_

Object description_

keyRotationTime_

long keyRotationTime_

memoizedIsInitialized

byte memoizedIsInitialized

memoizedSerializedSize

int memoizedSerializedSize



Copyright © 2014. All rights reserved.