在2018年相信大多數都瞭解過區塊鏈開發技術,它分為三個架構:1.0、2.0、3.0,今天我們講的是區塊鏈2.0技術以太坊私人鏈搭建和geth用戶端使用的詳細介紹。
geth用戶端的安裝
使用安裝包安裝
sudoapt-getinstallsoftware-properties-common
sudoadd-apt-repository-yppa:ethereum/ethereum
sudoapt-getupdate
sudoapt-getinstallethereum
使用源碼編譯,搭建golang的環境
1、先把go語言安裝包下載下來wget
2.執行sudotar-C/usr/local/-xzfgo1.8.3.linux-amd64.tar.gz解壓
3.vim~/.bashrc添加exportPATH=$PATH:/usr/local/go/bin然後在/home目錄下建立workspace目錄,添加go的工作目錄exportGOPATH=/home/workspace,最後source~/.bashrc
4.sudoapt-getinstallgit-y安裝git進入workspace,建立github.com目錄,github.com目錄建立ethereum目錄,在ethereum目錄中執行gitclonehttps://github.com/ethereum/go-ethereum.git
5.cdgo-ethereum執行makegeth
建立私人鏈
建立一個初始塊
vimgenesis.json
{
"nonce":"0x0000000000000042",
"config":{
"chainId":1123,
"homesteadBlock":0,
"eip155Block":0,
"eip158Block":0
},
"timestamp":"0x0",
"parentHash":"0x0000000000000000000000000000000000000000000000000000000000000000",
"extraData":"0x00",
"gasLimit":"0x80000000",
"difficulty":"0x10",
"mixhash":"0x0000000000000000000000000000000000000000000000000000000000000000",
"coinbase":"0x3333333333333333333333333333333333333333",
"alloc":{}
}
初始化創世塊
geth--datadir"qkl"--networkid1123initgenesis.json
進入私人鏈
geth--identity"qkl"--datadir"qkl"--networkid1123--rpc--port30303console2>>geth.log
geth用戶端的一些命令
賬戶操作
eth.accounts//查看賬戶
personal.listAccounts//查看賬戶
personal.newAccount("***")//建立賬戶
personal.unlockAccount("**********")//解鎖賬戶
personal.lockAccount("**********")//鎖定賬戶
代幣操作
eth.getBalance()//查看餘額
web3.fromWei()//單位換算
節點操作
net模組
net.listening//查看節點狀態
net.peerCount//查看節點連結的數量
admin模組
admin.nodeInfo//查看節點資訊
admin.addPeer()//添加節點
admin.peers//查看添加的節點的資訊
eth模組
eth.hashrate//查看節點的hash運算速率
開啟和關閉挖礦
miner.start(n)//n是挖礦的線程數
miner.stop()
一些設定命令
miner.setEtherbase(eth.accounts[n])//etherbase地址並不需要一定是本機上
miner.setExtra("zhou")//寫一些額外資訊
eth.getBlock(n)//查看區塊資訊