bor_getSigners
Last updated:
bor_getSigners returns the set of validator addresses authorized to sign at a
given block on Polygon's Bor consensus layer. The result is a flat array of
0x-prefixed addresses.
This is a Bor-consensus-specific method — it is not part of the standard EVM /
Geth namespace and is only meaningful on Polygon. It belongs to the premium
bor_* family, so a Pro tier key (scope polygon_bor) is required.
The signer list it returns is a subset of bor_getSnapshot's validators
field and exists mainly for legacy compatibility. If you need richer consensus
state — stake/power per validator, the proposer-rotation accumulator, or the
recent-signers history — prefer bor_getSnapshot, which
returns all of it in one call. Reach for bor_getSigners when you only need the
bare authorized-signer set at a block.
Parameters
This method takes no parameters.
Returns
| Field | Type |
|---|---|
| result | object |
Examples
curl https://triport.io/sol \
-X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <api-key>' \
-d '{"id":1,"method":"bor_getSigners","params":[],"jsonrpc":"2.0"}'const res = await fetch("https://triport.io/sol", {
method: "POST",
headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
body: JSON.stringify({
"id": 1,
"method": "bor_getSigners",
"params": [],
"jsonrpc": "2.0"
}),
});
const data = await res.json();import requests
resp = requests.post(
"https://triport.io/sol",
headers={"Authorization": "Bearer <api-key>"},
json={"id":1,"method":"bor_getSigners","params":[],"jsonrpc":"2.0"},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Networks: mainnet.
- Credit cost: 1 per call.
FAQ
- What does bor_getSigners do?
- Returns the list of authorized validator signer addresses for a given Polygon (Bor) block.
- How many credits does bor_getSigners cost?
- bor_getSigners costs 1 credit(s) per call on Triport by default.
- Is bor_getSigners available over WebSocket?
- bor_getSigners is an HTTP JSON-RPC method.