本文共 1782 字,大约阅读时间需要 5 分钟。
首先下载安装geth,下载地址如下:
安装后会在安装目录生成一个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": { }}}
设置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。
geth安装完成,rpc接口开启,下面就该用php调用geth的rpc方法了
也可以参考以下几个链接:
https://github.com/ethereum/wiki/wiki/JSON-RPChttps://github.com/paritytech/parity/wiki/JSONRPC-personal-module
go-ethereum APIs:
https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personalhttp://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方法参考上面的连接。
原文《以太坊常见问题和错误》中的:
另外推荐几个很受欢迎全网稀缺的互动教程:
- ,主要是介绍使用php进行智能合约开发交互,进行账号创建、交易、转账、代币开发以及过滤器和事件等内容。
- ,主要是针对python围绕web3.py进行区块链以太坊应用开发的讲解。
- ,主要是针对java和android程序员围绕web3j库进行区块链以太坊开发的讲解。
- ,主要是介绍使用node.js、mongodb、区块链、ipfs实现去中心化电商DApp实战,适合进阶。
- ,主要介绍智能合约与dapp应用开发,适合入门。
转载地址:http://wqazx.baihongyu.com/