Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 702 Bytes

File metadata and controls

39 lines (28 loc) · 702 Bytes
description Requests the beacon node to provide a set of sync committee duties for a particular epoch.

/eth/v1/validator/duties/sync/{epoch}

Parameters:

epoch-string, epoch // EPOCHS_PER_SYNC_COMMITTEE_PERIOD <= current_epoch // EPOCHS_PER_SYNC_COMMITTEE_PERIOD + 1

Request body:

An array of the validator indices for which to obtain the duties.

Example:

{% code overflow="wrap" %}

// Request
curl -X POST-H 'Content-Type: application/json' 
https://ethereum-beacon.blockpi.network/rpc/v1/your-rpc-key/eth/v1/validator/duties/sync/284100

[
  "1"
]

// Result
{
    "execution_optimistic": false,
    "data": []
}

{% endcode %}