Skip to content

Commit 962eea9

Browse files
committed
feat(statics): add SHARED_EVM_MESSAGE_SIGNING coin feature to BSC
TICKET: COIN-4270
1 parent 4bef5d1 commit 962eea9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,11 @@ export enum CoinFeature {
456456
* This token is internal and shouldn't be exposed to users
457457
*/
458458
RESTRICTED = 'restricted',
459+
460+
/**
461+
* This coin is an EVM compatible coin and should use common EVM message signing functionality
462+
*/
463+
SHARED_EVM_MESSAGE_SIGNING = 'shared-evm-message-signing',
459464
}
460465

461466
/**

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ export const BSC_FEATURES = [
268268
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
269269
CoinFeature.CUSTODY_BITGO_FRANKFURT,
270270
CoinFeature.BULK_TRANSACTION,
271+
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
271272
];
272273
export const BSC_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
273274
export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [

0 commit comments

Comments
 (0)