-
Notifications
You must be signed in to change notification settings - Fork 52
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
Add worstAmount
to EdgeSwapQuote
#616
Conversation
src/types/types.ts
Outdated
@@ -791,7 +791,6 @@ export interface EdgeGetTransactionsOptions { | |||
startDate?: Date | |||
endDate?: Date | |||
searchString?: string | |||
spamThreshold?: string |
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.
why was this removed?
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.
Made changes on an older revision and pasted instead of rebasing or using stashes apparently, will reinstate
src/types/types.ts
Outdated
|
||
/** Worse case amount - the highest cost for a 'from' quote, and the lowest | ||
* receive amount for a 'to' quote */ | ||
readonly worstAmount?: string |
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.
Change to minAmount. Regardless of the quote being from
or to
, this will always be the minimum RECEIVE amount. I'd be ok renaming to minReceiveAmount
76fe9d2
to
a05b4a6
Compare
a05b4a6
to
62c6e61
Compare
62c6e61
to
44624fd
Compare
src/types/types.ts
Outdated
/** Filter incoming transactions with a `nativeAmount` below this */ | ||
spamThreshold?: string | ||
|
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.
This is still missing. Please put it back when you rebase.
44624fd
to
afb455a
Compare
afb455a
to
677266f
Compare
CHANGELOG
Does this branch warrant an entry to the CHANGELOG?
Dependencies
noneDescription
none