diff --git a/modules/statics/src/coinFeatures.ts b/modules/statics/src/coinFeatures.ts index 899a2a7254..cd8cc4c5eb 100644 --- a/modules/statics/src/coinFeatures.ts +++ b/modules/statics/src/coinFeatures.ts @@ -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 = [ @@ -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, diff --git a/modules/statics/test/unit/coins.ts b/modules/statics/test/unit/coins.ts index 488a9c66cd..e151794568 100644 --- a/modules/statics/test/unit/coins.ts +++ b/modules/statics/test/unit/coins.ts @@ -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); });