encodeExtendedFullViewKey method
Encodes the Sapling extended full viewing key as a Bech32 string.
Implementation
String encodeExtendedFullViewKey(ZIP32CoinConfig config) {
return ZcashEncodingUtils.encodeBech32Address(
bytes: toBytes(),
encoding: Bech32Encodings.bech32,
hrp: config.hrpSaplingExtendedFullViewingKey,
);
}