-
Notifications
You must be signed in to change notification settings - Fork 827
feat(driver): upgrade Hoodi node to alethia-reth with Unzen fork #449
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
base: main
Are you sure you want to change the base?
Changes from all commits
0d54471
e94ff5d
f6b3f78
af6f4d2
4dd1811
8309273
588f316
3afc1cb
6226307
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,50 +6,54 @@ x-logging: &logging | |||||
|
|
||||||
| services: | ||||||
| l2_execution_engine: | ||||||
| image: us-docker.pkg.dev/evmchain/images/taiko-geth:v2.4.0 | ||||||
| image: us-docker.pkg.dev/evmchain/images/alethia-reth:sha-9afd71f | ||||||
|
Member
Author
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.
Suggested change
@davidtaikocha Is this correct?
Collaborator
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. lgtm but plz verify locally as well.
Member
Author
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. When we plan to pre-release a version for the softwares? |
||||||
| restart: unless-stopped | ||||||
| pull_policy: always | ||||||
| stop_grace_period: 3m | ||||||
| environment: | ||||||
| - RUST_LOG_STYLE=never | ||||||
| volumes: | ||||||
| - l2_execution_engine_data:/data/taiko-geth | ||||||
| - l2_execution_engine_data:/data/alethia-reth | ||||||
| ports: | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_METRICS}:6060" | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_HTTP}:8545" | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_WS}:8546" | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_P2P}:${PORT_L2_EXECUTION_ENGINE_P2P}" | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_P2P}:${PORT_L2_EXECUTION_ENGINE_P2P}/udp" | ||||||
| command: | | ||||||
| --taiko | ||||||
| --networkid "${CHAIN_ID}" | ||||||
| --gcmode archive | ||||||
| --syncmode full | ||||||
| --datadir /data/taiko-geth | ||||||
| --metrics | ||||||
| --metrics.expensive | ||||||
| --metrics.addr "0.0.0.0" | ||||||
| --bootnodes ${BOOT_NODES} | ||||||
| --authrpc.addr "0.0.0.0" | ||||||
| --authrpc.vhosts "*" | ||||||
| --http | ||||||
| --http.api debug,eth,net,web3,txpool,taiko | ||||||
| --http.addr "0.0.0.0" | ||||||
| --http.vhosts "*" | ||||||
| --ws | ||||||
| --ws.api debug,eth,net,web3,txpool,taiko | ||||||
| --ws.addr "0.0.0.0" | ||||||
| --ws.origins "*" | ||||||
| --gpo.ignoreprice "25000000" | ||||||
| --port ${PORT_L2_EXECUTION_ENGINE_P2P} | ||||||
| --discovery.port ${PORT_L2_EXECUTION_ENGINE_P2P} | ||||||
| --maxpeers ${MAXPEERS:-50} | ||||||
| --maxpendpeers ${MAXPENDPEERS:-0} | ||||||
| ${GETH_ADDITIONAL_ARGS:-} | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_DISCOVERY}:${PORT_L2_EXECUTION_ENGINE_DISCOVERY}" | ||||||
| - "${PORT_L2_EXECUTION_ENGINE_DISCOVERY}:${PORT_L2_EXECUTION_ENGINE_DISCOVERY}/udp" | ||||||
| entrypoint: | ||||||
| - /bin/sh | ||||||
| - -c | ||||||
| - | | ||||||
| set -eu | ||||||
| if [ ! -f /data/alethia-reth/jwtsecret ]; then | ||||||
| mkdir -p /data/alethia-reth | ||||||
| tr -dc 'a-f0-9' < /dev/urandom | head -c 64 > /data/alethia-reth/jwtsecret | ||||||
| fi | ||||||
| exec ./alethia-reth node \ | ||||||
| --http \ | ||||||
| --http.addr 0.0.0.0 \ | ||||||
| --http.api eth,net,debug,trace,rpc \ | ||||||
| --ws \ | ||||||
| --ws.addr 0.0.0.0 \ | ||||||
| --chain taiko-hoodi \ | ||||||
| --datadir /data/alethia-reth \ | ||||||
| --log.file.directory /data/alethia-reth/logs \ | ||||||
| --metrics 0.0.0.0:6060 \ | ||||||
| --color never \ | ||||||
| --enable-discv5-discovery \ | ||||||
| --engine.persistence-threshold 128 \ | ||||||
| --engine.memory-block-buffer-target 128 \ | ||||||
| --rpc.eth-proof-window 1209600 \ | ||||||
| --authrpc.addr 0.0.0.0 \ | ||||||
| --authrpc.jwtsecret /data/alethia-reth/jwtsecret \ | ||||||
| --ipcpath /data/alethia-reth/reth.ipc \ | ||||||
| --bootnodes "${BOOT_NODES}" | ||||||
| <<: *logging | ||||||
| profiles: | ||||||
| - l2_execution_engine | ||||||
|
|
||||||
| taiko_client_driver: | ||||||
| image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-alethia-client-v2.3.0 | ||||||
| image: us-docker.pkg.dev/evmchain/images/taiko-client:sha-6b2d202 | ||||||
| restart: unless-stopped | ||||||
| pull_policy: always | ||||||
| ports: | ||||||
|
|
@@ -58,7 +62,7 @@ services: | |||||
| env_file: | ||||||
| - .env | ||||||
| volumes: | ||||||
| - l2_execution_engine_data:/data/taiko-geth | ||||||
| - l2_execution_engine_data:/data/alethia-reth | ||||||
| - private_key_data:/data/private-key | ||||||
| - ./script:/script | ||||||
| entrypoint: | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.