-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
212 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Ethereum Altair Light Client P2P Interface | ||
|
||
**Notice**: This document is a work-in-progress for researchers and implementers. | ||
|
||
This document contains the networking specification for [minimal light client](./sync-protocol.md). | ||
This document should be viewed as a patch to the [Altair networking specification](../altair/p2p-interface.md). | ||
|
||
## Table of contents | ||
|
||
<!-- TOC --> | ||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
|
||
- [Messages](#messages) | ||
- [GetLightClientSnapshot](#getlightclientsnapshot) | ||
- [LightClientUpdate](#lightclientupdate) | ||
|
||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- /TOC --> | ||
|
||
### Messages | ||
|
||
#### GetLightClientSnapshot | ||
|
||
**Protocol ID:** `/eth2/beacon_chain/req/get_light_client_snapshot/1/` | ||
|
||
No Request Content. | ||
|
||
Response Content: | ||
|
||
``` | ||
( | ||
GetLightClientSnapshot | ||
) | ||
``` | ||
|
||
The `GetLightClientSnapshot` SSZ container defined in [light client sync protocol](./sync-protocol.md#lightclientsnapshot). | ||
|
||
#### LightClientUpdate | ||
|
||
**Protocol ID:** `/eth2/beacon_chain/req/light_client_update/1/` | ||
|
||
Request Content: | ||
|
||
``` | ||
( | ||
LightClientUpdate | ||
) | ||
``` | ||
|
||
No Response Content. | ||
|
||
The `LightClientUpdate` SSZ container defined in [light client sync protocol](./sync-protocol.md#lightclientupdate). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.