File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff 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/**
Original file line number Diff line number Diff 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
608612export const ETH_FEATURES_WITH_FRANKFURT = [ ...ETH_FEATURES , CoinFeature . CUSTODY_BITGO_FRANKFURT ] ;
609613export const ETH_FEATURES_WITH_GERMANY = [ ...ETH_FEATURES , CoinFeature . CUSTODY_BITGO_GERMANY ] ;
You can’t perform that action at this time.
0 commit comments