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 @@ -553,8 +553,6 @@ export const ZKSYNCERA_FEATURES = [
CoinFeature.SUPPORTS_ERC20,
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.MULTISIG_COLD,
CoinFeature.MULTISIG,
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
CoinFeature.ETH_ROLLUP_CHAIN,
];
Expand Down
6 changes: 2 additions & 4 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1376,16 +1376,14 @@ describe('create token map using config details', () => {
CoinFeature.SUPPORTS_ERC20,
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.MULTISIG_COLD,
CoinFeature.MULTISIG,
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
CoinFeature.ETH_ROLLUP_CHAIN,
]);
});

it('should have TSS_COLD feature for zksyncera (both multisig and tss cold)', function () {
it('should have TSS_COLD but not MULTISIG_COLD for zksyncera (tss cold only)', function () {
const coin = coins.get('zksyncera');
coin.features.includes(CoinFeature.MULTISIG_COLD).should.equal(true);
coin.features.includes(CoinFeature.MULTISIG_COLD).should.equal(false);
coin.features.includes(CoinFeature.TSS_COLD).should.equal(true);
});
});
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/test/unit/fixtures/expectedColdFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ export const expectedColdFeatures = {
'tsoneium',
'flr',
'tflr',
'zksyncera',
'tzksyncera',
],
justMultiSig: [
'algo',
Expand Down Expand Up @@ -213,6 +211,8 @@ export const expectedColdFeatures = {
'tkavaevm',
'twemix',
'tzeta',
'tzksyncera',
'zksyncera',
'toas',
'ton',
'tseievm',
Expand Down