GET
/
validator
/
blinded_blocks
/
{slot}
curl --request GET \
  --url https://beacon-nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/eth/v1/validator/blinded_blocks/{slot}
{
  "slot": 123,
  "parent_root": "<string>",
  "state_root": "<string>",
  "body": {}
}

The interactive example will return Slot already finalized unless you edit the parameters.

The /eth/v1/validator/blinded_blocks/{slot} method is a specialized API endpoint in the Ethereum Beacon Chain. It is designed to provide information about blinded blocks for a specific slot. A blinded block is a form of block proposal that contains limited information, typically used in specific consensus mechanisms or when enhanced privacy and security are required during the block proposal process.

This endpoint is particularly useful for validators and developers who need to interact with blinded blocks, whether for validation, analysis, or synchronization with the Beacon Chain.

Get you own node endpoint today

Start for free and get your app to production levels immediately. No credit card required.

You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • {slot}: This parameter specifies the slot number for the blinded block information being requested. It is a crucial parameter and forms an integral part of the endpoint URL.

Response

  • object — blinded block information.
    • slot — the slot number for which the blinded block information is provided. This confirms the specific time interval the response data is relevant to.
    • proposer_index — the index of the validator responsible for the blinded block proposal. This index is used to identify the specific validator within the Beacon Chain.
    • parent_root — the root of the parent block to which this blinded block is linked. Understanding the parent block is important for maintaining blockchain continuity.
    • state_root — the root of the beacon chain state after the inclusion of the blinded block. The state root is essential for verifying the integrity of the chain’s state post-block inclusion.
    • body — the body of the blinded block, containing the necessary data in a blinded format. This section includes transactions and attestations but with limited visibility to protect certain aspects of the block data.

The /eth/v1/validator/blinded_blocks/{slot} method plays a crucial role in the context of Ethereum, especially for validators and participants who engage with more advanced and privacy-focused aspects of blockchain operations. It ensures access to necessary but restricted information for effective blockchain management and security.

Path Parameters

slot
integer
default:6244411
required

Slot for which to produce a new blinded block

Query Parameters

randao_reveal
string
default:0x8363f30516d67556dae486c64535e2641293e794ddf21631fe06a32903648e70b606f5461c5f37c13c23f545c1d13e5401ea6a48526e01c9d94ea028e02fec5edc42034fc22b23f3a9dd90621173b2a1141a6ecf409d8bb61c82440e87a5bb25
required

RANDAO reveal for the block

graffiti
string

Graffiti for the block

Example:

"0x5374616b65576973650000000000000000000000000000000000000000000000"

Response

200
application/json
Successfully produced a new blinded block
slot
integer
required
parent_root
string
required
state_root
string
required
body
object
required