乐趣区

关于以太坊:以太坊-geth两种创建账户方式

上面是两种创立账户形式

  1. 命令行应用

    geth account new
  2. geth console 里应用

    personal.newAccount()

然而第一种办法有默认目录,自己试验为 ///root/.ethereum/keystore

  • 如果须要 geth console 找到 geth account new 的账户:
    须要将账户从默认目录挪动至 console 对应的 keystore 文件夹
  • 如果想要 geth account new 间接到对应的 geth console 目录
    应用

    geth --datadir "**path to your data dir**" account new

    如 geth –datadir ///dapp/test account new

退出移动版