getEvmAddress method

Future<Uint8List?> getEvmAddress(
  1. int chainId
)

ENSIP-11: EVM coin type is 0x80000000 | chainId.

Implementation

Future<Uint8List?> getEvmAddress(int chainId) {
  final coinType = 0x80000000 | chainId;
  return getAddress(coinType);
}