本文介绍基于macbook pro环境、 go-ethereum搭建以太坊ETH私有链环境
This paper describes the private chain environment based on macbook pro environment, go-etheum in Ethio-Ethno-Ethno.
(1)下载源码 :go-ethereum源码下载地址
(2)编译源码:make geth (只编译geth)
(3)生成geth
经过(2)后生成geth位于 ethereum/go-ethereum/build/bin/路径下
xff08;2xff09; generated genth below etheium/go-ethereum/build/bin/ Path
此处不做冗述
There's no redundancies here.
每个参数含义:
Meaning of each parameterxff1a;
参数名称 | 参数描述 |
---|---|
chainId | 链类型ID,私链:10,testnet: ,mainnet: |
alloc | 预置账号以及对应以太币数量,因为私有链挖矿容易,故不需要预置有币的账号,需要的时候自己创建即可以 |
coinbase | 矿工的账号,随便填 |
difficulty | 设置当前区块的难度,如果难度过大,cpu挖矿就很难,这里设置较小难度 |
extraData | 附加信息,随便填,可以填你的个性信息 |
gasLimit | 该值设置对GAS的消耗总量限制,用来限制区块能包含的交易信息总和,因为我们是私有链,所以填最大 |
nonce | nonce nonce就是一个64位随机数,用于挖矿,注意他和mixhash的设置需要满足以太坊的Yellow paper, 4.3.4. Block Header Validity, (44)章节所描述的条件 |
mixhash | 与nonce配合用于挖矿,由上一个区块的一部分生成的hash。注意他和nonce的设置需要满足以太坊的Yellow paper, 4.3.4. Block Header Validity, (44)章节所描述的条件。 |
parentHash | 上一个区块的hash值(父hash),因为是创世块,所以这个值是0 |
timestamp | 设置创世块的时间戳 |
命令:geth init https://blog.csdn.net/u010159567/article/details/83865823/genesis.json --datadir https://blog.csdn.net/u010159567/article/details/83865823/data/
Commands & #xff1a; geth init https://blog.csdn.net/u010159567artique/details/83865823/genesis.json --datadir https://blog.csdn.net/u010159567article/details/83865823/data/
初始化之后自动生成data文件夹
Auto-generated data folder after initialization
命令:–rpc 启动rpc服务器,具体参数用 geth -h查看
geth --datadir “/Users/wujinquan/eth_workspace/private_chain/data” --networkid 314590 --rpc console 2>> https://blog.csdn.net/u010159567/article/details/83865823/debug.log
command & #xff1a; ~rpc activates the rpc server & #xff0c; views
geth-datadir “/Users/wujinquan/eth_workspace/private_chain/data” --networkid 314590 --rpc console 2> > https://blog.csdn.net/u0109567artique/details/83865823/debug.log
查看log日志
View log log logs
现在私有网络就搭建成功,下面就可以在这个刚刚搭建出来的私有以太坊网络中执行挖矿操作了,
Now that the private network has been set up, we'll be able to carry out mining operations in this newly built private Etheria network.
挖矿首先必须有一个账户,输入下面的命令,查看当前节点中的所有账户:
The mining must first have an account and enter the following command to see all accounts in the current node:
查看log,可看到区块hash,区块高度等信息
View log, you can see block shash, block height, etc.
(1) 以太坊rpc接口文档、扩展接口
(2) 用postman工具查询rpc常用的方法
在启动私有节点时我们已经知道rpc端口为默认的8545
We already know the port of rpc as the default 8545
以太坊私链搭建难度总体不大,需要有一定的软件相关经验。截止目前区块链研究人员已经不少,过程中遇到问题稍加搜索即可解决
To date, there are a number of block-chain researchers & #xff0c; problems in the process can be solved with a minor search.
注册有任何问题请添加 微信:MVIP619 拉你进入群
打开微信扫一扫
添加客服
进入交流群
发表评论