如何从Clojure调用json-rpc?

时间:2015-10-24 13:57:43

标签: clojure json-rpc

我有一个在端口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

中添加一些外部库

2 个答案:

答案 0 :(得分:2)

我认为你应该试试http-kit。 您还需要一些json库(data.jsoncheshire

所以添加到project.clj以下依赖项:

  • [http-kit" 2.1.18"]
  • [org.clojure / data.json" 0.2.6"]

试试这个

(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"}

,样板将为您处理。