String toBase58Address(List<int> bytes) { final String base58String = base58.encode(Uint8List.fromList(bytes)); return base58String; }