扣丁學堂區塊鏈2.0技術以太坊私人鏈搭建和geth用戶端使用

來源:互聯網
上載者:User

  在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)//查看區塊資訊

相關關鍵詞:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.