nim-eth2-scenarios/README.md

25 lines
833 B
Markdown
Raw Normal View History

2019-04-05 09:11:18 +00:00
# nim-eth2-official-tests
2019-04-05 09:38:49 +00:00
This repo used to reformat the official Ethereum 2 tests to a format suitable for [Nimbus](https://github.com/status-im/nimbus)/[nim-beacon-chain](https://github.com/status-im/nim-beacon-chain).
Currently it is used for:
- Having multiple test vectors versions side-by-side for progressive update between spec versions
2019-10-31 16:51:36 +00:00
- SSZ test vectors that are still using a JSON format from 0.8.1.
- SSZ test vectors in JSON that require LFS
2019-04-05 09:38:49 +00:00
2019-04-30 12:44:01 +00:00
## Cloning the repo
### Cloning and downloading the official test vectors
After cloning the repo, you will need to download the official test vectors.
This is done via the `download_test_vectors.sh` script.
```bash
git clone https://github.com/status-im/nim-eth2-official-tests
cd nim-eth2-official-tests
2019-06-26 13:43:19 +00:00
# Download versioned test vectors
2019-10-31 16:51:36 +00:00
./download_test_vectors.sh
```