-
Notifications
You must be signed in to change notification settings - Fork 56
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
chore(contracts/solve): refactor order state #2719
Merged
Merged
Changes from all commits
Commits
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,43 +110,23 @@ interface ISolverNetInbox is IOriginSettler, ISolverNet { | |
} | ||
|
||
/** | ||
* @notice Parameters for an order. | ||
* @notice State of an order. | ||
* @param status Order status. | ||
* @param updatedAt Timestamp order status was last updated. | ||
* @param acceptedBy Address of the solver that accepted the order. | ||
*/ | ||
struct SolverNetOrderParams { | ||
struct OrderState { | ||
Status status; | ||
uint40 updatedAt; | ||
address acceptedBy; | ||
} | ||
|
||
/** | ||
* @notice Order with parameters and history. | ||
* @param order The order to be executed. | ||
* @param params Order parameters. | ||
* @param history Array of status updates including timestamps. | ||
* @notice Returns resolved cross-chain order with current state and history. | ||
* @param id Order ID.j:w | ||
*/ | ||
struct SolverNetOrder { | ||
ResolvedCrossChainOrder order; | ||
SolverNetOrderParams params; | ||
StatusUpdate[] history; | ||
} | ||
|
||
/** | ||
* @notice Returns the order with the given ID. | ||
*/ | ||
function getOrder(bytes32 id) external view returns (SolverNetOrder memory); | ||
|
||
/** | ||
* @notice Returns the order parameters for the given order ID. | ||
*/ | ||
function getOrderParams(bytes32 id) external view returns (SolverNetOrderParams memory); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed view,s |
||
|
||
/** | ||
* @notice Returns the update history for an order. | ||
*/ | ||
function getOrderHistory(bytes32 id) external view returns (StatusUpdate[] memory); | ||
function getOrder(bytes32 id) | ||
external | ||
view | ||
returns (ResolvedCrossChainOrder memory order, OrderState memory state, StatusUpdate[] memory history); | ||
|
||
/** | ||
* @notice Returns the latest order ID with the given status. | ||
|
@@ -158,11 +138,6 @@ interface ISolverNetInbox is IOriginSettler, ISolverNet { | |
*/ | ||
function validateOrder(OnchainCrossChainOrder calldata order) external view returns (bool); | ||
|
||
/** | ||
* @dev Resolve the onchain order. | ||
*/ | ||
function resolve(OnchainCrossChainOrder calldata order) external view returns (ResolvedCrossChainOrder memory); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed this as it was in |
||
|
||
/** | ||
* @notice Accept an open order. | ||
* @dev Only a whitelisted solver can accept. | ||
|
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.
Struggled thinking of a more appropraite "wrapping" struct name. Everything felt forced. I actually think
SolvertNetOrder
is decent, in that aSolverNetOrder
wraps aResolvedCrossChainOrder
But didn't love that we us overloading the use of "order". And we just needed this to name a return type. Tuple should suffice, as this is view is mostly for off chain and easy to unpack.
Less terms == better