eth_mining
クライアントが現在新しいブロックをマイニングしている場合は true を返します。
パラメータ
なし
戻り値
Boolean
クライアントがマイニング中の場合は true
それ以外の場合は false
サンプル
code:example.sh
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_mining","params":[],"id":71}'
// Result
{
"id":71,
"jsonrpc": "2.0",
"result": true
}
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":"eth_mining","params":[],"id":1}' \
RESPONSE
code:infura_response.sh
{"jsonrpc":"2.0","id":1,"result":false}
動作サンプル
code:demo.js
.then((response) => {
console.log(response)
$(document.body).append('<textarea cols="100" rows="30">' + JSON.stringify(response, null, '\t') + '</textarea>')
})
参考