This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap verifier impl to the beacon light client (paritytech#665)
* Swap verifier impl to the beacon light client. * Remove starting eth1 relayer. Makes beacon syncing mandatory. Updates readme. * Remove reference to sync-beacon and commit metadata. Co-authored-by: claravanstaden <Cats 4 life!>
- Loading branch information
1 parent
0d641d1
commit 69fdd4b
Showing
8 changed files
with
37 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ The E2E tests run against local deployments of the parachain, relayer, the ether | |
|
||
* Ubuntu 20.04 or later. MacOs may work, but its not currently a supported configuration. | ||
* Development environment for Rust and Substrate. See parachain [requirements](../parachain/README.md#requirements). | ||
* Node 14 LTS. Can install using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating): | ||
* Node 16. Can install using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating): | ||
|
||
```bash | ||
nvm install 14.17.4 | ||
nvm use 14.17.4 | ||
nvm install 16.13.2 | ||
nvm use 16.13.2 | ||
``` | ||
|
||
* Development environment for Ethereum smart contracts. | ||
|
@@ -22,7 +22,12 @@ The E2E tests run against local deployments of the parachain, relayer, the ether | |
* Development environment for the relay services. See setup [instructions](../relayer/README.md#development). | ||
* `jq` - https://stedolan.github.io/jq/download/ | ||
* geth - https://geth.ethereum.org/docs/install-and-build/installing-geth | ||
* lodestar - `yarn global add @chainsafe/[email protected]` | ||
* lodestar - https://chainsafe.github.io/lodestar/install/source/ Use `v0.40.0-dev.ccdf688e6e`. Newer versions should work but hasn't been tested. | ||
|
||
```bash | ||
yarn global add @chainsafe/[email protected] | ||
``` | ||
|
||
* sponge - Is available in the `moreutils` package. | ||
|
||
```bash | ||
|
@@ -32,7 +37,7 @@ The E2E tests run against local deployments of the parachain, relayer, the ether | |
* polkadot-launch | ||
|
||
```bash | ||
yarn global add polkadot-launch@2.2.1 | ||
yarn global add polkadot-launch@2.3.0 | ||
``` | ||
|
||
* direnv - https://direnv.net/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters