Skip to content
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

feat(mainnet): bump client version #304

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ BOOT_NODES=enode://7a8955b27eda2ddf361b59983fce9c558b18ad60d996ac106629f7f913247
# Taiko protocol contract addresses
TAIKO_L1_ADDRESS=0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a
TAIKO_TOKEN_L1_ADDRESS=0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800
ASSIGNMENT_HOOK_L1_ADDRESS=0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6
TAIKO_L2_ADDRESS=0x1670000000000000000000000000000000010001

# P2P
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
- proposer

taiko_client_driver:
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.26.0
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.28.0
restart: unless-stopped
pull_policy: always
depends_on:
Expand All @@ -72,7 +72,7 @@ services:
- proposer

taiko_client_prover_relayer:
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.26.0
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.28.0
restart: unless-stopped
pull_policy: always
depends_on:
Expand All @@ -93,7 +93,7 @@ services:
- prover

taiko_client_proposer:
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.26.0
image: us-docker.pkg.dev/evmchain/images/taiko-client:taiko-client-v0.28.0
restart: unless-stopped
pull_policy: always
depends_on:
Expand Down
5 changes: 4 additions & 1 deletion script/start-proposer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
--taikoL1 ${TAIKO_L1_ADDRESS}
--taikoL2 ${TAIKO_L2_ADDRESS}
--taikoToken ${TAIKO_TOKEN_L1_ADDRESS}
--assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}
--jwtSecret /data/taiko-geth/geth/jwtsecret
--l1.proposerPrivKey ${L1_PROPOSER_PRIVATE_KEY}
--l2.suggestedFeeRecipient ${L2_SUGGESTED_FEE_RECIPIENT}
Expand Down Expand Up @@ -94,6 +93,10 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --tx.sendTimeout ${TX_SEND_TIMEOUT}"
fi

if [ -n "$ASSIGNMENT_HOOK_L1_ADDRESS" ]; then
ARGS="${ARGS} --assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}"
fi

exec taiko-client proposer ${ARGS}
else
echo "PROPOSER IS DISABLED"
Expand Down
5 changes: 4 additions & 1 deletion script/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ if [ "$ENABLE_PROVER" = "true" ]; then
--taikoL1 ${TAIKO_L1_ADDRESS}
--taikoL2 ${TAIKO_L2_ADDRESS}
--taikoToken ${TAIKO_TOKEN_L1_ADDRESS}
--assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}
--l1.proverPrivKey ${L1_PROVER_PRIVATE_KEY}
--prover.capacity ${PROVER_CAPACITY}
--raiko.host ${SGX_RAIKO_HOST}
Expand Down Expand Up @@ -99,6 +98,10 @@ if [ "$ENABLE_PROVER" = "true" ]; then
ARGS="${ARGS} --tx.sendTimeout ${TX_SEND_TIMEOUT}"
fi

if [ -n "$ASSIGNMENT_HOOK_L1_ADDRESS" ]; then
ARGS="${ARGS} --assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}"
fi

exec taiko-client prover ${ARGS}
else
echo "PROVER IS DISABLED"
Expand Down