Skip to content

Commit

Permalink
chore: optimism updates (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladinlight authored May 2, 2024
1 parent a830e29 commit bb17a6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ aliases:
service-memory-limit-1: 24Gi
service-storage-size-1: 1250Gi
service-name-2: op-node
service-image-2: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.7.3
service-image-2: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.7.4
service-cpu-limit-2: "2"
service-cpu-request-2: "1"
service-memory-limit-2: 2Gi
Expand Down
2 changes: 1 addition & 1 deletion node/coinstacks/optimism/daemon/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ fi

start() {
geth \
--networkid 10 \
--syncmode full \
--datadir $DATA_DIR \
--authrpc.jwtsecret /jwt.hex \
Expand All @@ -31,6 +30,7 @@ start() {
--ws.origins "*" \
--rollup.disabletxpoolgossip=true \
--rollup.sequencerhttp https://mainnet-sequencer.optimism.io \
--op-network op-mainnet \
--txlookuplimit 0 \
--cache 4096 \
--maxpeers 0 \
Expand Down
2 changes: 1 addition & 1 deletion node/coinstacks/optimism/op-node/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apk add bash curl jq

start() {
op-node \
--network $NETWORK \
--network op-mainnet \
--rpc.addr 0.0.0.0 \
--rpc.port 9545 \
--l1 $L1_RPC_ENDPOINT \
Expand Down
3 changes: 1 addition & 2 deletions node/coinstacks/optimism/pulumi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ export = async (): Promise<Outputs> => {
return {
...service,
env: {
NETWORK: config.network,
L1_RPC_ENDPOINT: `http://ethereum-svc.unchained.svc.cluster.local:8545`,
L1_BEACON_ENDPOINT: `http://ethereum-svc.unchained.svc.cluster.local:3500`,
},
ports: { 'op-node-rpc': { port: 9545 } },
ports: { 'op-node-rpc': { port: 9545, ingressRoute: false } },
configMapData: { 'evm.sh': readFileSync('../../../scripts/evm.sh').toString() },
volumeMounts: [
{ name: 'config-map', mountPath: '/jwt.hex', subPath: 'jwt.hex' },
Expand Down

0 comments on commit bb17a6c

Please sign in to comment.