Skip to content

Commit 2adcba1

Browse files
authored
Merge pull request #7457 from BitGo/WIN-7662
chore(statics): add a coin feature for polyx token
2 parents aee8205 + 089acc6 commit 2adcba1

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,11 @@ export enum CoinFeature {
484484
* This token is a stablecoin
485485
*/
486486
STABLECOIN = 'stablecoin',
487+
488+
/**
489+
* This coin supports alternative address identifier format
490+
*/
491+
ALTERNATIVE_ADDRESS_IDENTIFIER = 'alternative-address-identifier',
487492
}
488493

489494
/**

modules/statics/src/coinFeatures.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,11 @@ export const POLYX_FEATURES = [
603603
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
604604
];
605605

606-
export const POLYX_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.TSS];
606+
export const POLYX_TOKEN_FEATURES = [
607+
...ACCOUNT_COIN_DEFAULT_FEATURES,
608+
CoinFeature.TSS,
609+
CoinFeature.ALTERNATIVE_ADDRESS_IDENTIFIER,
610+
];
607611

608612
export const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];
609613
export const ETH_FEATURES_WITH_GERMANY = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_GERMANY];

0 commit comments

Comments
 (0)