Go-Ethereum

使用 Json-RPC 在乙太坊節點生成新地址

  • January 14, 2022

好吧,首先,我對乙太坊很陌生,也許我在問一些愚蠢的問題,但我的問題如下。我覺得使用 json-rpc 命令很舒服,我想知道如何創建一個新的乙太坊地址。在 bitcoind 中,我正在搜尋的方法是“getnewaddress”,但我不知道在乙太坊中是否有另一種方法。如果有人可以幫助我,我將不勝感激

看看文件

創建新帳戶

geth account new

創建一個新帳戶並列印地址。

在控制台上,使用:

personal.newAccount("passphrase")

通過 RPC(不安全的解決方案)

 curl -X POST --data '{"jsonrpc":"2.0","method":"personal_newAccount","params":["passowrd"],"id":74}' http://localhost:8545

要使用它,您需要啟用個人 Apigeth --rpc --rpcapi "personal,eth,web3" 更多詳細資訊:https ://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_newaccount

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