bech32ShelleyAddressFromBytes function

String bech32ShelleyAddressFromBytes(
  1. Uint8Buffer bytes
)

Convert bytes to bech32 Shelley address. TODO move to shelley_address.dart

Implementation

String bech32ShelleyAddressFromBytes(Uint8Buffer bytes) {
  final addr = ShelleyAddress(bytes);
  return addr.toBech32();
}