bor_getAuthor

Returns the author of the specified block.

Parameters

  • string- Block number in hexadecimal, or the tag latest to get the latest block.
curl https://polygon-mainnet-archive.allthatnode.com:8545/8U3JLUhzIDg3GShvy9hkCCSYkLGc11kj \
--request POST \
--header "Content-Type: application/json" \
--data '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bor_getAuthor",
  "params": [
    "0x1000"
  ]
}'

Returns

  • string- Address of the author
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x42eefcda06ead475cde3731b8eb138e88cd0bac3"
}

Try Yourself

Language
Click Try It! to start a request and see the response here!