-
Notifications
You must be signed in to change notification settings - Fork 90
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
Driver sends flashloan hints #3244
base: driver-fetches-appdata
Are you sure you want to change the base?
Conversation
7c64570
to
bac86c0
Compare
Reminder: Please consider backward compatibility when modifying the API specification.
Caused by: |
- fullBuyAmount | ||
- validTo | ||
- kind | ||
- owner | ||
- partiallyFillable | ||
- preInteractions | ||
- postInteractions | ||
- sellTokenSource | ||
- buyTokenDestination | ||
- class | ||
- appData | ||
- signingScheme | ||
- signature |
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.
Not related to this PR, but these are required in the code.
@@ -727,6 +779,7 @@ components: | |||
required: | |||
- kind | |||
- order | |||
- executedAmount |
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.
ditto
400ebf3
to
4af3c34
Compare
# Conflicts: # crates/driver/src/domain/competition/order/mod.rs
Description
The follow-up to #3242, which implements #3216 by using the fetched
app-data
and sending flashloan hints to solver along with the order. The solver then returns a solution with an optionally attached flashloan data. Encoding of this data will be implemented in another PR(#3218).Changes
How to test
New driver tests. Backward compatibility is checked with all the existing and e2e tests.
Related Issues
Fixes #3216