sync_committee_subscriptions.yaml
1 post: 2 operationId: "prepareSyncCommitteeSubnets" 3 summary: "Subscribe to sync committee subnets" 4 description: | 5 Subscribe to a number of sync committee subnets 6 7 Sync committees are not present in phase0, but are required for Altair networks. 8 9 Subscribing to sync committee subnets is an action performed by VC to enable network participation in Altair networks, and only required if the VC has an active validator in an active sync committee. 10 11 tags: 12 - ValidatorRequiredApi 13 - Validator 14 requestBody: 15 content: 16 application/json: 17 schema: 18 type: array 19 items: 20 $ref: '../../beacon-node-oapi.yaml#/components/schemas/Altair.SyncCommitteeSubscription' 21 responses: 22 "200": 23 description: "Successful response" 24 "400": 25 $ref: '../../beacon-node-oapi.yaml#/components/responses/InvalidRequest' 26 "500": 27 $ref: '../../beacon-node-oapi.yaml#/components/responses/InternalError'