1.1 參考文檔
https://g2ex.github.io/2017/09/12/ethereum-guidance/
1.2 GO語言安裝
解壓
設(shè)置環(huán)境變量
運行g(shù)o version獲取go的版本信息憎亚,說明安裝成功
1.3 安裝ethereum
下載https://codeload.github.com/ethereum/go-ethereum/zip/v1.8.3
解壓戈次,cd根目錄下
make all
設(shè)置環(huán)境變量
運行g(shù)eth version獲取geth的版本信息,說明安裝成功
1.4 搭建私有鏈
1.4.1 創(chuàng)建目錄和genesis.json文件
創(chuàng)建私有鏈根目錄./testnet
創(chuàng)建數(shù)據(jù)存儲目錄./testnet/data0
創(chuàng)建創(chuàng)世區(qū)塊配置文件./testnet/genesis.json
{
"config": {
"chainID": 1024,
"homesteadBlock": 0,
"eip155Block": 0,
"eip158Block": 0
},
"alloc": {},
"coinbase": "0x0000000000000000000000000000000000000000",
"difficulty": "0x400",
"extraData": "",
"gasLimit": "0x2fefd8",
"nonce": "0xdeadbeefdeadbeef",
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp": "0x00"
}
1.4.2 初始化操作
cd ./testnet
geth --datadir data0 init genesis.json
成功后顯示:
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"><v:stroke joinstyle="miter"><v:formulas></v:formulas><v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"></v:path></v:stroke></v:shapetype><v:shape id="圖片_x0020_6" o:spid="_x0000_i1027" type="#_x0000_t75" style="width:414.75pt;height:59.25pt;visibility:visible;mso-wrap-style:square"><v:imagedata src="file:///C:\Users\ADMINI~1\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png" o:title=""></v:imagedata></v:shape>
1.4.3 啟動私有節(jié)點
cd ./testnet
geth --networkid 1024 --identity "bootnode" --rpc --rpcaddr "192.168.0.1" --rpcport "8545" --datadir data0 --port "30303" --nodiscover console
1.4.4 創(chuàng)建賬號
personal.newAccount()
1.4.5 查看賬號
eth.accounts
1.4.6 查看賬號余額
eth.getBalance(eth.accounts[0])
1.4.7 啟動&停止挖礦
啟動挖礦:
miner.start(1)
其中 start 的參數(shù)表示挖礦使用的線程數(shù)核偿。第一次啟動挖礦會先生成挖礦所需的 DAG 文件,這個過程有點慢匈辱,等進(jìn)度達(dá)到 100% 后钾埂,就會開始挖礦,此時屏幕會被挖礦信息刷屏蝶怔。
停止挖礦,在 console 中輸入:
miner.stop()
挖到一個區(qū)塊會獎勵5個以太幣兄墅,挖礦所得的獎勵會進(jìn)入礦工的賬戶踢星,這個賬戶叫做 coinbase,默認(rèn)情況下 coinbase 是本地賬戶中的第一個賬戶隙咸,可以通過 miner.setEtherbase() 將其他賬戶設(shè)置成 coinbase沐悦。
1.4.8 轉(zhuǎn)賬
目前,賬戶 0 已經(jīng)挖到了 3 個塊的獎勵五督,賬戶 1 的余額還是0:
eth.getBalance(eth.accounts[0])
15000000000000000000
eth.getBalance(eth.accounts[1])
0
我們要從賬戶 0 向賬戶 1 轉(zhuǎn)賬藏否,所以要先解鎖賬戶 0,才能發(fā)起交易:
personal.unlockAccount(eth.accounts[0])
Unlock account 0x3443ffb2a5ce3f4b80080791e0fde16a3fac2802
Passphrase:
true
發(fā)送交易充包,賬戶 0 -> 賬戶 1:
amount = web3.toWei(5,'ether')
"5000000000000000000"
eth.sendTransaction({from:eth.accounts[0],to:eth.accounts[1],value:amount})
需要輸入密碼 123456
INFO [09-12|07:38:12] Submitted transaction fullhash=0x9f5e61f3d686f793e2df6378d1633d7a9d1df8ec8c597441e1355112d102a6ce recipient=0x02bee2a1582bbf58c42bbdfe7b8db4685d4d4c62
"0x9f5e61f3d686f793e2df6378d1633d7a9d1df8ec8c597441e1355112d102a6ce"
此時如果沒有挖礦副签,用 txpool.status 命令可以看到本地交易池中有一個待確認(rèn)的交易遥椿,可以使用 eth.getBlock("pending", true).transactions 查看當(dāng)前待確認(rèn)交易。
使用 miner.start() 命令開始挖礦:
miner.start(1);admin.sleepBlocks(1);miner.stop();
新區(qū)塊挖出后淆储,挖礦結(jié)束冠场,查看賬戶 1 的余額,已經(jīng)收到了賬戶 0 的以太幣:
web3.fromWei(eth.getBalance(eth.accounts[1]),'ether')
1.4.9 連接到其他節(jié)點
可以通過 admin.addPeer()
方法連接到其他節(jié)點本砰,兩個節(jié)點要要指定相同的 chainID碴裙。
假設(shè)有兩個節(jié)點:節(jié)點一和節(jié)點二,chainID 都是 1024点额,通過下面的步驟就可以從節(jié)點一連接到節(jié)點二舔株。
首先要知道節(jié)點二的 enode 信息,在節(jié)點二的 JavaScript console 中執(zhí)行下面的命令查看 enode 信息:
admin.nodeInfo.enode
"enode://d465bcbd5c34da7f4b8e00cbf9dd18e7e2c38fbd6642b7435f340c7d5168947ff2b822146e1dc1b07e02f7c15d5ca09249a92f1d0caa34587c9b2743172259ee@[::]:30303"
然后在節(jié)點一的 JavaScript console 中執(zhí)行 admin.addPeer()还棱,就可以連接到節(jié)點二:
admin.addPeer("enode://d465bcbd5c34da7f4b8e00cbf9dd18e7e2c38fbd6642b7435f340c7d5168947ff2b822146e1dc1b07e02f7c15d5ca09249a92f1d0caa34587c9b2743172259ee@127.0.0.1:30304")
addPeer() 的參數(shù)就是節(jié)點二的 enode 信息载慈,注意要把 enode 中的 [::]
替換成節(jié)點二的 IP 地址。連接成功后珍手,節(jié)點二就會開始同步節(jié)點一的區(qū)塊娃肿,同步完成后,任意一個節(jié)點開始挖礦珠十,另一個節(jié)點會自動同步區(qū)塊,向任意一個節(jié)點發(fā)送交易凭豪,另一個節(jié)點也會收到該筆交易焙蹭。
通過 admin.peers
可以查看連接到的其他節(jié)點信息,通過 net.peerCount
可以查看已連接到的節(jié)點數(shù)量嫂伞。
除了上面的方法孔厉,也可以在啟動節(jié)點的時候指定 --bootnodes
選項連接到其他節(jié)點。
1.4.10 創(chuàng)建Windows節(jié)點
1. 初始化新節(jié)點:
G:\blockchain\testnet>"C:\Program Files\Geth\geth.exe" --datadir data0 init genesis.json
注意:
- 新節(jié)點的 networkid 要與 boot node 一致
- 需要與 boot node 使用同一個創(chuàng)世區(qū)塊genesis.json
2. 啟動新節(jié)點:
G:\blockchain\testnet>"C:\Program Files\Geth\geth.exe" --networkid 1024 --identity "onenode" --rpc --rpcport "8545" --datadir data0 --port "30303" --nodiscover console(不指定IP地址帖努,默認(rèn)訪問http://localhost:8545)
指定IP****地址撰豺,訪問http://192.168.0.158:8545****:
"C:\Program Files\Geth\geth.exe" --networkid 1024 --identity "onenode" --rpc --rpcaddr "192.168.0.158" --rpcport "8545" --datadir data0 --port "30303" --nodiscover console
3. 建立節(jié)點間聯(lián)系:
使用admin.nodeInfo.enode獲取主節(jié)點的節(jié)點信息,如:
其中@[::]****修改為@[192.168.0.1]****,即實際IP****地址拼余。
在新節(jié)點加入有兩種方式:
1是在testnet/data0/geth/目錄 下添加static-nodes.json污桦,內(nèi)容為:
[
]
2 使用命令添加
4. 查看節(jié)點間的聯(lián)系
admin.peers
5. 查看節(jié)點信息
admin.nodeInfo
6. 創(chuàng)建賬號
0xd4ed594d42c53f3e0ecf2b04d847b582f7afc7be/123456
0x8aa41e6394cf59efda41c8ca6c3030d35a0aaa02/123456
0xcd96c4200610a8fee23327757a2da91666c6ff98/123456
7. 注意事項:
啟動挖礦,才能確認(rèn)交易和同步數(shù)據(jù)區(qū)塊匙监。
1.4.11 Windows客戶端Ethereum Wallet連接Linux部署的私有鏈
G:\blockchain\Ethereum-Wallet-win64-0-10-0>"Ethereum Wallet.exe" --rpc http://192.168.0.1:8545
遠(yuǎn)程RPC****連接的風(fēng)險提示:
<v:shape id="圖片_x0020_8" o:spid="_x0000_i1026" type="#_x0000_t75" style="width:415.5pt;height:212.25pt;
visibility:visible;mso-wrap-style:square"><v:imagedata src="file:///C:\Users\ADMINI~1\AppData\Local\Temp\msohtmlclip1\01\clip_image002.png" o:title=""></v:imagedata></v:shape>
<v:shape id="圖片_x0020_7" o:spid="_x0000_i1025" type="#_x0000_t75" style="width:415.5pt;height:229.5pt;
visibility:visible;mso-wrap-style:square"><v:imagedata src="file:///C:\Users\ADMINI~1\AppData\Local\Temp\msohtmlclip1\01\clip_image003.png" o:title=""></v:imagedata></v:shape>
1.5 geth相關(guān)參數(shù)
1.5.1 啟動geth時指定同步區(qū)塊數(shù)據(jù)路徑
geth --datadir=/home/blockchain/ethereum
1.5.2 查看區(qū)塊內(nèi)容
eth.getBlock(0)
1.5.3 查看區(qū)塊數(shù)目
eth.blockNumber
1.5.4 查看交易
eth.getTransaction("0xa838434f36d753af82f863a40c27a8e4620c654265f876b3df75e1d54d169139")