diff --git a/CHANGES.md b/CHANGES.md index 309504c5..a9f7a473 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,12 +9,6 @@ There are likely to be descriptions etc outside of the list below, but new query | Endpoint | [Lighthouse](https://github.com/sigp/lighthouse) | [Lodestar](https://github.com/ChainSafe/lodestar) | [Nimbus](https://github.com/status-im/nimbus-eth2) | [Prysm](https://github.com/prysmaticlabs/prysm) | [Teku](https://github.com/ConsenSys/teku) | |---------------------------------------------------------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------|----------------------------------------------------|-------------------------------------------------|-------------------------------------------| -| [#350](https://github.com/ethereum/beacon-APIs/pull/350) `blob_sidecar EVENT` added | | | | | | -| [#358](https://github.com/ethereum/beacon-APIs/pull/358) `/eth/v3/beacon/blocks` added `consensus_block_value` to response | | | | | | -| [#366](https://github.com/ethereum/beacon-APIs/pull/366) `proposer_slashing, attester_slashing EVENT` added | | | | | | -| [#367](https://github.com/ethereum/beacon-APIs/pull/367) `POST /eth/v1/beacon/states/{state_id}/validators` | | | | | | -| [#367](https://github.com/ethereum/beacon-APIs/pull/367) `POST /eth/v1/beacon/states/{state_id}/validator_balances` | | | | | | -| [#405](https://github.com/ethereum/beacon-APIs/pull/405) `block_gossip EVENT` added | | | | | | The Following are no longer in the Standard API, removed since the latest version. @@ -23,6 +17,23 @@ The Following are no longer in the Standard API, removed since the latest versio |----------------------------------------------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------|----------------------------------------------------|-------------------------------------------------|-------------------------------------------| +## Version 2.5.0 + +These endpoints have been added or updated since the last release. + +There are likely to be descriptions etc outside of the list below, but new query parameters, changes to headers, new endpoints should be listed. + +| Endpoint | [Lighthouse](https://github.com/sigp/lighthouse) | [Lodestar](https://github.com/ChainSafe/lodestar) | [Nimbus](https://github.com/status-im/nimbus-eth2) | [Prysm](https://github.com/prysmaticlabs/prysm) | [Teku](https://github.com/ConsenSys/teku) | +|---------------------------------------------------------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------|----------------------------------------------------|-------------------------------------------------|-------------------------------------------| +| [#350](https://github.com/ethereum/beacon-APIs/pull/350) `blob_sidecar EVENT` added | | | | | | +| [#358](https://github.com/ethereum/beacon-APIs/pull/358) `/eth/v3/validator/blocks` added `consensus_block_value` to response | | | | | | +| [#367](https://github.com/ethereum/beacon-APIs/pull/367) `POST /eth/v1/beacon/states/{state_id}/validators` added | | | | | | +| [#367](https://github.com/ethereum/beacon-APIs/pull/367) `POST /eth/v1/beacon/states/{state_id}/validator_balances` added | | | | | | +| [#376](https://github.com/ethereum/beacon-APIs/pull/376) `proposer_slashing, attester_slashing EVENT` added | | | | | | +| [#386](https://github.com/ethereum/beacon-APIs/pull/386) `/eth/v3/validator/blocks` added `builder_boost_factor` query parameter | | | | | | +| [#405](https://github.com/ethereum/beacon-APIs/pull/405) `block_gossip EVENT` added | | | | | | + + ## Version 2.4.2 These endpoints have been added or updated since the last release. @@ -31,8 +42,8 @@ There are likely to be descriptions etc outside of the list below, but new query | Endpoint | [Lighthouse](https://github.com/sigp/lighthouse) | [Lodestar](https://github.com/ChainSafe/lodestar) | [Nimbus](https://github.com/status-im/nimbus-eth2) | [Prysm](https://github.com/prysmaticlabs/prysm) | [Teku](https://github.com/ConsenSys/teku) | |---------------------------------------------------------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------|----------------------------------------------------|-------------------------------------------------|-------------------------------------------| -| [#339](https://github.com/ethereum/beacon-APIs/pull/339) `POST /eth/v3/beacon/blocks` added | | | | | | -| [#339](https://github.com/ethereum/beacon-APIs/pull/339) `POST /eth/v2/beacon/*blocks` deprecated | | | | | | +| [#339](https://github.com/ethereum/beacon-APIs/pull/339) `POST /eth/v3/validator/blocks` added | | | | | | +| [#339](https://github.com/ethereum/beacon-APIs/pull/339) `POST /eth/v2/validator/*blocks` deprecated | | | | | | ## Version 2.4.1 diff --git a/beacon-node-oapi.yaml b/beacon-node-oapi.yaml index f51beff9..4e6b8bdc 100644 --- a/beacon-node-oapi.yaml +++ b/beacon-node-oapi.yaml @@ -21,7 +21,7 @@ info: Note that it is possible for a field to be added to an endpoint's data or metadata without an increase in the version number. - version: "v2.5.0 - Ethereum Proof-of-Stake Consensus Specification v1.4.0" + version: "Dev - Ethereum Proof-of-Stake Consensus Specification v1.4.0" contact: name: Ethereum Github url: https://github.com/ethereum/beacon-apis/issues diff --git a/index.html b/index.html index e66a163c..6e240767 100644 --- a/index.html +++ b/index.html @@ -48,6 +48,7 @@ // Begin Swagger UI call region const ui = SwaggerUIBundle({ urls: [ + {url: "./releases/v2.5.0/beacon-node-oapi.json", name: "v2.5.0"}, {url: "./releases/v2.4.2/beacon-node-oapi.json", name: "v2.4.2"}, {url: "./releases/v2.4.1/beacon-node-oapi.json", name: "v2.4.1"}, {url: "./releases/v2.4.0/beacon-node-oapi.json", name: "v2.4.0"},