准备工作
- 本地搭建以太坊私链,使用POA共识。节点开启IPC。
功能描述
- 试过一些rpc包和go-ethereum 的rpc包,都不是很好用。有些命令好使,有些就报错。没有去深究这些rpc包生成的json有什么异常。直接自己实现。实现其实很简单,而且用起来也更靠谱。
上码
package eth import ( "bytes" "io/ioutil" "net/http" ) type ethRequest struct { general Method string `json:"method"` Params []interface{} `json:"params"` } type general struct { JsonRPC string `json:"jsonrpc"` ID int `json:"id"` } //生成ethRequest,Marshal 成[]byte ,传入do函数即可操作ethereum 节点 func do(jsonParam []byte)([]byte,error){ reader := bytes.NewReader(jsonParam) url := "http://127.0.0.1:8545" request, err := http.NewRequest("POST", url, reader) if err != nil { return []byte(""),err } request.Header.Set("Content-Type", "application/json;charset=UTF-8") client := http.Client{} resp, err := client.Do(request) if err != nil { return []byte(""),err } respBytes, err := ioutil.ReadAll(resp.Body) if err != nil { return []byte(""),err } return respBytes,nil }
其他说明
- 了解更多以太坊管理命令所需要的参数。Here: https://github.com/ethereum/g...
以上所述就是小编给大家介绍的《Json-RPC操作Ethereum 节点》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 图解集合 8 : 红黑树的移除节点操作
- 前端培训-中级阶段(6)- jQuery元素节点操作(2019-07-18期)
- 扩展你的复制集:MongoDB 4.0中从节点的非阻塞读操作
- xml创建节点(根节点、子节点)
- Vultr VPS 节点选择方法 | 各节点延迟一览
- 1.19 JQuery2:节点插入与节点选取
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Programming Concurrency on the JVM
Venkat Subramaniam / The Pragmatic Bookshelf / 2011-6-1 / USD 35.00
Concurrency on the Java platform has evolved, from the synchronization model of JDK to software transactional memory (STM) and actor-based concurrency. This book is the first to show you all these con......一起来看看 《Programming Concurrency on the JVM》 这本书的介绍吧!