Call Ethereum rpc

運行geth

geth --datadir /mnt/eth --rpc
# --rpc 默認在http://localhost:8545開啟rpc

curl 請求

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"net_version","params":[],"id":1}'

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_chainId","params":[],"id":0}'

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_syncing","params":[],"id":0}'

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_blockNumber","params":[],"id":1}'
# {"jsonrpc":"2.0","id":1,"result":"0x509e24"}

####

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_getBlockByNumber","params":["0x1", true],"id":1}'
# true  返回transactions的詳細信息
# false 只返回transactions的hash

curl http://localhost:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_getBalance","params":["0xe89943ec20d856f064a87349a00ef6ab00aed042", "latest"],"id":1}'
#{"jsonrpc":"2.0","id":1,"result":"0x740414b151bf7e0ba2"}

curl http://127.0.0.1:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_getTransactionByHash","params":["0x4ee29e4d3c07a461d7378fa29c74884b5d1e297d9f45324eb7be51ec7780bb3e"],"id":1}'

curl http://127.0.0.1:8545 -H 'content-type:application/json;' -X POST \
--data '{"method":"eth_getTransactionByBlockNumberAndIndex","params":["0x18d522", "0x5"],"id":1}'

python script

import json
import requests

url = "http://localhost:8545"
headers = {'content-type': 'application/json'}
payload = json.dumps({"method": 'eth_blockNumber', "params": [], "id": '1' })

response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)

personal 模塊

開啟 personal模塊api
geth --datadir /mnt/vol/eth --rpc --rpcapi "personal"

import json
import requests

url = "http://localhost:8545"
headers = {'content-type': 'application/json'}
payload = json.dumps({"method": 'personal_newAccount', "params": ["zqw"], "id": '1' }) 
# 產(chǎn)生新地址

response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)

Golang code

package main

import (
    "encoding/json"
    "fmt"
    "io/ioutil"
    "math/big"
    "net/http"
    "strings"
)

type rpcData struct {
    Jsonrpc string `json:"jsonrpc"`
    ID      int    `json:"id"`
    Result  string `json:"result"`
}

func main() {

    url := "http://localhost:8545/"

    payload := strings.NewReader("{\"method\":\"eth_getBalance\",\"params\":[\"0x6cafe7473925998db07a497ac3fd10405637a46d\", \"latest\"],\"id\":0}")

    req, _ := http.NewRequest("POST", url, payload)

    req.Header.Add("content-type", "application/json")

    res, _ := http.DefaultClient.Do(req)

    defer res.Body.Close()
    body, _ := ioutil.ReadAll(res.Body)

    fmt.Println(string(body))

    var obj rpcData
    json.Unmarshal([]byte(body), &obj)

    balance := obj.Result // 0x29d669390feebf072 超過20位 是bigInt類型

    n := new(big.Int)

    n, err := n.SetString(balance[2:], 16)

    if !err {
        fmt.Println("SetString: error")
        return
    }

    fmt.Printf("balance 十六進制: %s, 十進制: %d \n", balance, n)

}

參考:

https://infura.io/
https://blog.linux-mac.com/2018/06/01/33.html
https://github.com/ethereum/wiki/wiki/JSON-RPC
https://tokenmarket.net/blog/protecting-ethereum-json-rpc-api-with-password/

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末拇囊,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌娱俺,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件嵌莉,死亡現(xiàn)場離奇詭異掩幢,居然都是意外死亡缤骨,警方通過查閱死者的電腦和手機浮禾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進店門伏嗜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人伐厌,你說我怎么就攤上這事÷阌埃” “怎么了挣轨?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長轩猩。 經(jīng)常有香客問我卷扮,道長,這世上最難降的妖魔是什么均践? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任晤锹,我火速辦了婚禮,結果婚禮上彤委,老公的妹妹穿的比我還像新娘鞭铆。我一直安慰自己,他們只是感情好焦影,可當我...
    茶點故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布车遂。 她就那樣靜靜地躺著,像睡著了一般斯辰。 火紅的嫁衣襯著肌膚如雪舶担。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天彬呻,我揣著相機與錄音衣陶,去河邊找鬼。 笑死闸氮,一個胖子當著我的面吹牛剪况,可吹牛的內容都是我干的。 我是一名探鬼主播湖苞,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼拯欧,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了财骨?” 一聲冷哼從身側響起镐作,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤藏姐,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后该贾,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體羔杨,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年杨蛋,在試婚紗的時候發(fā)現(xiàn)自己被綠了兜材。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡逞力,死狀恐怖曙寡,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情寇荧,我是刑警寧澤举庶,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站揩抡,受9級特大地震影響户侥,放射性物質發(fā)生泄漏。R本人自食惡果不足惜峦嗤,卻給世界環(huán)境...
    茶點故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一蕊唐、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧烁设,春花似錦替梨、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至曹体,卻和暖如春俗扇,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背箕别。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工铜幽, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人串稀。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓除抛,卻偏偏與公主長得像,于是被迫代替她去往敵國和親母截。 傳聞我的和親對象是個殘疾皇子到忽,可洞房花燭夜當晚...
    茶點故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內容