-
Notifications
You must be signed in to change notification settings - Fork 283
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
refactor(statics): move out ERC20 tokens to dedicated file to declutter coins.ts #5306
Conversation
import { erc20 } from '../account'; | ||
import { CoinFeature, UnderlyingAsset } from '../base'; | ||
import { AccountCoin, erc20 } from '../account'; | ||
import { MATIC_FEATURES, WETH_FEATURES, ETH_FEATURES } from './coins'; |
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.
Isn't it supposed to be
import { MATIC_FEATURES, WETH_FEATURES, ETH_FEATURES } from './coins'; | |
import { MATIC_FEATURES, WETH_FEATURES, ETH_FEATURES } from '../coins'; |
ec22b29
to
d564d9b
Compare
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.
please squash the commits
d564d9b
to
4805f4f
Compare
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 seems to be stale. Either rebase and get it ready for review again or close it.
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.
Nit: Might want to name this erc20Tokens.ts
console.log('ETH_FEATURES:', erc20); | ||
const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT]; | ||
|
||
const POL_FEATURES = [ |
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 is this defined in this file and not in features
?
This PR was closed because it has been stalled for 10 days with no activity. |
TICKET: WIN-4074