Skip to content

Commit

Permalink
updating engine api connection to ws
Browse files Browse the repository at this point in the history
  • Loading branch information
sbvegan committed Oct 5, 2023
1 parent 9021cf3 commit ea228e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/docs/developers/nodes/mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ In the root of your working directory create a new directory: `scripts`.
--http \
--http.port=8545 \
--http.addr=0.0.0.0 \
--ws \
--ws.port=8546 \
--ws.addr=0.0.0.0 \
--authrpc.addr=localhost \
--authrpc.jwtsecret=./jwt.txt \
--verbosity=3 \
Expand Down Expand Up @@ -199,7 +202,7 @@ You will also need to add `--gcmode archive`.
./bin/op-node \
--l1=$L1URL \
--l1.rpckind=$L1KIND \
--l2=http://localhost:8551 \
--l2=ws://localhost:8546 \
--l2.jwt-secret=./jwt.txt \
--network=$NET \
--rpc.addr=0.0.0.0 \
Expand Down
5 changes: 4 additions & 1 deletion src/docs/developers/nodes/testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ In the root of your working directory create a new directory: `scripts`.
--http \
--http.port=8545 \
--http.addr=0.0.0.0 \
--ws \
--ws.port=8546 \
--ws.addr=0.0.0.0 \
--authrpc.addr=localhost \
--authrpc.jwtsecret=./jwt.txt \
--verbosity=3 \
Expand Down Expand Up @@ -105,7 +108,7 @@ Other Sequencer URLs can be found here: [Networks, Public RPC Endpoints, & APIs]
./bin/op-node \
--l1=$L1URL \
--l1.rpckind=$L1KIND \
--l2=http://localhost:8551 \
--l2=ws://localhost:8546 \
--l2.jwt-secret=./jwt.txt \
--network=$NET \
--rpc.addr=0.0.0.0 \
Expand Down

0 comments on commit ea228e2

Please sign in to comment.