Etan Kissling
Etan Kissling
@Araq The fix is incomplete and leads to compiler crashes with `--gc:orc` on Nim commit `16f6dc05fdb2e1ca3086936c15c2ad3de542d991`. Same example as given in this issue. - When using `--gc:orc`, `nkHiddenTryStmt` and `nkStmtListExpr`...
Feedback from discussions at Devconnect AMS: See libp2p PR discussion: https://github.com/ethereum/consensus-specs/pull/2802#issuecomment-1104825567 - Align data types with libp2p once there is agreement there. The light client should receive the same objects...
Would also change from `/eth2/v1/light_client` to `/eth2/v1/beacon/light_client/...`as this data is about the beacon chain. It is also how the libp2p reqs are currently prefixed in proposal (at the very least,...
Adopted with a v0 suffix in Nimbus (without proofs endpoint) 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` https://github.com/status-im/nimbus-eth2/pull/3775
The format is not that simple, as each element could be from different forks. The list does not solely contain `altair.LightClientUpdate` but may contain different updates in the future. On...
https://github.com/ethereum/consensus-specs/pull/2802 will add many tests in that area.
Assuming this is for `nimbus_beacon_node`, it is printed but only if the LC is more than 8 epochs ahead of DAG and within 2 epochs of wall slot. This was...
Better to split this one into multiple PRs.
Balances can already change on each slot due to slashing.
SSZ is now supported as of https://github.com/ethereum/beacon-APIs/pull/247 and implemented in Nimbus in https://github.com/status-im/nimbus-eth2/pull/4213 Note that the event stream uses SSE which is a text encoding, so only supports JSON. This...