上一篇文章里,我们讲到 Ubuntu16.04 搭建以太坊Ethereum私链 这次,我就要来介绍如何下载我们的钱包来链接我们的私有链。

以太坊钱包Wallet下载

钱包下载,大家可以去 这里下载。现在最新版本是0.10.0

不管大家选择是 Ethereum Wallet 还是 Mist 都是可以的,这里我都下载了Mac版本的2个钱包。

安装的话没有难度,正常安装就行。

Geth Server 私有链服务器端

因为我是远程链接私有链不是本地链接,所有我采用了RPC 链接方式。

Geth 启动方式

geth --identity "TestNode" --rpc --rpcaddr "0.0.0.0" --rpcport "8545" --datadir data0 --port "30303" --nodiscover console

此次我们加入了 --rpcaddr参数来允许远程连接,默认是拒绝远程链接的,只能本地链接。

客户端钱包Wallet启动

Mac

Ethereum Wallet 启动

"/Applications/Ethereum Wallet.app/Contents/MacOS/Ethereum Wallet" --rpc "http://YOUR_IP:8545"

Mist 启动

/Applications/Mist.app/Contents/MacOS/Mist --rpc http://YOUR_IP:8545

Windows

Mist 启动

"D:\Program Files\Mist-win64-0-10-0\Mist.exe" --rpc http://YOUR_IP:8545

Ethereum Wallet 启动

"D:\Program Files\Ethereum-Wallet-win64-0-10-0\Ethereum Wallet.exe" --rpc http://YOUR_IP:8545

请自行替换 YOUR_IP