如何通过波场上的私钥找到public地址
How to find public address through private key on TRON
如何从他的 私钥 中找到用户 public 地址?
我已经找到了一种将 public 转换为十六进制的方法
但卡在这一个!
对于比特币,你需要使用这个包来找到 public 密钥 => dart_wif
print('hex :::::: ${HEX.encode(index.privateKey!)}');
WIF decoded = WIF(version: 128, privateKey: index.privateKey!, compressed: true);
String key = wif.encode(decoded);
print(key);
使用TronWeb,你可以调用这个函数:
const address = tronWeb.address.fromPrivateKey(newAccount.privateKey);
该代码来自TronWeb's tests
之一
如何从他的 私钥 中找到用户 public 地址? 我已经找到了一种将 public 转换为十六进制的方法 但卡在这一个!
对于比特币,你需要使用这个包来找到 public 密钥 => dart_wif
print('hex :::::: ${HEX.encode(index.privateKey!)}');
WIF decoded = WIF(version: 128, privateKey: index.privateKey!, compressed: true);
String key = wif.encode(decoded);
print(key);
使用TronWeb,你可以调用这个函数:
const address = tronWeb.address.fromPrivateKey(newAccount.privateKey);
该代码来自TronWeb's tests
之一