You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
There can be up to uint256 parts in a TWAP order meaning that we would current request information about each from CoW when mapping.
This limits the number of parts we request up to 11 (confirmed by CoW) - which can be configured by an env. var. (swaps.maxNumberOfParts). If there are >11 parts, the final one is used to fetch the status and token information but it means that executedSellAmount and executedBuyAmount are null as we cannot calculate them.
Changes
Add swaps.maxNumberOfParts configuration
Update TwapOrderInfo['executedSellAmount' | 'executedBuyAmount'] to be string | null
Limit number of parts, fetching only the last if more than the maximum
The reason will be displayed to describe this comment to others. Learn more.
Nit: what do you think about renaming _parts to twapOrderParts (or orderParts, allParts, etc.) instead of using a _ prefix? I think it might be more readable.
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.
Summary
There can be up to
uint256
parts in a TWAP order meaning that we would current request information about each from CoW when mapping.This limits the number of parts we request up to 11 (confirmed by CoW) - which can be configured by an env. var. (
swaps.maxNumberOfParts
). If there are >11 parts, the final one is used to fetch the status and token information but it means thatexecutedSellAmount
andexecutedBuyAmount
arenull
as we cannot calculate them.Changes
swaps.maxNumberOfParts
configurationTwapOrderInfo['executedSellAmount' | 'executedBuyAmount']
to bestring | null