-
Notifications
You must be signed in to change notification settings - Fork 157
Parachain Relayer V2 #1321
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
Merged
Parachain Relayer V2 #1321
Changes from 1 commit
Commits
Show all changes
82 commits
Select commit
Hold shift + click to select a range
e0b2371
v2 initial commit
vgeddes a7ad609
latest changes
vgeddes 1be9e5c
Flesh out dispatch logic for inbound messages
vgeddes e7fecaf
Add reward address
vgeddes 08715b0
make code compile
vgeddes 111f738
Split initializer impl into a library to reduce contract size
vgeddes b0867e8
Major refactor
vgeddes ee37e3c
Update tests
vgeddes 6829f38
add scripts back
vgeddes 8c878ce
Update scripts
vgeddes 0b25864
Merge branch 'v2' into vincent/v2
vgeddes c35743d
Finish outbound messaging
vgeddes 149c3e4
Implement token registration for V2
vgeddes 02ac263
Make functions payable
vgeddes c7332c3
improve docs
vgeddes c8fc265
Parachain relayer V2
yrong a64c2a5
Rename to PendingOrder
yrong f72e9c3
Decode compact int
yrong c0bab8a
comments
vgeddes 2d9aaf9
Merge branch 'vincent/v2' into ron/v2
yrong c5f0a24
Improve doc
yrong eae219e
review feedback
vgeddes 318b7dc
cleanups
vgeddes e73125d
Add initial tests for V2
vgeddes fa9b8a7
Make `rewardAddress` an indexed event parameter
vgeddes e611e3a
Remove unused
yrong e3888db
Submit delivery proof
yrong bdb0ac1
Merge branch 'vincent/v2' into ron/v2
yrong af374a6
Rename to InboundMessageV2
yrong 2e8d519
Mark as view function
yrong 7187bf3
Filter with reward address
yrong 00016a7
Clean up interfaces
vgeddes 5817542
Make WETH address configurable
vgeddes 4c3b2af
Autowrap ether
vgeddes f214dfc
V2 smoke tests (#1327)
yrong 2581866
Register PNA with OutbountQueueV2
yrong 49089a0
Fix storage key
yrong c87192e
Comment out config
yrong 6a79b20
Merge branch 'vincent/v2' into ron/v2
yrong 2b3201f
Revert contract changes
yrong 42bc03d
Fix function
yrong 78dd144
Regenerate binds & update package path
yrong b88756f
Format
yrong d56ce55
Format
yrong aa75d79
Add todo
yrong d740321
Update bindings
yrong 284e6f0
Update script
yrong 98b7d51
auto-unwrap ether
vgeddes dec8316
Update smoke tests
yrong 553b0b9
Add view keyword
yrong 4419cd7
Merge branch 'vincent/v2' into ron/v2
yrong 400b332
More refactoring
yrong 10f8550
Verify V2 digest for commitment
yrong f5c9cd9
Call Contract with value
yrong 3a7f56c
improve
vgeddes dabecbf
improve
vgeddes 8a1e688
allow unlocking native ether
vgeddes 75ad3f5
improve token registration flows
vgeddes 6bac207
improve docs
vgeddes 7b28a11
improve
vgeddes 7378735
improve
vgeddes 4e17456
nit
vgeddes f54ad7c
Fix smoke test for V2
yrong 1e168c3
Fix test
yrong 0d0046b
Merge branch 'vincent/v2' into ron/v2
yrong 9081585
Fix unlock WETH
yrong b75a480
Sync with contract
yrong d162fd3
Fix smoke test
yrong fc48f45
Update contracts/src/v1/Calls.sol
vgeddes e35cd91
Apply suggestions from code review
vgeddes 55e6cab
Fix unlock WETH
yrong 005da17
Suppress Error (6243): The "tload" instruction
yrong 8ec8306
Merge branch 'vincent/v2' into ron/v2
yrong d77abee
Merge recent changes
yrong 8b63e4a
Merge branch 'vincent/v2' into ron/v2
yrong 980b3ec
Merge branch 'v2' into ron/v2
yrong 2a9abb4
Fix breaking tests
yrong 95e565a
Merge branch 'v2' into ron/v2
yrong c84fe3b
Fix tests
yrong 24230d7
Filter order by rewardAddress to handle own delivery proof
yrong 66906d5
Fix test
yrong 9cf8d92
Add ofac check
yrong 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
There are no files selected for viewing
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
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
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.
If you use types.UCompact then you won't need to write a custom decoder.