bor_getCurrentProposer
Last updated:
bor_getCurrentProposer returns a single 0x-prefixed address: the signer of
the validator that is the current block proposer on Polygon. This is part of
the bor namespace — Polygon's Bor (Proof-of-Stake) consensus extension — and is
not exposed by standard EVM/Geth methods.
The proposer rotates every block (Polygon block time is ~2.1s), selected by stake weight within the active validator set. Because the answer changes so frequently, this method is best suited to real-time "who is proposing right now" lookups — for example, MEV pre-confirmation logic or live validator dashboards. Poll it once per block at most; the value is stale almost immediately after it is read.
If you need the full proposer schedule for an epoch rather than the single
current proposer, call bor_getSnapshot instead, which
returns the validator set together with the recent-signers history. To resolve
the proposer (author) of a historic block, use
bor_getAuthor.
This is a bor-namespace method available on the Pro tier and above. It is
rate limited per tier with a short burst allowance; there is no daily quota.
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_getCurrentProposer","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_getCurrentProposer",
"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_getCurrentProposer","params":[],"jsonrpc":"2.0"},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Networks: mainnet.
- Credit cost: 1 per call.
FAQ
- What does bor_getCurrentProposer do?
- Returns the address of the validator currently scheduled to propose blocks on Polygon's Bor consensus layer.
- How many credits does bor_getCurrentProposer cost?
- bor_getCurrentProposer costs 1 credit(s) per call on Triport by default.
- Is bor_getCurrentProposer available over WebSocket?
- bor_getCurrentProposer is an HTTP JSON-RPC method.