[OP Stack Deployment] Local chain setup using op-node and op-reth #175
-
Did you check the documentation?
Did you check for duplicate questions?
Issue DescriptionAIM: Run a new L2 op node using reth on L1 sepolia. I have followed this create-l2-rollup documentation to run a local optimism setup. I have deployed L1 contracts on Sepolia using alchemy rpc. Have built the binaries and have Now the documents suggests to use the op-reth node \
--chain base \
--rollup.sequencer-http https://sequencer.base.org \
--http \
--ws \
--authrpc.port 9551 \
--authrpc.jwtsecret /path/to/jwt.hex
op-node \
--l1=<your-L1-rpc> \
--l2=http://localhost:9551 \
--rollup.config=/path/to/rollup.json \
--l2.jwt-secret=/path/to/jwt.hex \
--rpc.addr=0.0.0.0 \
--rpc.port=7000 \
--l1.trustrpc I could'nt find any LogsNo response Additional InformationNo response FeedbackNo response |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
The |
Beta Was this translation helpful? Give feedback.
-
Hey @AmanRaj1608, We hope your recent question was resolved to your satisfaction. Your feedback is invaluable and helps us improve our support services. Could you spare a moment to fill out a short feedback survey. Thank you for helping us improve our developer community. |
Beta Was this translation helpful? Give feedback.
-
Hey @AmanRaj1608, We hope your recent question was resolved to your satisfaction. Your feedback is invaluable and helps us improve our support services. Could you spare a moment to fill out a short feedback survey. Thank you for helping us improve our developer community. |
Beta Was this translation helpful? Give feedback.
The
official Reth document
provides information onrunning a node
, which is distinct from the process ofcreating an L2 rollup
. In the context ofcreating an L2 rollup
, it is necessary to run the node insequencer mode
, whereas whenrunning a node
, only running areplica node
is required. Although I haven't personally experimented withReth
, it seems that there is not a significant difference in their flag settings. Overall, I believe it is essential to adhere to the guidelines outlined in thecreate-l2-rollup
document, making limited adjustments based on the differences betweengeth
andreth
.