Collection of RESTful APIs provided by Ethereum Beacon nodes https://ethereum.github.io/beacon-APIs/
Go to file
Marin Petrunić d3e4a379f4
Merge pull request #175 from ethereum/mpetrunic/fix-release-title
Fix release title
2021-11-04 15:44:36 +01:00
.github/workflows fix release title 2021-11-03 14:20:29 +01:00
apis Merge pull request #170 from ethereum/mpetrunic/ssz-version 2021-10-15 10:39:43 +02:00
assets add ethereum logo in header 2020-06-29 11:19:03 +02:00
dist update swagger ui 2020-08-16 11:19:00 +02:00
params add single block header endpoint 2020-06-16 21:22:03 +02:00
types clarify until_epoch is not included 2021-09-02 10:50:54 +02:00
.gitignore add deploy action 2020-07-11 23:53:13 +02:00
.spectral.yml Delete legacy spectral rule 2021-10-08 09:54:43 +11:00
LICENSE add CC0 license to repo 2019-08-15 15:27:33 -06:00
README.md Merge branch 'master' into mpetrunic/fix-post-renaming 2021-09-21 09:22:42 +03:00
beacon-node-oapi.yaml update website with new version 2021-10-15 10:49:26 +02:00
index.html update website with new version 2021-10-15 10:49:26 +02:00
validator-flow.md update spec version to 1.0.1 2021-03-31 10:16:54 +02:00

README.md

Ethereum Beacon APIs

CI

Collection of RESTful APIs provided by Ethereum Beacon nodes

API browser: https://ethereum.github.io/beacon-APIs/

Outline

This document outlines an application programming interface (API) which is exposed by a beacon node implementation which aims to facilitate Phase 0 of the Etheruem consensus layer.

The API is a REST interface, accessed via HTTP. The API should not, unless protected by additional security layers, be exposed to the public Internet as the API includes multiple endpoints which could open your node to denial-of-service (DoS) attacks through endpoints triggering heavy processing. Currently, the only supported return data type is JSON.

The beacon node (BN) maintains the state of the beacon chain by communicating with other beacon nodes in the Ethereum network. Conceptually, it does not maintain keypairs that participate with the beacon chain.

The validator client (VC) is a conceptually separate entity which utilizes private keys to perform validator related tasks, called "duties", on the beacon chain. These duties include the production of beacon blocks and signing of attestations.

The goal of this specification is to promote interoperability between various beacon node implementations.

Render

To render spec in browser you will need any http server to load index.html file in root of the repo.

Python
python -m SimpleHTTPServer 8080

And api spec will render on http://localhost:8080.

NodeJs
npm install simplehttpserver -g

# OR

yarn global add simplehttpserver

simplehttpserver

And api spec will render on http://localhost:8000.

Contributing

Api spec is checked for lint errors before merge.

To run lint locally, install linter with

npm install -g @stoplight/spectral

# OR

yarn global add @stoplight/spectral

and run lint with

spectral lint beacon-node-oapi.yaml 

Implementations

https://www.npmjs.com/package/@chainsafe/eth2.0-api-wrapper

Releasing

  1. Create and push tag

    • Make sure info.version in beacon-node-oapi.yaml file is updated before tagging.
    • CD will create github release and upload bundled spec file
  2. Add release entrypoint in index.html

In SwaggerUIBundle configuration (inside index.html file), add another entry in "urls" field (SwaggerUI will load first item as default). Entry should be in following format(replace <tag> with real tag name from step 1.):

         {url: "https://github.com/ethereum/beacon-APIs/releases/download/<tag>/beacon-node-oapi.yaml", name: "<tag>"},