-
Notifications
You must be signed in to change notification settings - Fork 75
feat: Introduce opt-in deterministic relay data hashes (again) #639
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
Merged
Changes from 45 commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
d363bf0
Revert "feat(SpokePool): Introduce opt-in deterministic relay data ha…
mrice32 c40c197
Reapply "feat(SpokePool): Introduce opt-in deterministic relay data h…
mrice32 53a4860
add deposit nonces to 7683
mrice32 e12e716
fix
mrice32 aae7048
WIP
mrice32 9e3df5a
Merge branch 'master' into mrice32/deterministic-new
nicholaspai 7641fbf
feat(SpokePool): Introduce opt-in deterministic relay data hashes (#583)
nicholaspai 7423b9e
fix(SpokePool): Apply exclusivity consistently
pxrl 9e8e057
Also check on slow fill requests
pxrl 90b76cd
Update contracts/SpokePool.sol
pxrl 014f879
lint
pxrl 0b65659
Update
pxrl 09b298e
Add pure
pxrl c24c723
Fix
pxrl 6b5f5f9
Add tests
pxrl 9d9879e
Merge branch 'master' into mrice32/deterministic-new
nicholaspai 33c6d8e
improve(SpokePool): _depositV3 interprets `exclusivityParameter` as 0…
nicholaspai 1f9c101
Merge branch 'pxrl/exclusivity' into mrice32/deterministic-new
nicholaspai 108019e
merge
nicholaspai 2e3d671
Update SpokePool.sol
nicholaspai cf3e963
Update SpokePool.Relay.ts
nicholaspai 789299c
Update SpokePool.SlowRelay.ts
nicholaspai 56cc357
Update contracts/SpokePool.sol
nicholaspai 7b20c75
Update SpokePool.sol
nicholaspai 543e4c1
Update contracts/SpokePool.sol
pxrl c1176b1
Merge branch 'master' into mrice32/deterministic-new
nicholaspai 6fe3534
Merge branch 'master' into mrice32/deterministic-new
nicholaspai 97b7d3b
rebase
nicholaspai 3926c0a
Merge branch 'master' into npai/exclusivity-switch
nicholaspai dddfaee
Update SpokePool.sol
nicholaspai 2432944
Merge branch 'npai/exclusivity-switch' into mrice32/deterministic-new
nicholaspai b44c128
Revert "Merge branch 'npai/exclusivity-switch' into mrice32/determini…
nicholaspai b8f9c75
Revert "Merge branch 'npai/exclusivity-switch' into mrice32/determini…
nicholaspai 9f2a4f1
Merge branch 'mrice32/deterministic-new' of https://github.com/across…
nicholaspai 43d91db
revert
nicholaspai eedaf9c
Update SpokePool.sol
nicholaspai 2f1438a
Fix
nicholaspai cce9436
Merge branch 'master' into npai/exclusivity-switch
nicholaspai b514866
Merge branch 'npai/exclusivity-switch' into mrice32/deterministic-new
nicholaspai 77251cc
Update SpokePool.sol
nicholaspai 6a21350
Merge remote-tracking branch 'origin/svm-dev' into mrice32/determinis…
nicholaspai 77701ff
WIP
nicholaspai 32cf80b
WIP
nicholaspai e56fec4
wip
nicholaspai b62e097
Update SpokePool.Relay.ts
nicholaspai e71c0f5
Fix
nicholaspai c411346
Update SpokePool.sol
nicholaspai d3de7e1
Update SpokePool.sol
nicholaspai 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
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
Oops, something went wrong.
Oops, something went wrong.
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.
I think this is ok to keep
msgSendertypeaddresssince its only used to create unique hashes on evm chains. For solana, I guess you could usebytes32instead, but we don't really care if a depositID on a solana chain collides with an EVM chain, because the chain ID's would be different. Right? @chrismaree @md0xThere 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.
Yes, I think this is Ok.