beacon-APIs icon indicating copy to clipboard operation
beacon-APIs copied to clipboard

Collection of RESTful APIs provided by Ethereum Beacon nodes

Results 80 beacon-APIs issues
Sort by recently updated
recently updated
newest added

### Specification `GET /eth/v1/checkpoint/finalized_state` * Returns `BeaconState` object for a *finalized checkpoint* state from the WS period `GET /eth/v1/checkpoint/finalized_blocks/{slot}/root` * Returns 404 if a block at a `slot` is either...

Hey, is there any chance a GraphQL API could be standardized along with any REST or JSON RPC APIs being discussed?

## What does this PR do? This PR adds a version 2 endpoint of `/eth/v1/validator/beacon_committee_subscriptions`. The difference between this version and the previous version of the endpoint is that in...

Adds minimal set of lightclient routes to super a server-based trust-less censorable lightclient. Sample usage flow for these APIs: 1. Gather weak subjectivity checkpoint root from some trusted source 2....

## What Following from #64, this PR adds a `/eth/v1/validator/liveness` endpoint which indicates if a validator has been observed to be "live" in some epoch. The idea is that doppleganger...

`List[uint8, ...]` can be thought of either as byte string or a collection of (small) integers. In the former interpretation, one would serialize it as `"0xabcd"` whereas the latter would...

Now that block posts are able to accept SSZ input, it is useful to be able to fail them on the basis that the server doesn't support the nominated type....

All duties objects include the pubkey of the relevant validator https://github.com/ethereum/beacon-APIs/blob/b901afdb33a11d30afb9f614cf522ae548508374/types/validator.yaml#L35-L39 https://github.com/ethereum/beacon-APIs/blob/b901afdb33a11d30afb9f614cf522ae548508374/types/validator.yaml#L65-L69 https://github.com/ethereum/beacon-APIs/blob/b901afdb33a11d30afb9f614cf522ae548508374/types/validator.yaml#L80-L84 The validator index that is always available in the response should be sufficient. Adding the pubkey has...

Assuming that https://github.com/ethereum/beacon-APIs/pull/178 merges, there is a race-condition regarding the VC communicating the `suggested_fee_recipient` (SFR) to the BN. If the VC has not been able to call the `prepare_beacon_proposer` endpoint...