Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chroe(eth): restaking features #4954

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading