第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

【1】區(qū)塊鏈-以太坊搭建私有網(wǎng)絡(luò)

標(biāo)簽:
區(qū)塊鏈
以太坊搭建私有网络实战
基本环境安装
1. 安装nodejs
2. brew tap ethereum/ethereum
3. brew install ethereum
4. Ethereum Wallet and Mist Beta 0.10.0
https://github.com/ethereum/mist/releases/
配置创世区块文件
  1. 文件名:CustomGenesis.json
    {
    "nonce": "0x0000000000000042",     
    "timestamp": "0x00",
    "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "extraData": "0x00",     
    "gasLimit": "0x8000000",     
    "difficulty": "0x400",
    "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "coinbase": "0x3333333333333333333333333333333333333333",     
    "alloc": {
     },
     "config": {
        "chainId": 15,
        "homesteadBlock": 0,
        "eip155Block": 0,
        "eip158Block": 0
    }
    }

图片描述

初始化创世区块

geth --identity "mydev" --rpc --rpccorsdomain "*" --datadir "./Mychains/dev" --rpcapi "db,eth,net,web3" init "./CustomGenesis.json"

图片描述

开启私有网络
  1. 只开启rpc
    geth --datadir "./Mychains/dev" --identity "mydev" --rpccorsdomain "*" --networkid 99 console
    图片描述
  2. 开启rpc和http
    geth --datadir "./Mychains/dev" --identity "mydev" --rpc --rpcapi "db,eth,net,web3,personal,web3" --nodiscover --rpccorsdomain "*" --networkid 100 console
    图片描述
创建账户

图片描述

IPC连接连接,并开启挖矿(新开一个客户端)

geth attach /Users/uiste/www/blockchain/test-geth/Mychains/dev/geth.ipc

图片描述

如果是Web应用的时候,就使用http://127.0.0.8545 地址就是连接

开启mist浏览器

Mac遇到启动mist失败

图片描述
解决方案:

  1. 通过命令行方式启动让Ethereum Wallet,添加参数让他和刚起的私有链同用一个ipc。

    uiste@uiste:~/www/blockchain/test-geth/Mychains/dev$     cd /Applications/
    uiste@uiste:/Applications$     ./Ethereum\ Wallet.app/Contents/MacOS/Ethereum\ Wallet --rpc "/Users/uiste/www/blockchain/test-geth/Mychains/dev/geth.ipc"
  2. 通过命令行方式启动Mist,添加参数让他和刚起的私有链同用一个ipc。
    图片描述
    uiste@uiste:/Applications$      Mist.app/Contents/MacOS/Mist --rpc "/Users/uiste/www/blockchain/test-geth/Mychains/dev/geth.ipc"

启动Mist后的界面如下:

图片描述
停止挖矿,命令行查看账户余额
图片描述

點(diǎn)擊查看更多內(nèi)容
3人點(diǎn)贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
PHP開發(fā)工程師
手記
粉絲
6
獲贊與收藏
22

關(guān)注作者,訂閱最新文章

閱讀免費(fèi)教程

感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報(bào)

0/150
提交
取消