Out Point
data class OutPoint(val hash: ByteVector32, val index: Long) : BtcSerializable<OutPoint>
Content copied to clipboard
an out point is a reference to a specific output in a specific transaction that we want to claim
Parameters
hash
reversed sha256(sha256(tx)) where tx is the transaction we want to refer to
index
index of the output in tx that we want to refer to