Skip to content

Commit

Permalink
Merge pull request #4954 from BitGo/SC-367-restaking-coin-feature
Browse files Browse the repository at this point in the history
chroe(eth): restaking features
  • Loading branch information
kxl4126 authored Oct 4, 2024
2 parents c61fb81 + 00e45d3 commit d1d8475
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 @@ -235,6 +235,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 @@ -244,6 +245,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 @@ -252,6 +254,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 d1d8475

Please sign in to comment.