Skip to content

Commit 483a701

Browse files
authored
Merge pull request #5609 from BitGo/SC-1193
feat(statics): prod enable sui:wal staking
2 parents a4667fa + 14754b5 commit 483a701

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,11 @@ export const SUI_TOKEN_FEATURES = [
257257
CoinFeature.TSS_COLD,
258258
CoinFeature.BULK_TRANSACTION,
259259
];
260+
export const SUI_TOKEN_FEATURES_STAKING = [
261+
...SUI_TOKEN_FEATURES,
262+
CoinFeature.STAKING,
263+
CoinFeature.BULK_STAKING_TRANSACTION,
264+
];
260265
export const TRX_FEATURES = [
261266
...AccountCoin.DEFAULT_FEATURES,
262267
CoinFeature.SUPPORTS_TOKENS,

modules/statics/src/coins.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ import {
100100
ZETA_FEATURES,
101101
WCT_FEATURES,
102102
BERA_BGT_FEATURES,
103+
SUI_TOKEN_FEATURES_STAKING,
103104
} from './coinFeatures';
104105

105106
export const coins = CoinMap.fromCoins([
@@ -2696,7 +2697,7 @@ export const coins = CoinMap.fromCoins([
26962697
'WAL',
26972698
'0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL',
26982699
UnderlyingAsset['sui:wal'],
2699-
SUI_TOKEN_FEATURES
2700+
SUI_TOKEN_FEATURES_STAKING
27002701
),
27012702
tsuiToken(
27022703
'0b8a7919-c37e-4be8-8338-7fc13c6c875e',
@@ -2720,7 +2721,7 @@ export const coins = CoinMap.fromCoins([
27202721
'WAL',
27212722
'0x8190b041122eb492bf63cb464476bd68c6b7e570a4079645a8b28732b6197a82::wal::WAL',
27222723
UnderlyingAsset['tsui:wal'],
2723-
[...SUI_TOKEN_FEATURES, CoinFeature.STAKING, CoinFeature.BULK_STAKING_TRANSACTION]
2724+
SUI_TOKEN_FEATURES_STAKING
27242725
),
27252726
aptToken(
27262727
'e8bfdab3-4ef6-4b39-9450-d9cb59593f7a',

0 commit comments

Comments
 (0)