mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-03 06:13:31 +00:00
Fix invalid file references in markdown files
This commit is contained in:
parent
28f9f071a1
commit
81a0f435f6
@ -10,7 +10,7 @@ This repository hosts the current Ethereum proof-of-stake specifications. Discus
|
||||
|
||||
[![GitHub release](https://img.shields.io/github/v/release/ethereum/consensus-specs)](https://github.com/ethereum/consensus-specs/releases/) [![PyPI version](https://badge.fury.io/py/eth2spec.svg)](https://badge.fury.io/py/eth2spec) [![testgen](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml/badge.svg?branch=dev&event=schedule)](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml)
|
||||
|
||||
Core specifications for Ethereum proof-of-stake clients can be found in [specs](specs/). These are divided into features.
|
||||
Core specifications for Ethereum proof-of-stake clients can be found in [specs](./specs). These are divided into features.
|
||||
Features are researched and developed in parallel, and then consolidated into sequential upgrades when ready.
|
||||
|
||||
### Stable Specifications
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Custody Game -- Honest Validator
|
||||
|
||||
**Notice**: This document is a work-in-progress for researchers and implementers.
|
||||
This is an accompanying document to the [Custody Game](./), which describes the expected actions of a "validator"
|
||||
This is an accompanying document to [Custody Game -- The Beacon Chain](./beacon-chain.md), which describes the expected actions of a "validator"
|
||||
participating in the shard data Custody Game.
|
||||
|
||||
## Table of contents
|
||||
|
@ -68,7 +68,7 @@ If `state.slot % SLOTS_PER_EPOCH == 0` and `compute_epoch_at_slot(state.slot) ==
|
||||
an irregular state change is made to upgrade to eip6800.
|
||||
|
||||
The upgrade occurs after the completion of the inner loop of `process_slots` that sets `state.slot` equal to `EIP6800_FORK_EPOCH * SLOTS_PER_EPOCH`.
|
||||
Care must be taken when transitioning through the fork boundary as implementations will need a modified [state transition function](../phase0/beacon-chain.md#beacon-chain-state-transition-function) that deviates from the Phase 0 document.
|
||||
Care must be taken when transitioning through the fork boundary as implementations will need a modified [state transition function](../../phase0/beacon-chain.md#beacon-chain-state-transition-function) that deviates from the Phase 0 document.
|
||||
In particular, the outer `state_transition` function defined in the Phase 0 document will not expose the precise fork slot to execute the upgrade in the presence of skipped slots at the fork boundary. Instead, the logic must be within `process_slots`.
|
||||
|
||||
```python
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
This is the beacon chain specification to assign new deposits to existing validator records. Refers to [EIP-6914](https://github.com/ethereum/EIPs/pull/6914).
|
||||
|
||||
*Note:* This specification is built upon [Capella](../../capella/beacon_chain.md) and is under active development.
|
||||
*Note:* This specification is built upon [Capella](../../capella/beacon-chain.md) and is under active development.
|
||||
|
||||
## Preset
|
||||
|
||||
|
@ -118,7 +118,7 @@ Electra is a consensus-layer upgrade containing a number of features. Including:
|
||||
* [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251): Increase the MAX_EFFECTIVE_BALANCE
|
||||
* [EIP-7549](https://eips.ethereum.org/EIPS/eip-7549): Move committee index outside Attestation
|
||||
|
||||
*Note:* This specification is built upon [Deneb](../deneb/beacon_chain.md) and is under active development.
|
||||
*Note:* This specification is built upon [Deneb](../deneb/beacon-chain.md) and is under active development.
|
||||
|
||||
## Constants
|
||||
|
||||
|
@ -32,7 +32,7 @@ This document represents the changes to be made in the code of an "honest valida
|
||||
|
||||
## Prerequisites
|
||||
|
||||
This document is an extension of the [Deneb -- Honest Validator](../../deneb/validator.md) guide.
|
||||
This document is an extension of the [Deneb -- Honest Validator](../deneb/validator.md) guide.
|
||||
All behaviors and definitions defined in this document, and documents it extends, carry over unless explicitly noted or overridden.
|
||||
|
||||
All terminology, constants, functions, and protocol mechanics defined in the updated Beacon Chain doc of [Electra](./beacon-chain.md) are requisite for this document and used throughout.
|
||||
|
@ -6,7 +6,6 @@ We do not recommend rolling your own crypto or using an untested KZG library.
|
||||
|
||||
The KZG test suite runner has the following handlers:
|
||||
|
||||
- [`compute_cells`](./compute_cells.md)
|
||||
- [`compute_cells_and_kzg_proofs`](./compute_cells_and_kzg_proofs.md)
|
||||
- [`verify_cell_kzg_proof_batch`](./verify_cell_kzg_proof_batch.md)
|
||||
- [`recover_all_cells`](./recover_all_cells.md)
|
||||
- [`recover_cells_and_kzg_proofs`](./recover_cells_and_kzg_proofs.md)
|
||||
|
Loading…
x
Reference in New Issue
Block a user