2020-02-14 09:41:27 +00:00
|
|
|
# ETH 2 Scenarios
|
2019-04-05 09:38:49 +00:00
|
|
|
|
2021-08-27 05:11:35 +00:00
|
|
|
This repo holds Ethereum consensus scenarios of particular interest for [Nimbus Eth2](https://github.com/status-im/nimbus-eth2)
|
2019-10-31 13:26:54 +00:00
|
|
|
|
2020-02-14 09:41:27 +00:00
|
|
|
At the moment it contains:
|
2021-08-27 05:11:35 +00:00
|
|
|
- A test vector downloader for [Ethereum consensus specs](https://github.com/ethereum/consensus-specs)
|
2019-10-31 13:26:54 +00:00
|
|
|
|
2020-02-14 09:41:27 +00:00
|
|
|
Future plans include:
|
|
|
|
- Bugs arising from usage or fuzzing
|
|
|
|
- Benchmark scenarios in particular those that might trigger degenerate cases
|
2019-04-05 09:38:49 +00:00
|
|
|
|
2019-04-30 12:44:01 +00:00
|
|
|
## Cloning the repo
|
|
|
|
|
2021-10-12 09:41:51 +00:00
|
|
|
### Cloning and downloading the consensus spec test vectors
|
2019-08-29 20:34:43 +00:00
|
|
|
|
2021-10-12 09:41:51 +00:00
|
|
|
After cloning the repo, you will need to download the consensus spec test vectors.
|
2019-10-31 13:26:54 +00:00
|
|
|
This is done via the `download_test_vectors.sh` script.
|
2019-08-29 20:34:43 +00:00
|
|
|
|
2019-10-31 13:26:54 +00:00
|
|
|
```bash
|
2020-02-14 09:41:27 +00:00
|
|
|
git clone https://github.com/status-im/nim-eth2-scenarios
|
|
|
|
cd nim-eth2-scenarios
|
2019-06-26 13:43:19 +00:00
|
|
|
|
2019-10-31 13:26:54 +00:00
|
|
|
# Download versioned test vectors
|
2019-10-31 16:51:36 +00:00
|
|
|
./download_test_vectors.sh
|
2019-10-31 13:26:54 +00:00
|
|
|
```
|