首先下載下傳安裝geth,下載下傳位址如下: http://ethfans.org/wikis/Wallet-Mirror 安裝後會在安裝目錄生成一個geth.exe,需要使用指令行工具來運作它。
初始化
geth --datadir "chain" init piccgenesis.json
piccgenesis.json檔案:
{
"config": {
"chainId": 33,
"homesteadBlock": 0,
"eip155Block": 0,
"eip158Block": 0
},
"coinbase" : "0x0000000000000000000000000000000000000000",
"difficulty" : "0x4",
"extraData" : "",
"gasLimit" : "0xffffffff",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp" : "0x00",
"alloc": { }
}
}
設定json-rpc
設定rpc并開啟rpc接口,rpc位址為127.0.0.1:8534:
geth --rpc --rpccorsdomain * --datadir ./mychain -rpcport 8534 --port 30308 --identity test --networkid 111111111 --rpcaddr 0.0.0.0 --rpcapi admin,miner,db,eth,net,web3,personal --nodiscover console
注:這裡用的是測試網絡,不需要同步所有區塊,如果要正式應用需要一台linux伺服器,開啟主網同步所有區塊,在打開并設定rpc。
php 調用json-rpc
geth安裝完成,rpc接口開啟,下面就該用php調用geth的rpc方法了
也可以參考以下幾個連結:
https://github.com/ethereum/wiki/wiki/JSON-RPC
https://github.com/paritytech/parity/wiki/JSONRPC-personal-module
go-ethereum APIs:
https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal
http://www.cocoachina.com/blockchain/20180125/22019.html
PHP本文用的Thinkphp中的jsonrpc類:
public function index(){
vendor('jsonRPC.jsonRPCClient');
$client = new \jsonRPCClient('http://localhost:8534');
dump($client->personal_newAccount("111111"));
}
一個錢包就建立好了,111111是密碼,是personal_newAccount這個方法的參數,還有其它rpc方法參考上面的連接配接。
原文《以太坊常見問題和錯誤》中的:
http://cw.hubwiz.com/card/c/ethereum-FAQ/1/1/18/另外推薦幾個很受歡迎全網稀缺的互動教程: