Skip to content

Commit

Permalink
feat: new feature for coins supporting alphanumeric memo id
Browse files Browse the repository at this point in the history
TICKET: WIN-4681

TICKET: WIN-4681
  • Loading branch information
manas-at-bitgo committed Mar 6, 2025
1 parent 7a1f1e7 commit a2685fe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,11 @@ export enum CoinFeature {
* Fees for transactions of TSS wallet of this coin would be paid by the Enterprise i.e. Gas Tank
*/
TSS_ENTERPRISE_PAYS_FEES = 'tss-enterprise-pays-fees',

/**
* This coin supports alphanumeric memo id
*/
ALPHANUMERIC_MEMO_ID = 'alphanumeric-memo-id',
}

/**
Expand Down
4 changes: 4 additions & 0 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ export const HBAR_FEATURES = [
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.MULTISIG_COLD,
CoinFeature.BULK_TRANSACTION,
CoinFeature.ALPHANUMERIC_MEMO_ID,
];
export const POLYGON_FEATURES = [
...ETH_FEATURES_WITH_MMI,
Expand Down Expand Up @@ -196,6 +197,7 @@ export const STX_FEATURES = [
CoinFeature.MULTISIG_COLD,
CoinFeature.STAKING,
CoinFeature.SUPPORTS_TOKENS,
CoinFeature.ALPHANUMERIC_MEMO_ID,
];
export const NEAR_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
Expand Down Expand Up @@ -282,6 +284,7 @@ export const COSMOS_SIDECHAIN_FEATURES = [
CoinFeature.INCREASED_TX_REQUEST_REBUILD_LIMIT,
CoinFeature.BULK_TRANSACTION,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
CoinFeature.ALPHANUMERIC_MEMO_ID,
];
export const COSMOS_SIDECHAIN_FEATURES_WITH_STAKING = [
...COSMOS_SIDECHAIN_FEATURES,
Expand Down Expand Up @@ -318,6 +321,7 @@ export const TON_FEATURES = [
CoinFeature.STAKING,
CoinFeature.REBUILD_ON_CUSTODY_SIGNING,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.ALPHANUMERIC_MEMO_ID,
];
export const ARBETH_FEATURES = [
...ETH_FEATURES,
Expand Down

0 comments on commit a2685fe

Please sign in to comment.