Skip to content

Commit 00e45d3

Browse files
committed
chore(statics): restaking features
Ticket: SC-367
1 parent 53b14ff commit 00e45d3

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

modules/statics/src/base.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@ export enum CoinFeature {
180180
* This coin supports staking
181181
*/
182182
STAKING = 'staking',
183+
/*
184+
* This coin supports liquid staking
185+
*/
186+
LIQUID_STAKING = 'liquid-staking',
183187
/**
184188
* This coin is deprecated
185189
*/

modules/statics/src/coins.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ const WETH_FEATURES = [
233233
CoinFeature.METAMASK_INSTITUTIONAL,
234234
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
235235
CoinFeature.CUSTODY_BITGO_SINGAPORE,
236+
CoinFeature.LIQUID_STAKING,
236237
];
237238
const TWETH_FEATURES = [...WETH_FEATURES, CoinFeature.STAKING];
238239
const EIGEN_FEATURES = [
@@ -242,6 +243,7 @@ const EIGEN_FEATURES = [
242243
CoinFeature.METAMASK_INSTITUTIONAL,
243244
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
244245
CoinFeature.CUSTODY_BITGO_SINGAPORE,
246+
CoinFeature.LIQUID_STAKING,
245247
];
246248
const RETH_ROCKET_FEATURES = [
247249
...AccountCoin.DEFAULT_FEATURES,
@@ -250,6 +252,7 @@ const RETH_ROCKET_FEATURES = [
250252
CoinFeature.METAMASK_INSTITUTIONAL,
251253
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
252254
CoinFeature.CUSTODY_BITGO_SINGAPORE,
255+
CoinFeature.LIQUID_STAKING,
253256
];
254257
const SUI_FEATURES = [
255258
...AccountCoin.DEFAULT_FEATURES,

0 commit comments

Comments
 (0)