PubKeyHash
Opaque ByteArray
that represents the hash of a PubKey
.
The first part of a regular payment address (i.e. not witnessed by a script) is a PubKeyHash
.
Example instantiation:
pkh: PubKeyHash = PubKeyHash::new(#...); ...
Associated functions
new
PubKeyHash::new(bytes: ByteArray) -> PubKeyHash
from_data
PubKeyHash::from_data(data: Data) -> PubKeyHash
Getters
bytes
pkh.bytes -> ByteArray
Operators
==
PubKeyHash == PubKeyHash -> Bool
!=
PubKeyHash != PubKeyHash -> Bool
>=
PubKeyHash >= PubKeyHash -> Bool
>
PubKeyHash > PubKeyHash -> Bool
<=
PubKeyHash <= PubKeyHash -> Bool
<
PubKeyHash < PubKeyHash -> Bool
Methods
serialize
pkh.serialize() -> ByteArray
show
Hexadecimal representation of a PubKeyHash
.
pkh.show() -> String