[OP Stack Deployment] Deployment reverted by create2 #719
Replies: 4 comments 5 replies
-
|
Have you set IMPL_SALT in env variable? You can |
Beta Was this translation helpful? Give feedback.
-
|
@Aminechakr I think the error was here https://github.com/ethereum-optimism/optimism/blob/5662448279e4fb16e073e00baeb6e458b12a59b2/packages/contracts-bedrock/scripts/deploy/DeployImplementations.s.sol#L1029-L1034 function deployBytecode(bytes memory _bytecode, bytes32 _salt) public returns (address newContract_) {
assembly ("memory-safe") {
newContract_ := create2(0, add(_bytecode, 0x20), mload(_bytecode), _salt)
}
require(newContract_ != address(0), "DeployImplementations: create2 failed");
}Could you please rerun forge with |
Beta Was this translation helpful? Give feedback.
-
|
I have no idea what cause this. Can you try |
Beta Was this translation helpful? Give feedback.
-
|
If you have an acceptable answer, please mark it as the answer and close the question. If you're still facing issues, please add a comment. |
Beta Was this translation helpful? Give feedback.
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
While trying to deploy a rollup on L1 Sepolia using
op-stack 1.9.5, we get reverted bycreate2and we're not sure what's the reason. Salt was mentioned as a potential issue, how can we check if it's the case?Logs
Additional Information
No response
Feedback
No response
Beta Was this translation helpful? Give feedback.
All reactions