Skip to content

Commit 6539a18

Browse files
chore: Update docker compose with latest version (#2336)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. NOTE: PR titles should follow semantic commits: https://www.conventionalcommits.org/en/v1.0.0/ --> ## Overview <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. Ex: Closes #<issue number> --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Updated the README to correct the file path for the JWT secret when starting the sequencer. - **Chores** - Enhanced Docker Compose configuration with additional transaction pool parameters. - Upgraded the rollkit-evm-single service image version to v0.1.4. - Activated and updated the DA_ADDRESS environment variable for the rollkit-evm-single service. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 1a15425 commit 6539a18

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

apps/evm/single/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This directory contains the implementation of a single EVM sequencer using Rollk
3030

3131
```bash
3232
./evm-single start \
33-
--evm.jwt-secret $(cat <path_to>/go-execution-evm/docker/jwttoken/jwt.hex) \
33+
--evm.jwt-secret $(cat <path_to>/execution/evm/docker/jwttoken/jwt.hex) \
3434
--evm.genesis-hash 0xe720f8ec96a43a741b1ab34819acfeb029ce4f083fe73c5a08c1f6a7b17a8568 \
3535
--rollkit.node.block_time 1s \
3636
--rollkit.node.aggregator=true \

apps/evm/single/docker-compose.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ services:
2929
--engine.persistence-threshold 0 \
3030
--engine.memory-block-buffer-target 0 \
3131
--disable-discovery
32+
--txpool.pending-max-count 200000 \
33+
--txpool.pending-max-size 200 \
34+
--txpool.queued-max-count 200000 \
35+
--txpool.queued-max-size 200 \
36+
--txpool.max-account-slots 2048 \
37+
--txpool.max-new-txns 2048 \
38+
--txpool.additional-validation-tasks 16
3239
networks:
3340
- rollkit-network
3441

@@ -41,7 +48,7 @@ services:
4148
- rollkit-network
4249

4350
rollkit-evm-single:
44-
image: ghcr.io/rollkit/rollkit-evm-single:v0.1.3
51+
image: ghcr.io/rollkit/rollkit-evm-single:v0.1.4
4552
depends_on:
4653
reth:
4754
condition: service_started
@@ -57,7 +64,7 @@ services:
5764
- EVM_GENESIS_HASH=0xe720f8ec96a43a741b1ab34819acfeb029ce4f083fe73c5a08c1f6a7b17a8568
5865
- EVM_BLOCK_TIME=1s
5966
- EVM_SIGNER_PASSPHRASE=secret
60-
# - DA_ADDRESS=http://localhost:26658
67+
- DA_ADDRESS=http://local-da:7980 # http://localhost:26658 (Use if not using local-da)
6168
# - DA_AUTH_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJBbGxvdyI6WyJwdWJsaWMiLCJyZWFkIiwid3JpdGUiXSwiTm9uY2UiOiJQcEswTmhyWi9IY05NWkVtUG9sSXNpRTRDcUpMdE9mbWtBMW0zMWFUaEswPSIsIkV4cGlyZXNBdCI6IjAwMDEtMDEtMDFUMDA6MDA6MDBaIn0.gaWh6tS6Rel1XFYclDkapNnZlaZVjrikCRNBxSDkCGk
6269
# - DA_NAMESPACE=00000000000000000000000000000000000000000008e5f679bf7116c1
6370
networks:

0 commit comments

Comments
 (0)