web3_clientVersion
現在のクライアントバージョンを返します。
パラメータ
なし
戻り値
String
現在のクライアントバージョン
サンプル
code:example.sh
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":67}'
// Result
{
"id":67,
"jsonrpc":"2.0",
"result": "Mist/v0.9.3/darwin/go1.4.1"
}
Infura を使用したサンプル
GET
code:infura_example_get.sh
POST
code:infura_example_post.sh
curl -i -X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}' \
RESPONSE
code:infura_response.sh
{"jsonrpc":"2.0","id":1,"result":"Geth/v1.8.6-patched-leveldb-8818ab0b/linux-amd64/go1.9.2"}
動作サンプル
code:demo.js
.then((response) => {
console.log(response)
$(document.body).append('<textarea cols="100" rows="30">' + JSON.stringify(response, null, '\t') + '</textarea>')
})
参考