Solidity

如何解鎖 geth --dev 開發者帳戶?

  • March 29, 2018

當我使用“geth –dev”時,我發現它已經存在一個帳戶。但我不知道密碼。如何解鎖這個帳戶。

該帳戶的密碼為空。

$ geth --dev console
...
> personal.unlockAccount(eth.accounts[0], "");
true

--password password.txt您可以使用文件沒有內容的位置從命令行解鎖。

我執行的以下命令顯示eth.accounts[0]已解鎖:

$ touch password.txt
$ geth --dev --password password.txt console
...
> eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[0], value: web3.toWei(1, "ether")});
"0x3a2608729a9aa08745fb016c94025fe469bf7181fdbda76f960b8a562b733971"

引用自:https://ethereum.stackexchange.com/questions/44210