We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b14ff commit 00e45d3Copy full SHA for 00e45d3
modules/statics/src/base.ts
@@ -180,6 +180,10 @@ export enum CoinFeature {
180
* This coin supports staking
181
*/
182
STAKING = 'staking',
183
+ /*
184
+ * This coin supports liquid staking
185
+ */
186
+ LIQUID_STAKING = 'liquid-staking',
187
/**
188
* This coin is deprecated
189
modules/statics/src/coins.ts
@@ -233,6 +233,7 @@ const WETH_FEATURES = [
233
CoinFeature.METAMASK_INSTITUTIONAL,
234
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
235
CoinFeature.CUSTODY_BITGO_SINGAPORE,
236
+ CoinFeature.LIQUID_STAKING,
237
];
238
const TWETH_FEATURES = [...WETH_FEATURES, CoinFeature.STAKING];
239
const EIGEN_FEATURES = [
@@ -242,6 +243,7 @@ const EIGEN_FEATURES = [
242
243
244
245
246
247
248
const RETH_ROCKET_FEATURES = [
249
...AccountCoin.DEFAULT_FEATURES,
@@ -250,6 +252,7 @@ const RETH_ROCKET_FEATURES = [
250
252
251
253
254
255
256
257
const SUI_FEATURES = [
258
0 commit comments