安装Ethereum-Wallet钱包

为了方便开发和调试后续的智能合约,用Ethereum-Wallet钱包比较好,下面简单介绍下Ethereum-Wallet的安装和使用,

1、下载地址:https://github.com/ethereum/mist/releases

Ethereum-Wallet是开源的,在上面的链接中,根据你的操作系统下载最新的版本即可。以Windows为例,下载Ethereum-Wallet-win64-0-11-1.zip

2、下载的是免安装版的,解压即可


3、启动Geth节点:F:\Geth>geth --datadir "data" console --rpc

(使用--rpc参数,来启动rpc服务,这样打开钱包的时候,钱包会自动连接本地私链上)

4、打开钱包:双击:Ethereum Wallet.exe


5、通过Geth控制台查看一下账户及余额:

> eth.accounts

["0xf4fb90bd8713491d62778d0a46f8f6b83b98ed91", "0x1dfa2d1d645e45f5d77025f63b73c8

efed9a8240"]

> eth.getBalance(eth.accounts[0])

665000000000000000000

> eth.getBalance(eth.accounts[1])

0

6、Ethereum-Wallet的功能包括几部分:

钱包账户管理:显示余额,新建账户

转账功能

智能合约功能

最近交易记录的显示

你可能感兴趣的:(安装Ethereum-Wallet钱包)