Skip to content

Commit

Permalink
chroe(eth): restaking features
Browse files Browse the repository at this point in the history
Ticket: SC-367
  • Loading branch information
kxl4126 committed Sep 26, 2024
1 parent 53b14ff commit a050679
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ export enum CoinFeature {
* This coin supports staking
*/
STAKING = 'staking',
/*
* This coin supports liquid staking
*/
LIQUID_STAKING = 'liquid-staking',
/**
* This coin is deprecated
*/
Expand Down
3 changes: 3 additions & 0 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ const WETH_FEATURES = [
CoinFeature.METAMASK_INSTITUTIONAL,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.LIQUID_STAKING,
];
const TWETH_FEATURES = [...WETH_FEATURES, CoinFeature.STAKING];
const EIGEN_FEATURES = [
Expand All @@ -242,6 +243,7 @@ const EIGEN_FEATURES = [
CoinFeature.METAMASK_INSTITUTIONAL,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.LIQUID_STAKING,
];
const RETH_ROCKET_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
Expand All @@ -250,6 +252,7 @@ const RETH_ROCKET_FEATURES = [
CoinFeature.METAMASK_INSTITUTIONAL,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.LIQUID_STAKING,
];
const SUI_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
Expand Down

0 comments on commit a050679

Please sign in to comment.