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
1 change: 0 additions & 1 deletion modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ export const BSC_FEATURES = [
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.BULK_TRANSACTION,
CoinFeature.ERC20_BULK_TRANSACTION,
];
export const BSC_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [
Expand Down
7 changes: 5 additions & 2 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1056,13 +1056,16 @@ describe('ERC20 Bulk Transaction Feature', () => {
'tpolygon',
'coredao',
'tcoredao',
'bsc',
'tbsc',
];
erc20BulkTransactionCoins.forEach((coinName) => {
const coin = coins.get(coinName);
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(true);
});

it('should not have ERC20_BULK_TRANSACTION feature for BSC', () => {
const coin = coins.get('bsc');
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(false);
});
});
});

Expand Down