class TxParser (View source)

TxParser reads the transaction from an input of bytes (binary string) or a hexadecimal string.

fee can't be calculated without having access to the spending output.

make output value into a Money object for simple calculations.

Properties

string $txid

The transaction id.

string $hash

The transaction hash (differs from txid for witness transactions).

int $size

The transaction size

int $vsize

The virtual transaction size (differs from size for witness transactions)

LockTime $locktime

The block height or timestamp of when the transaction can be spend.

int $version

The version of this transaction.

int $inputCount

The number of inputs contained in this transaction.

Inputs $inputs

The transaction inputs.

int $outputCount

The number of outputs contained in this transaction.

Outputs $outputs

The transaction outputs.

bool $segwit

Flag indicating the presence of witness data

string|null $hex

The full transaction as a hexadecimal value.

int $weight

The transaction weight

Methods

__construct(string $txid, string $hash, int $size, int $vsize, int $locktime, int $version, int $inputCount, array $inputs, int $outputCount, array $outputs, string|null $hex = null, bool $segwit = false)

No description

static TxParser
fromHex(string $hex)

Reads the transaction data from a hexadecimal string

static TxParser
fromStream(Stream $block)

Reads the transaction data from the stream.

static void
readWitnessesFromStream(Stream $block, int $inputCount, array $inputs, int|null $ps, int|null $pe)

Reads the witness data from the stream.

static array
readOutputsFromStream(Stream $block, int $outputCount)

Reads the outputs of the transaction from the stream.

static array
readInputsFromStream(Stream $block, int $inputsCount, bool $segwit)

Reads the inputs of the transaction from the stream.

Details

__construct(string $txid, string $hash, int $size, int $vsize, int $locktime, int $version, int $inputCount, array $inputs, int $outputCount, array $outputs, string|null $hex = null, bool $segwit = false)

No description

Parameters

string $txid
string $hash
int $size
int $vsize
int $locktime
int $version
int $inputCount
array $inputs
int $outputCount
array $outputs
string|null $hex
bool $segwit

static TxParser fromHex(string $hex)

Reads the transaction data from a hexadecimal string

Parameters

string $hex

Return Value

TxParser

Exceptions

RuntimeException

static TxParser fromStream(Stream $block)

Reads the transaction data from the stream.

Note that the stream must be positioned at transaction start.

Parameters

Stream $block

Return Value

TxParser

static protected void readWitnessesFromStream(Stream $block, int $inputCount, array $inputs, int|null $ps, int|null $pe)

Reads the witness data from the stream.

Parameters

Stream $block
int $inputCount
array $inputs
int|null $ps
int|null $pe

Return Value

void

static protected array readOutputsFromStream(Stream $block, int $outputCount)

Reads the outputs of the transaction from the stream.

Parameters

Stream $block
int $outputCount

Return Value

array

static protected array readInputsFromStream(Stream $block, int $inputsCount, bool $segwit)

Reads the inputs of the transaction from the stream.

Parameters

Stream $block
int $inputsCount
bool $segwit

Return Value

array