获取带安全帽的地址的私钥
Get the private keys of the Address with hard hat
在节点启动期间(安全帽)我能够读取帐户和私钥。
我不明白如何使用安全帽控制台再次检索它
npx hardhat console
我什至注入了 web3 库,但我只能检索地址。
web3:
await web3.eth.getAccounts()
ethers.js
[owner, addr1] = await ethers.getSigners()
私钥,即使是解锁帐户,也不会在 JSON-RPC API 上共享。
这意味着,您无法使用 web3js、ethers.js 或 API.
的任何其他包装器检索它们
在节点启动期间(安全帽)我能够读取帐户和私钥。
我不明白如何使用安全帽控制台再次检索它
npx hardhat console
我什至注入了 web3 库,但我只能检索地址。
web3:
await web3.eth.getAccounts()
ethers.js
[owner, addr1] = await ethers.getSigners()
私钥,即使是解锁帐户,也不会在 JSON-RPC API 上共享。
这意味着,您无法使用 web3js、ethers.js 或 API.
的任何其他包装器检索它们