publicKeyToAddress method
Implementation
@override
String publicKeyToAddress(Uint8List publicKey) {
final addressBytes = sha160fromByte(publicKey);
Uint8List versionedHash = Uint8List(21);
versionedHash[0] = setting.networkType!.pubKeyHash;
versionedHash.setRange(1, 21, addressBytes);
return getBase58Address(versionedHash);
}