MoneroPrivateKey.fromBip44Hex constructor

MoneroPrivateKey.fromBip44Hex(
  1. String keyHex
)

Factory method for creating an MoneroPrivateKey from a BIP-44 hex string.

Implementation

factory MoneroPrivateKey.fromBip44Hex(String keyHex) {
  return MoneroPrivateKey.fromBip44(BytesUtils.fromHexString(keyHex));
}