feat: celestia to vanilla arbitrum nitro migration#20
Open
albertlai431 wants to merge 5 commits into
Open
Conversation
albertlai431
commented
Jun 15, 2026
Member
- updates seq inbox & inbox to vanilla 2.1.3
- updates wasm module root to consensus-v32 root
- new challenge manager and osp
InoMurko
reviewed
Jun 16, 2026
Comment on lines
+19
to
+26
| bytes32 public constant WASM_MODULE_ROOT = | ||
| 0x184884e1eb9fefdc158f6c8ac912bb183bf3cf83f0090317e0bc4ac5860baa39; | ||
|
|
||
| // celestia wasm module root the chain is migrated FROM; kept as condRoot so in-flight challenges | ||
| // anchored here are routed to the live (celestia) OSP after the swap | ||
| // https://github.com/celestiaorg/nitro/releases/tag/v3.2.1-rc.1 | ||
| bytes32 public constant COND_WASM_MODULE_ROOT = | ||
| 0xe81f986823a85105c5fd91bb53b4493d38c0c26652d23f76a7405ac889908287; |
InoMurko
reviewed
Jun 16, 2026
Comment on lines
+48
to
+67
| address newOsp = existingOsp; | ||
| if (newOsp == address(0)) { | ||
| address osp0 = deployBytecodeFromJSON( | ||
| '/node_modules/@arbitrum/nitro-contracts-2.1.0/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json' | ||
| ); | ||
| address ospMemory = deployBytecodeFromJSON( | ||
| '/node_modules/@arbitrum/nitro-contracts-2.1.0/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json' | ||
| ); | ||
| address ospMath = deployBytecodeFromJSON( | ||
| '/node_modules/@arbitrum/nitro-contracts-2.1.0/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json' | ||
| ); | ||
| address ospHostIo = deployBytecodeFromJSON( | ||
| '/node_modules/@arbitrum/nitro-contracts-2.1.0/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json' | ||
| ); | ||
|
|
||
| newOsp = deployBytecodeWithConstructorFromJSON( | ||
| '/node_modules/@arbitrum/nitro-contracts-2.1.0/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json', | ||
| abi.encode(osp0, ospMemory, ospMath, ospHostIo) | ||
| ); | ||
| } |
Collaborator
There was a problem hiding this comment.
will these get verified? if not, make sure to keep the artifacts and after deployment - verify them. l2beat wants to see them sometimes.
Member
Author
There was a problem hiding this comment.
looks like on base sepolia they get auto-verified due to other contracts with identical bytecode but will make sure for mainnet
Collaborator
|
looks good, pls make sure Celestia team takes a look |
tuxcanfly
approved these changes
Jun 19, 2026
…Contracts2Point1Point3UpgradeAction.sol Co-authored-by: Javed Khan <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.