Skip to content
Draft
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
1 change: 0 additions & 1 deletion modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ export const CSPR_FEATURES = [
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.MULTISIG_COLD,
CoinFeature.MULTISIG,
CoinFeature.STAKING,
];
export const ALGO_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
Expand Down
9 changes: 9 additions & 0 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1419,6 +1419,15 @@ describe('Liquid Staking Features', () => {
});
});

describe('CSPR staking features', () => {
it('should not advertise STAKING for mainnet or testnet Casper', () => {
['cspr', 'tcspr'].forEach((coinName) => {
const coin = coins.get(coinName);
coin.features.includes(CoinFeature.STAKING).should.eql(false);
});
});
});

describe('ADA RealFi USDr staking', () => {
it('should have STAKING feature for stakeable USDr tokens', () => {
['ada:usdr', 'tada:usdr'].forEach((coinName) => {
Expand Down
Loading