Transaction class

A bitcoin transaction.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

input() Future<List<TxIn>>
isCoinBase() Future<bool>
isExplicitlyRbf() Future<bool>
isLockTimeEnabled() Future<bool>
lockTime() Future<int>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
output() Future<List<TxOut>>
serialize() Future<List<int>>
Return the transaction bytes, bitcoin consensus encoded.
size() Future<int>
toString() String
A string representation of this object.
override
txid() Future<String>
version() Future<int>
vsize() Future<int>
weight() Future<int>

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

create({required List<int> transactionBytes}) Future<Transaction>
Transaction constructor