getAdressBTCP2PKHFomat method
Implementation
Future<String> getAdressBTCP2PKHFomat(
String publicKeyHEX, bool needKeyHash) async {
final res = await jsVMService.callJS(
"window.BitcoinBlockchain.getAdressBTCFromHexPublicKeyP2PKH('$publicKeyHEX', $needKeyHash)");
return res.toString();
}