findFromSproutPrefix method
Implementation
ZIP32CoinConfig? findFromSproutPrefix(List<int> prefix) {
return _configs.firstWhereNullable(
(e) => BytesUtils.bytesEqual(prefix, e.b58SproutAddressPrefix),
);
}
ZIP32CoinConfig? findFromSproutPrefix(List<int> prefix) {
return _configs.firstWhereNullable(
(e) => BytesUtils.bytesEqual(prefix, e.b58SproutAddressPrefix),
);
}