Parameters
chainId
string
default:"747474"
required
Unique identifier for a blockchain network.
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.
Parameters: [blockHash]Positional parameters for eth_getSignersAtHash:params[]: The hash of the block to retrieve signers for (32-byte hex string).
Returns
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=747474 \
--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"
]
}