-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add warp contract implementation #718
Merged
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
ed77e1f
Add warp contract implementation
aaronbuchwald 15ef5de
Cleanup predicate test
aaronbuchwald 059d7f9
Fix new function signature
aaronbuchwald d955a11
Replace invalid fuzz test with unit test
aaronbuchwald 81520a5
Add chain config to enable warp API for warp e2e test
aaronbuchwald ee3c039
remove unused var
aaronbuchwald c70159e
Add experimental warning and move warp precompile to x/ package
aaronbuchwald 6a44f20
fix warning label
aaronbuchwald 72e0a1f
Fix warning
aaronbuchwald 8de1e35
vm test nits
aaronbuchwald 2c64fe6
Improve sendWarpMessenger sol comment
aaronbuchwald 51b0dee
more vm warp test nits
aaronbuchwald 8053091
Move warp params into params package
aaronbuchwald 2bfd284
More vm warp test nits
aaronbuchwald bcef7a9
Address more PR comments
aaronbuchwald 90adf6f
Remove triggerTx2
aaronbuchwald 99f43c7
Add check for expected topics from sendWarpMessage log
aaronbuchwald 70cd4ed
Merge branch 'master' into warp-contract
aaronbuchwald c023439
Fix config test
aaronbuchwald 4fbb599
Fix incorrect replace
aaronbuchwald b4a7056
remove unnecessary echo
aaronbuchwald e4ae637
Address comments
aaronbuchwald 119be31
Address comments
aaronbuchwald eb93a70
Address PR comments
aaronbuchwald 533bb58
Merge branch 'master' into warp-contract
aaronbuchwald 56d2322
Improve comments
aaronbuchwald 9507e18
Convert [32]byte type to common.Hash
aaronbuchwald 1ad4ea6
Add base cost for getVerifiedWarpMessage
aaronbuchwald 471d0bd
fix require equal type check
aaronbuchwald d3cf0e3
merge
aaronbuchwald 6b35ece
Fix updated awm message format
aaronbuchwald c64deae
Update warp message format
aaronbuchwald 19567d8
Move IWarpMessenger.sol to interfaces/
aaronbuchwald 26c0deb
Add newline to warp genesis
aaronbuchwald 063a82f
uncomment assertion
aaronbuchwald 744434c
Fix broken links in README
aaronbuchwald a607a84
Merge branch 'master' into warp-contract
aaronbuchwald File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update warp message format
- Loading branch information
commit c64deae75a07ec1f0e913c1de47e99aaa9758efc
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we change this from
ids.ID
to common.Hash?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a no-op change from one alias to the other, but changed it to
common.Hash
to stick with using thecommon
package instead of one from each.