geth常用命令(web3)

1:启动geth(window,Linux)

geth --datadir "D:\ethereum\geth\AppData" --rinkeby --syncmode "light" --rpc

--datadir为数据存放的地址,比如私钥,数据区块等,使用rinkeby网络, 轻客户端同步

2:geth的web3控制台

一:启动web3控制台

geth --datadir "D:\ethereum\geth\AppData" attach  ipc:\\.\pipe\geth.ipc

二:所有账户

geth --datadir "D:\ethereum\geth\AppData" account list

三:将ethereum Wallet中的账户导入到geth只需要复制私钥即可

你可能感兴趣的:(geth常用命令(web3))