File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ buildx: buildx-init buildx-run buildx-bridge
2424buildx-init :
2525 docker buildx build \
2626 --platform linux/amd64,linux/arm64 \
27- -t dreamcacao/builderism_init:1.7.7 \
27+ -t dreamcacao/builderism_init:1.8.0 \
2828 -t dreamcacao/builderism_init:latest \
2929 --push ./init
3030
3131buildx-run :
3232 docker buildx build \
3333 --platform linux/amd64,linux/arm64 \
34- -t dreamcacao/builderism_run:1.7.7 \
34+ -t dreamcacao/builderism_run:1.8.0 \
3535 -t dreamcacao/builderism_run:latest \
3636 --push ./run
3737
Original file line number Diff line number Diff line change @@ -78,8 +78,10 @@ config=$(cat << EOL
7878 "l1FeeVaultWithdrawalNetwork": 0,
7979 "sequencerFeeVaultWithdrawalNetwork": 0,
8080
81- "gasPriceOracleOverhead": 0 ,
81+ "gasPriceOracleOverhead": 2100 ,
8282 "gasPriceOracleScalar": 1000000,
83+ "gasPriceOracleBaseFeeScalar": 1368,
84+ "gasPriceOracleBlobBaseFeeScalar": 810949,
8385
8486$govConfig
8587
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ echo "[4/5] : deploy contract"
55
66cd ~ /optimism/packages/contracts-bedrock && \
77DEPLOY_CONFIG_PATH=" ./deployments/$DEPLOYMENT_CONTEXT /.deploy" \
8- forge script scripts/Deploy.s.sol:Deploy \
8+ forge script scripts/deploy/ Deploy.s.sol:Deploy \
99 --private-key $ADMIN_PRIVATE_KEY \
1010 --broadcast \
1111 --rpc-url $L1_RPC_URL \
1212 --priority-gas-price $PRIORITY_GAS_PRICE
1313
14- echo " [ deploy contract done! run upgrader ]"
14+ echo " [deploy contract done!]"
1515
1616cd ~ /optimism/packages/contracts-bedrock && \
1717CONTRACT_ADDRESSES_PATH=" ./deployments/$L1_CHAIN_ID -deploy.json" \
@@ -20,4 +20,3 @@ forge script scripts/L2Genesis.s.sol:L2Genesis \
2020 --sig ' runWithAllUpgrades()' \
2121 --chain-id $L2_CHAIN_ID \
2222 --rpc-url $L1_RPC_URL \
23- --private-key $ADMIN_PRIVATE_KEY
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ go run cmd/main.go genesis l2 \
1010 --outfile.l2 /config/genesis.json \
1111 --outfile.rollup /config/rollup.json \
1212 --l1-rpc $L1_RPC_URL \
13- --l2-allocs ../packages/contracts-bedrock/state-dump-$DEPLOYMENT_CONTEXT -ecotone .json
13+ --l2-allocs ../packages/contracts-bedrock/state-dump-$DEPLOYMENT_CONTEXT -fjord .json
1414
1515cp ../packages/contracts-bedrock/deployments/$L1_CHAIN_ID -deploy.json /config/deploy.json
1616
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ ENV PATH="~/.foundry/bin:${PATH}"
2222
2323# clone optimism repository
2424ENV OP_REPO=https://github.com/ethereum-optimism/optimism.git
25- ENV OP_VERSION=${OP_VERSION:-v1.7.7 }
25+ ENV OP_VERSION=${OP_VERSION:-v1.8.0 }
2626RUN mkdir -p ~/optimism && cd ~/optimism && \
2727 git clone $OP_REPO --depth 1 --branch $OP_VERSION --single-branch . && \
2828 git switch -c $OP_VERSION && \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM golang:1.22 as op
33WORKDIR /app
44
55ENV OP_REPO=https://github.com/ethereum-optimism/optimism.git
6- ENV OP_VERSION=${OP_VERSION:-v1.7.7 }
6+ ENV OP_VERSION=${OP_VERSION:-v1.8.0 }
77
88RUN git clone $OP_REPO --depth 1 --branch op-node/$OP_VERSION --single-branch . && \
99 git switch -c branch-$OP_VERSION && \
You can’t perform that action at this time.
0 commit comments