Skip to content

Commit d1d8475

Browse files
authored
Merge pull request #4954 from BitGo/SC-367-restaking-coin-feature
chroe(eth): restaking features
2 parents c61fb81 + 00e45d3 commit d1d8475

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
@@ -235,6 +235,7 @@ const WETH_FEATURES = [
235235
CoinFeature.METAMASK_INSTITUTIONAL,
236236
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
237237
CoinFeature.CUSTODY_BITGO_SINGAPORE,
238+
CoinFeature.LIQUID_STAKING,
238239
];
239240
const TWETH_FEATURES = [...WETH_FEATURES, CoinFeature.STAKING];
240241
const EIGEN_FEATURES = [
@@ -244,6 +245,7 @@ const EIGEN_FEATURES = [
244245
CoinFeature.METAMASK_INSTITUTIONAL,
245246
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
246247
CoinFeature.CUSTODY_BITGO_SINGAPORE,
248+
CoinFeature.LIQUID_STAKING,
247249
];
248250
const RETH_ROCKET_FEATURES = [
249251
...AccountCoin.DEFAULT_FEATURES,
@@ -252,6 +254,7 @@ const RETH_ROCKET_FEATURES = [
252254
CoinFeature.METAMASK_INSTITUTIONAL,
253255
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
254256
CoinFeature.CUSTODY_BITGO_SINGAPORE,
257+
CoinFeature.LIQUID_STAKING,
255258
];
256259
const SUI_FEATURES = [
257260
...AccountCoin.DEFAULT_FEATURES,

0 commit comments

Comments
 (0)