> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-flatcalltracer-getproof.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# bor_getCurrentProposer | Polygon

> Polygon API method bor_getCurrentProposer returns the address of the current block proposer on the Bor consensus layer. On Polygon via Chainstack.

Polygon API method `bor_getCurrentProposer` returns the address of the validator that is the current block proposer on the Bor consensus layer. This method takes no parameters.

## Parameters

This method takes no parameters.

## Response

* `result` — the address of the current block proposer.

```json theme={"system"}
{ "jsonrpc": "2.0", "id": 1, "result": "0x0e94b9b3fabd95338b8b23c36caae1d640e1339f" }
```

## Use case

`bor_getCurrentProposer` is used by validator dashboards and monitoring tools to track which validator is currently proposing blocks on Polygon.


## OpenAPI

````yaml openapi/polygon_node_api/bor/bor_getCurrentProposer.json POST /a9bca2f0f84b54086ceebe590316fff3
openapi: 3.0.0
info:
  title: bor_getCurrentProposer example
  version: 1.0.0
  description: Get the address of the current block proposer.
servers:
  - url: https://nd-828-700-214.p2pify.com
security: []
paths:
  /a9bca2f0f84b54086ceebe590316fff3:
    post:
      tags:
        - Ethereum Operations
      summary: bor_getCurrentProposer
      operationId: bor_getCurrentProposer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: bor_getCurrentProposer
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Result
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string

````