encodeKey abstract method

String encodeKey(
  1. List<int> pubKey, [
  2. Map<String, dynamic> kwargs = const {}
])

Encodes a public key into a blockchain address.

This method takes a public key in the form of a List

  • pubKey: The public key to be encoded as a blockchain address.
  • kwargs: Optional keyword arguments for encoder-specific options.

Returns the blockchain address string representing the encoded public key.

Implementation

String encodeKey(List<int> pubKey, [Map<String, dynamic> kwargs = const {}]);