/ apis / validator / sync_committee_contribution_and_proof.yaml
sync_committee_contribution_and_proof.yaml
 1  post:
 2    operationId: "publishContributionAndProofs"
 3    summary: "Publish multiple contribution and proofs"
 4    description: "Publish multiple signed sync committee contribution and proofs"
 5    tags:
 6      - ValidatorRequiredApi
 7      - Validator
 8    requestBody:
 9      content:
10        application/json:
11          schema:
12            type: array
13            items:
14              $ref: '../../beacon-node-oapi.yaml#/components/schemas/Altair.SignedContributionAndProof'
15    responses:
16      "200":
17        description: "Successful response"
18      "400":
19        $ref: '../../beacon-node-oapi.yaml#/components/responses/InvalidRequest'
20      "500":
21        $ref: '../../beacon-node-oapi.yaml#/components/responses/InternalError'