nim-eth2-scenarios/README.md

26 lines
793 B
Markdown
Raw Permalink Normal View History

# ETH 2 Scenarios
2019-04-05 09:38:49 +00:00
This repo holds Ethereum consensus scenarios of particular interest for [Nimbus Eth2](https://github.com/status-im/nimbus-eth2)
At the moment it contains:
- A test vector downloader for [Ethereum consensus specs](https://github.com/ethereum/consensus-specs)
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
2021-10-12 09:41:51 +00:00
After cloning the repo, you will need to download the consensus spec test vectors.
This is done via the `download_test_vectors.sh` script.
```bash
git clone https://github.com/status-im/nim-eth2-scenarios
cd nim-eth2-scenarios
2019-06-26 13:43:19 +00:00
# Download versioned test vectors
2019-10-31 16:51:36 +00:00
./download_test_vectors.sh
```