Skip to content

Commit 854fcc7

Browse files
committed
feat(statics): add polyx token alt address feature
TICKET: WIN-8664
1 parent 186c5d4 commit 854fcc7

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,11 @@ export enum CoinFeature {
506506
*/
507507
ALTERNATIVE_ADDRESS_IDENTIFIER = 'alternative-address-identifier',
508508

509+
/**
510+
* This token standard uses alternative address identifiers (e.g., DIDs for Polymesh tokens)
511+
*/
512+
TOKEN_STANDARD_USES_ALTERNATIVE_ADDRESS_IDENTIFIER = 'token-standard-uses-alternative-address-identifier',
513+
509514
/**
510515
* This coin supports one-step deposit
511516
*/

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,13 +653,12 @@ export const POLYX_FEATURES = [
653653
CoinFeature.STAKING,
654654
CoinFeature.SUPPORTS_TOKENS,
655655
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
656-
CoinFeature.ALTERNATIVE_ADDRESS_IDENTIFIER,
657656
];
658657

659658
export const POLYX_TOKEN_FEATURES = [
660659
...ACCOUNT_COIN_DEFAULT_FEATURES,
661660
CoinFeature.TSS,
662-
CoinFeature.ALTERNATIVE_ADDRESS_IDENTIFIER,
661+
CoinFeature.TOKEN_STANDARD_USES_ALTERNATIVE_ADDRESS_IDENTIFIER,
663662
];
664663

665664
export const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];

0 commit comments

Comments
 (0)