Skip to content

Commit aab1b9a

Browse files
authored
Merge pull request #6442 from BitGo/SC-2455
feat: add staking feature to mainnet polyx
2 parents 5f5a391 + 828c22f commit aab1b9a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,12 @@ export const SONEIUM_FEATURES = [
532532
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
533533
];
534534

535-
export const POLYX_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.TSS, CoinFeature.TSS_COLD];
535+
export const POLYX_FEATURES = [
536+
...ACCOUNT_COIN_DEFAULT_FEATURES,
537+
CoinFeature.TSS,
538+
CoinFeature.TSS_COLD,
539+
CoinFeature.STAKING,
540+
];
536541

537542
export const ETH_FEATURES_WITH_FRANKFURT = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];
538543
export const ETH_FEATURES_WITH_GERMANY = [...ETH_FEATURES, CoinFeature.CUSTODY_BITGO_GERMANY];

modules/statics/src/coins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ export const coins = CoinMap.fromCoins([
15021502
6,
15031503
UnderlyingAsset.POLYX,
15041504
BaseUnit.POLYX,
1505-
[...POLYX_FEATURES, CoinFeature.STAKING],
1505+
POLYX_FEATURES,
15061506
KeyCurve.Ed25519
15071507
),
15081508
account(

0 commit comments

Comments
 (0)