/eth/v1/validator/sync_committee_contribution
Produce a sync committee contribution
Requests that the beacon node produce a sync committee contribution.
Query parameters
slotstringRequiredExample:
The slot for which a sync committee contribution should be created.
1
subcommittee_indexstringRequiredExample:
the subcommittee index for which to produce the contribution.
1
beacon_block_rootstringRequiredExample:
the block root for which to produce the contribution.
0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2
Pattern: ^0x[a-fA-F0-9]{64}$
Responses
200
Success response
application/json
400
Invalid request syntax.
application/json
404
Not found
application/json
500
Beacon node internal error.
application/json
503
Beacon node is currently syncing, try again later.
application/json
get
GET /v1/<YOUR_API_KEY_HERE>//eth/v1/validator/sync_committee_contribution HTTP/1.1
Host: mainnet.ethereum.validationcloud.io
Accept: */*
{
"data": {
"slot": null,
"beacon_block_root": null,
"subcommittee_index": null,
"aggregation_bits": "0x01",
"signature": null
}
}
curl -X GET \
"https://mainnet.ethereum.validationcloud.io/v1/<YOUR_API_KEY_HERE>/eth/v1/validator/sync_committee_contribution?slot=1&subcommittee_index=1&beacon_block_root=0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2" \
-H "Content-Type: application/json"
Last updated
Was this helpful?