Add mocked message passing contracts#229
Merged
karlfloersch merged 3 commits intomasterfrom Aug 27, 2020
Merged
Conversation
K-Ho
approved these changes
Aug 25, 2020
Contributor
K-Ho
left a comment
There was a problem hiding this comment.
Hype!! LGTM. Just to clarify, the reason why we need to be able to sendMessage from one messenger to another is that we want all L1 messages to be relayed by the same L2 messenger and all L2 messages to be relayed by the same L1 messenger?
| ) | ||
| internal | ||
| { | ||
| // Implement me! |
Comment on lines
+32
to
+33
| "build:copy": "yarn run build:copy:contracts", | ||
| "build:copy:contracts": "copyfiles -u 2 \"contracts/optimistic-ethereum/**/*.sol\" \"build/contracts\"", |
Contributor
Author
There was a problem hiding this comment.
It's useful for being able to import the contracts into other packages
snario
pushed a commit
that referenced
this pull request
Apr 14, 2021
* script: serve state dump * feat: python2 * cleanup * yarn: add serve script
theochap
pushed a commit
that referenced
this pull request
Dec 10, 2025
Zena-park
added a commit
to tokamak-network/optimism
that referenced
this pull request
Dec 30, 2025
Zena-park
added a commit
to tokamak-network/optimism
that referenced
this pull request
Dec 30, 2025
theochap
pushed a commit
that referenced
this pull request
Jan 15, 2026
### Description Adds `op-alloy-rpc-types-engine` docs to the book.
emhane
pushed a commit
that referenced
this pull request
Feb 3, 2026
This PR separates storage and account cursors which makes sense because these two cursors may have very different seek/next implementations. In the case of in-memory, a single cursor impl can still handle both, but for MDBX, it makes sense to implement separate cursors. Closes #236 --------- Co-authored-by: Arun Dhyani <dhyaniarun7@gmail.com>
emhane
pushed a commit
that referenced
this pull request
Feb 3, 2026
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.
Description
Adds a few new contracts and corresponding tests, namely:
CrossDomainMessageReceiver.interface.solCrossDomainMessenger.interface.solMockCrossDomainMessageReceiver.solMockCrossDomainMessenger.solMockcontracts implement simulated message passing functionality for the sake of being able to test these things before the actual contracts are ready.Questions
Metadata
Fixes
Contributing Agreement