addressBytes function

List<int> addressBytes(
  1. String pubKey
)

Implementation

List<int> addressBytes(String pubKey) {
  final List<int> byteList = base58.decode(pubKey).toList();
  return byteList;
}