TriportRPC

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`](./bor_getSnapshot.md), 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

bor_getSigners return value
FieldType
resultobject

Examples

curl https://<your-endpoint>/ \
  -X POST -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"bor_getSigners","params":[]}'
const res = await fetch("https://<your-endpoint>/", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "id": 1,
  "method": "bor_getSigners",
  "params": [],
  "jsonrpc": "2.0"
}),
});
const data = await res.json();
import requests
resp = requests.post("https://<your-endpoint>/", json={"id":1,"method":"bor_getSigners","params":[],"jsonrpc":"2.0"})
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Networks: mainnet.
  3. 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.