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
5 changes: 5 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,11 @@ export enum CoinFeature {
* This token is a stablecoin
*/
STABLECOIN = 'stablecoin',

/**
* This coin supports alternative address identifier format
*/
ALTERNATIVE_ADDRESS_IDENTIFIER = 'alternative-address-identifier',
}

/**
Expand Down
6 changes: 5 additions & 1 deletion modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,11 @@ export const POLYX_FEATURES = [
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
];

export const POLYX_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.TSS];
export const POLYX_TOKEN_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
CoinFeature.TSS,
CoinFeature.ALTERNATIVE_ADDRESS_IDENTIFIER,
];

export const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];
export const ETH_FEATURES_WITH_GERMANY = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_GERMANY];
Expand Down