Produce a sync committee contribution
curl -X GET \ "curl 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"
curl -X GET \ "curl https://sepolia.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 7 months ago
Requests that the beacon node produce a sync committee contribution.
Success response
const response = await fetch('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', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": { "slot": {}, "beacon_block_root": {}, "subcommittee_index": {}, "aggregation_bits": {}, "signature": {} } }