Skip to main content

Parameters

chainId
string
default:"737373"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"eth_getSignersAtHash"
required
JSON-RPC method name.
params
object
required
Parameters: [blockHash]Positional parameters for eth_getSignersAtHash:
  • params[]: The hash of the block to retrieve signers for (32-byte hex string).

Returns

result
array
List of validator addresses (20-byte hex strings) that signed the given block.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=737373 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "eth_getSignersAtHash",
    "params": [
      "0x4dc1217672d9dd8215be5f1461f8d139cbe0dd871a38c3fa90a3ef248d94cac2"
    ]
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": [
    "0x0375b2fc7140977c9c76d45421564e354ed42277",
    "0x42eefcda06ead475cde3731b8eb138e88cd0bac3",
    "0x5973918275c01f50555d44e92c9d9b353cadad54"
  ]
}