nimbus-site/source/docs/eth1.md

30 lines
797 B
Markdown
Raw Normal View History

2019-07-12 08:23:05 +00:00
---
id: eth1
2021-09-21 14:57:17 +00:00
title: Execution layer (eth1)
2019-07-12 08:23:05 +00:00
---
2021-09-21 14:57:17 +00:00
While our core focus so far has been Ethereum 2 (consensus layer), we are now devoting significant resources to our Ethereum 1 client (execution layer).
## Quickstart
2019-07-12 08:23:05 +00:00
2021-09-21 12:11:33 +00:00
To run Nimbus in [Ethereum 1 mode](https://github.com/status-im/nimbus-eth1), first [install the prerequisites](https://github.com/status-im/nimbus-eth1#prerequisites).
2019-07-12 08:23:05 +00:00
Then run the following commands:
2019-07-12 08:23:05 +00:00
```bash
git clone https://github.com/status-im/nimbus-eth1
cd nimbus-eth1
make update
2019-07-12 08:23:05 +00:00
# >>> WINDOWS ONLY <<<
make fetch-dlls # WINDOWS ONLY
# >>> WINDOWS ONLY <<<
make nimbus
./build/nimbus
```
2021-09-21 14:57:17 +00:00
Nimbus will now run and attempt to synchronize with the Ethereum blockchain.
2021-09-21 12:11:33 +00:00
For a more complete overview see the [repository README](https://github.com/status-im/nimbus-eth1).