findFromSproutPrefix method

ZIP32CoinConfig? findFromSproutPrefix(
  1. List<int> prefix
)

Implementation

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