class Input implements JsonSerializable (View source)

A input in a transaction

Properties

InputType $type

The input type Coinbase or Script.

string $txid

The transactions id of the spending transaction.

int $vout

The output index of the spending transaction.

ScriptSig $scriptSig

The input script signature.

int $sequence

The input sequence.

array<int,string>|null $witness

The input witnesses if any.

Methods

__construct(InputType $type, string $txid, string $scriptSig, int $vout = 4294967295, int $sequence = 4294967295, array|null $witness = null)

No description

bool
isCoinbase()

Check if this is a coinbase input.

static Input
fromArray(array $data)

Create an instance of Input class from a simple array

mixed
jsonSerialize()

JsonSerializable implementation.

Details

__construct(InputType $type, string $txid, string $scriptSig, int $vout = 4294967295, int $sequence = 4294967295, array|null $witness = null)

No description

Parameters

InputType $type
string $txid
string $scriptSig
int $vout
int $sequence
array|null $witness

bool isCoinbase()

Check if this is a coinbase input.

Return Value

bool

static Input fromArray(array $data)

Create an instance of Input class from a simple array

Parameters

array $data

Return Value

Input

mixed jsonSerialize()

JsonSerializable implementation.

Return Value

mixed