Eth getBlockByHash

Returns information about a block by hash.

post

Request body sample: {"jsonrpc":"2.0","method":"eth_getBlockByHash","params":["0xdc0818cf78f21a8e70579cb46a43643f78291264dda342ae31049421c82d21ae", false],"id":1}

Body
idintegeroptional
jsonrpcstringoptional
methodstringoptional
paramsany[] | nullableoptional

Responses
curl -L \
  --request POST \
  --url 'eth_getBlockByHash' \
  --header 'Content-Type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "text",
    "method": "text",
    "params": []
  }'
{
  "id": 1,
  "jsonrpc": "text",
  "result": "text"
}