Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 276
fix: Revert "test: Add comprehensive EVM E2E tests (#2394)"#2418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -46,7 +46,7 @@ Note: Replace `<path_to>` with the actual path to the rollkit repository. If you | ||
| The sequencer can be configured using various command-line flags. The most important ones are: | ||
| - `--rollkit.node.aggregator`: Set to true to run in sequencer mode | ||
| - `--rollkit.node.aggregator`: Set to true to run in aggregator mode | ||
| - `--rollkit.signer.passphrase`: Passphrase for the signer | ||
| - `--evm.jwt-secret`: JWT secret for EVM communication | ||
| - `--evm.genesis-hash`: Genesis hash of the EVM chain | ||
| @@ -85,7 +85,7 @@ The sequencer can be configured using various command-line flags. The most impor | ||
| ```bash | ||
| ./evm-single start \ | ||
| --home ~/.evm-single-full-node \ | ||
| --evm.jwt-secret $(cat <path_to>/execution/evm/docker/jwttoken/jwt.hex) \ | ||
| --evm.jwt-secret $(cat ../../../execution/evm/docker/jwttoken/jwt.hex) \ | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. | ||
| --evm.genesis-hash 0x2b8bbb1ea1e04f9c9809b4b278a8687806edc061a356c7dbc491930d8e922503 \ | ||
| --rollkit.rpc.address=127.0.0.1:46657 \ | ||
| --rollkit.p2p.listen_address=/ip4/127.0.0.1/tcp/7677 \ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -52,14 +52,14 @@ services: | ||
| - rollkit-network | ||
| rollkit-evm-single: | ||
| image: ghcr.io/rollkit/rollkit-evm-single:pr-2394 | ||
| image: ghcr.io/rollkit/rollkit-evm-single:v0.1.6 | ||
| depends_on: | ||
| rollkit-reth: | ||
| condition: service_started | ||
| local-da: | ||
| condition: service_started | ||
| volumes: | ||
| - evm-single-data:/root/.evm-single/ | ||
| - evm-single-data:/data | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. | ||
| entrypoint: /usr/bin/entrypoint.sh | ||
| environment: | ||
| - EVM_ENGINE_URL=http://rollkit-reth:8551 | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation refers to 'sequencer mode' but the code now uses 'aggregator mode'. Update the documentation to reflect the correct terminology.