post https://polygon-mainnet-rpc.allthatnode.com:8545/
Returns the author of the specified block.
Parameters
string
- Block number in hexadecimal, or the taglatest
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"
}