class BlockParser (View source)

BlockParser reads the raw block data extracted from blk files.

NOTE: These requires knowledge of more than just one block in the chain, this is not a db just a reader/parser.

  1. height (calculated based on knowing the prev block hash back to genesis.)
  2. confirmations (total blocks - height)
  3. median time (MEDIAN([time, of, past, 11, blocks]))
  4. chain work (requires knowledge of the prev blocks chain work)
  5. next block hash (it's in the name we need the next block in the chain to tell us)

Properties

protected Stream $block

The block bytes we read from.

protected string|null $magicBytes

The magic bytes that indicates the block start and type.

protected int|null $size

The block size.

Methods

__construct(string $block, int|null $size = null, string|null $magicBytes = null)

Initialize a new instance of the bitcoin block parser class.

transactions()

Get the transactions.

int
weight()

The block weight.

bool
hasSegwit()

Check if the block contains any segregated witness transactions.

int
strippedSize()

Get the stripped size of the block, that is the size of the block without witness data.

int|float
difficulty()

Get the block difficulty.

int
transactionCount()

Get the transaction count.

string
blockHash()

Gets the block hash

int
nonce()

Get the block nonce.

int
bits()

Get the block bits.

string
bitsHex()

Get the block bits as hexadecimal.

int
timestamp()

Gets the block timestamp.

string
merkleRoot()

Gets the merkle root of the block.

string
previousBlock()

Gets the previous block hash.

int
version()

Gets the block version.

string
versionHex()

Gets the block version as hexadecimal.

string
block(bool $hex = false)

Gets the raw block.

int
size()

Gets the size of the block in bytes.

string|null
magicBytes()

Gets the magic bytes.

void
end()

Ends the reader and releases the underlying memory stream.

__destruct()

Closes the stream.

Details

__construct(string $block, int|null $size = null, string|null $magicBytes = null)

Initialize a new instance of the bitcoin block parser class.

Parameters

string $block

The block bytes (binary string!).

int|null $size

[Optional] The block size.

string|null $magicBytes

[Optional] The magic bytes for this block (binary string!).

Generator transactions()

Get the transactions.

Return Value

Generator

int weight()

The block weight.

Return Value

int

bool hasSegwit()

Check if the block contains any segregated witness transactions.

Return Value

bool

int strippedSize()

Get the stripped size of the block, that is the size of the block without witness data.

Return Value

int

int|float difficulty()

Get the block difficulty.

Return Value

int|float

int transactionCount()

Get the transaction count.

Return Value

int

string blockHash()

Gets the block hash

Return Value

string

int nonce()

Get the block nonce.

Return Value

int

int bits()

Get the block bits.

Return Value

int

string bitsHex()

Get the block bits as hexadecimal.

Return Value

string

int timestamp()

Gets the block timestamp.

Return Value

int

string merkleRoot()

Gets the merkle root of the block.

Return Value

string

string previousBlock()

Gets the previous block hash.

Return Value

string

int version()

Gets the block version.

Return Value

int

string versionHex()

Gets the block version as hexadecimal.

Return Value

string

string block(bool $hex = false)

Gets the raw block.

Note that magic bytes and size variable are striped from the block.

Parameters

bool $hex

get the block as hex string or binary string.

Return Value

string

int size()

Gets the size of the block in bytes.

Return Value

int

string|null magicBytes()

Gets the magic bytes.

Return Value

string|null

Binary string.

void end()

Ends the reader and releases the underlying memory stream.

Return Value

void

__destruct()

Closes the stream.