class Output implements JsonSerializable (View source)

A output in a transaction

Properties

Money $value

The monetary value of this output.

int $n

The output index.

ScriptPubKey $scriptPubKey

The script pub key.

Methods

__construct(int $value, int $n, string $scriptPubKey)

Creates the new output class object.

static Output
fromArray(array $data)

Create an instance of Output class from a simple array

mixed
jsonSerialize()

JsonSerializable implementation.

Details

__construct(int $value, int $n, string $scriptPubKey)

Creates the new output class object.

Parameters

int $value

he monetary value of this output in Satoshis.

int $n

The output index.

string $scriptPubKey

The script pub key in hexadecimal.

static Output fromArray(array $data)

Create an instance of Output class from a simple array

Parameters

array $data

Return Value

Output

mixed jsonSerialize()

JsonSerializable implementation.

Return Value

mixed