-
Notifications
You must be signed in to change notification settings - Fork 14
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
improve(ConfigStoreClient): Remove deprecated transferThreshold variable from config store #388
Conversation
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.
LGTM - nice cleanup.
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.
Left a nit regarding what we're testing for
03fcf2b
to
d6e8ba8
Compare
package.json
Outdated
"version": "0.15.22", | ||
"version": "0.15.23", |
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 should probably be a bump in the minor, given that we're deprecating something.
src/interfaces/ConfigStore.ts
Outdated
@@ -3,8 +3,7 @@ import { RateModelDictionary } from "../lpFeeCalculator/rateModel"; | |||
import { SortableEvent } from "./Common"; | |||
|
|||
export interface ParsedTokenConfig { | |||
transferThreshold: string; | |||
rateModel: RateModelDictionary; | |||
rateModel: across.rateModel.RateModelDictionary; |
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 suspect this might be a bad merge - we don't import across
from the UMA SDK anymore.
rateModel: across.rateModel.RateModelDictionary; | |
rateModel: RateModelDictionary; |
Upstream of across-protocol/relayer#937
Implements UMAprotocol/UMIPs#592