mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 22:06:21 +00:00
61ee0611bb
* adopt LC REST API with v0 suffix (without proofs) Adopts the light client data REST API used by Lodestar as defined in https://github.com/ethereum/beacon-APIs/pull/181 with a v0 suffix. Requests: - `/eth/v0/beacon/light_client/bootstrap/{block_root}` - `/eth/v0/beacon/light_client/updates?start_period={start_period}&count={count}` - `/eth/v0/beacon/light_client/finality_update` - `/eth/v0/beacon/light_client/optimistic_update` HTTP Server-Sent Events (SSE): - `light_client_finality_update_v0` - `light_client_optimistic_update_v0` More work is needed to adopt the proofs endpoint, it is not included. * initialize event queues * register event topics
29 lines
1.2 KiB
Nim
29 lines
1.2 KiB
Nim
# beacon_chain
|
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
## The `rest_api` module is a server implementation for the common REST API for
|
|
## Ethereum 2 found at https://ethereum.github.io/eth2.0-APIs/#
|
|
## along with several nimbus-specific extensions. It is used by the validator
|
|
## client as well as many community utilities.
|
|
## A corresponding client can be found in the
|
|
## `spec/eth2_apis/rest_beacon_client` module
|
|
|
|
import
|
|
"."/[
|
|
rest_utils,
|
|
rest_beacon_api, rest_config_api, rest_debug_api, rest_event_api,
|
|
rest_key_management_api, rest_light_client_api, rest_nimbus_api,
|
|
rest_node_api, rest_validator_api]
|
|
|
|
export
|
|
rest_utils,
|
|
rest_beacon_api, rest_config_api, rest_debug_api, rest_event_api,
|
|
rest_key_management_api, rest_light_client_api, rest_nimbus_api,
|
|
rest_node_api, rest_validator_api
|