[OP Stack Deployment] op proposer error #805
Replies: 1 comment
-
|
Discuss in thread : #798 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Did you check the documentation?
Did you check for duplicate questions?
Issue Description
I am building the op testnet locally by referring to https://docs.optimism.io/operators/chain-operators/tutorials/create-l2-rollup and https://docs.optimism.io/operators/chain-operators/tools/op-deployer#installation. https://github.com/ethereum-optimism/optimism.git used the op-deployer/v0.2.0 tag version.
When proceeding with the guide above https://docs.optimism.io/operators/chain-operators/tutorials/create-l2-rollup
when running op-proposer as follows, the following log appears:
./bin/op-proposer
--poll-interval=12s
--rpc.port=8560
--rollup-rpc=http://localhost:9545/
--l2oo-address=$(cat ../packages/contracts-bedrock/deployments/getting-started/.deploy | jq -r .L2OutputOracleProxy)
--private-key=$GS_PROPOSER_PRIVATE_KEY
--l1-eth-rpc=$L1_RPC_URL
cat: ../packages/contracts-bedrock/deployments/getting-started/.deploy: No such file or directory
t=2025-05-07T13:36:53+0000 lvl=crit msg="Application failed" message="failed to setup: invalid CLI flags: neither the DisputeGameFactory nor L2OutputOracle address was provided"**
To solve above error, i used below address. (disputeGameFactoryProxyAddress and disputeGameFactoryImplAddress instead of using L2OutputOracleProxy)
When running op-deployer inspect l1 --workdir .deployer 42069
"disputeGameFactoryProxyAddress": "0x4f50ff3a4ab2c9687bb06326803f7ee3102b6dce", and "disputeGameFactoryImplAddress": "0x4bba758f006ef09402ef31724203f316ab74e4a0" were entered into the address of --l2oo-address="XXX" one by one.
Below are the logs when each is run.
The log below appears. How can I solve this? Please help me. Thank you.
./bin/op-proposer --poll-interval=12s --rpc.port=8560 --rollup-rpc=http://localhost:9545/ --l2oo-address=0x4f50ff3a4ab2c9687bb06326803f7ee3102b6dce --private-key=$GS_PROPOSER_PRIVATE_KEY --l1-eth-rpc=$L1_RPC_URL
INFO [05-07|13:51:05.869] Initializing L2Output Submitter
INFO [05-07|13:51:06.070] Metrics disabled
INFO [05-07|13:51:06.116] Connected to L2OutputOracle address=0x4F50fF3a4AB2C9687Bb06326803F7Ee3102B6DCE version=1.0.1
INFO [05-07|13:51:06.116] Starting JSON-RPC server
INFO [05-07|13:51:06.127] Started RPC server endpoint=http://[::]:8560
INFO [05-07|13:51:06.127] Starting Proposer
INFO [05-07|13:51:06.127] Starting Proposer
INFO [05-07|13:51:06.127] Proposer started
WARN [05-07|13:51:18.165] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:30.175] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:42.164] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:54.173] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:52:06.173] Error getting proposal err="querying next block number: execution reverted"
^CINFO [05-07|13:52:12.364] Stopping Proposer
INFO [05-07|13:52:12.364] Stopping Proposer
INFO [05-07|13:52:12.364] loop returning
INFO [05-07|13:52:12.364] Proposer stopped
INFO [05-07|13:52:12.364] Stopped RPC server
INFO [05-07|13:52:12.364] L2Output Submitter stopped
./bin/op-proposer --poll-interval=12s --rpc.port=8560 --rollup-rpc=http://localhost:9545/ --l2oo-address=0x4f50ff3a4ab2c9687bb06326803f7ee3102b6dce --private-key=$GS_PROPOSER_PRIVATE_KEY --l1-eth-rpc=$L1_RPC_URL
INFO [05-07|13:51:05.869] Initializing L2Output Submitter
INFO [05-07|13:51:06.070] Metrics disabled
INFO [05-07|13:51:06.116] Connected to L2OutputOracle address=0x4F50fF3a4AB2C9687Bb06326803F7Ee3102B6DCE version=1.0.1
INFO [05-07|13:51:06.116] Starting JSON-RPC server
INFO [05-07|13:51:06.127] Started RPC server endpoint=http://[::]:8560
INFO [05-07|13:51:06.127] Starting Proposer
INFO [05-07|13:51:06.127] Starting Proposer
INFO [05-07|13:51:06.127] Proposer started
WARN [05-07|13:51:18.165] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:30.175] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:42.164] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:51:54.173] Error getting proposal err="querying next block number: execution reverted"
WARN [05-07|13:52:06.173] Error getting proposal err="querying next block number: execution reverted"
^CINFO [05-07|13:52:12.364] Stopping Proposer
INFO [05-07|13:52:12.364] Stopping Proposer
INFO [05-07|13:52:12.364] loop returning
INFO [05-07|13:52:12.364] Proposer stopped
INFO [05-07|13:52:12.364] Stopped RPC server
INFO [05-07|13:52:12.364] L2Output Submitter stopped
How can i solve this, Thank you.
Logs
No response
Additional Information
No response
Feedback
No response
Beta Was this translation helpful? Give feedback.
All reactions