Skip to content

Commit 14754b5

Browse files
committed
feat(statics): prod enable sui:wal staking
SC-1193 TICKET: SC-1193
1 parent 9829594 commit 14754b5

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
@@ -108,6 +108,7 @@ import {
108108
ZETA_FEATURES,
109109
WCT_FEATURES,
110110
BERA_BGT_FEATURES,
111+
SUI_TOKEN_FEATURES_STAKING,
111112
} from './coinFeatures';
112113

113114
export const coins = CoinMap.fromCoins([
@@ -8156,7 +8157,7 @@ export const coins = CoinMap.fromCoins([
81568157
'WAL',
81578158
'0x356a26eb9e012a68958082340d4c4116e7f55615cf27affcff209cf0ae544f59::wal::WAL',
81588159
UnderlyingAsset['sui:wal'],
8159-
SUI_TOKEN_FEATURES
8160+
SUI_TOKEN_FEATURES_STAKING
81608161
),
81618162
tsuiToken(
81628163
'0b8a7919-c37e-4be8-8338-7fc13c6c875e',
@@ -8180,7 +8181,7 @@ export const coins = CoinMap.fromCoins([
81808181
'WAL',
81818182
'0x8190b041122eb492bf63cb464476bd68c6b7e570a4079645a8b28732b6197a82::wal::WAL',
81828183
UnderlyingAsset['tsui:wal'],
8183-
[...SUI_TOKEN_FEATURES, CoinFeature.STAKING, CoinFeature.BULK_STAKING_TRANSACTION]
8184+
SUI_TOKEN_FEATURES_STAKING
81848185
),
81858186
aptToken(
81868187
'e8bfdab3-4ef6-4b39-9450-d9cb59593f7a',

0 commit comments

Comments
 (0)