Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ export const WETH_FEATURES = [
CoinFeature.METAMASK_INSTITUTIONAL,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.LIQUID_STAKING,
];
export const TWETH_FEATURES = [...WETH_FEATURES, CoinFeature.STAKING];
export const EIGEN_FEATURES = [
Expand All @@ -401,7 +400,6 @@ export const EIGEN_FEATURES = [
CoinFeature.METAMASK_INSTITUTIONAL,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.LIQUID_STAKING,
];
export const RETH_ROCKET_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
Expand Down
14 changes: 12 additions & 2 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1353,8 +1353,18 @@ describe('Eip1559 coins', () => {
});

describe('Liquid Staking Features', () => {
it('should have LIQUID_STAKING feature for sol:jsol and sol:stsol', () => {
['sol:jsol', 'sol:stsol'].forEach((coinName) => {
it('should have LIQUID_STAKING feature for true LST assets', () => {
[
'reth-rocket',
'ofcreth-rocket',
'near:stnear',
'tnear:stnear',
'ofcnear:stnear',
'ofctnear:stnear',
'sol:jsol',
'sol:stsol',
'ofcsol:jsol',
].forEach((coinName) => {
const coin = coins.get(coinName);
coin.features.includes(CoinFeature.LIQUID_STAKING).should.eql(true);
});
Expand Down
Loading