Input
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.
mixed
jsonSerialize()
JsonSerializable implementation.
Details
__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.