我有一个在端口8545上运行的本地服务器,它监听JSON-RPC请求。我可以像这样使用curl来调用它:
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0xf54c19d9ef3873bfd1f7a622d02d86249a328f06", "latest"],"id":1}' http://localhost:8545
来自Clojure的同等号召是什么?我是否需要在 project.clj ?
中添加一些外部库答案 0 :(得分:2)
我认为你应该试试http-kit。 您还需要一些json库(data.json或cheshire)
所以添加到project.clj
以下依赖项:
试试这个
(ns your-ns
(:require [org.httpkit.client :as http]
[clojure.data.json :as json]))
(let [url "http://localhost:8545"
body (json/write-str
{:jsonrpc "2.0"
:method "eth_getBalance"
:params ["0xf54c19d9ef3873bfd1f7a622d02d86249a328f06" "latest"]
:id 1})
options {:body body}
result @(http/post url options)]
(prn result))
答案 1 :(得分:0)
我有一个类似的用例,所以我创建了一个小的Clojure library用于进行JSON-RPC调用。这样,您就可以做到
(ns example.core
(:require [json-rpc.core :as rpc]))
(with-open [channel (rpc/open "http://localhost:8545")]
(rpc/send! channel "eth_blockNumber" ["latest"]))
;; => {:result "0x14eca", :id "6fd9a7a8-c774-4b76-a61e-6802ae64e212"}
,样板将为您处理。