fingerprint property

  1. @override
Uint8List fingerprint
override

Returns the first 4 bytes of the hash160 compressed public key.

Implementation

@override
Uint8List get fingerprint {
  var identifier = _hash160(_compressed(q));
  return Uint8List.view(identifier.buffer, 0, 4);
}