TxParser
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.
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
No description
Reads the witness data from the stream.
Reads the outputs of the transaction from the stream.
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
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.
Note that the stream must be positioned at transaction start.
static protected void
readWitnessesFromStream(Stream $block, int $inputCount, array $inputs, int|null $ps, int|null $pe)
Reads the witness data from the stream.
static protected array
readOutputsFromStream(Stream $block, int $outputCount)
Reads the outputs of the transaction from the stream.
static protected array
readInputsFromStream(Stream $block, int $inputsCount, bool $segwit)
Reads the inputs of the transaction from the stream.