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.
2 parents 2faf5b7 + a151f42 commit bc9d7bdCopy full SHA for bc9d7bd
modules/statics/src/base.ts
@@ -375,6 +375,11 @@ export enum CoinFeature {
375
* This coin supports multisig wallets
376
*/
377
MULTISIG = 'multisig',
378
+
379
+ /**
380
+ * This coin is a rebase token and should use the rebase token functionality
381
+ */
382
+ REBASE_TOKEN = 'rebase-token',
383
}
384
385
/**
modules/statics/src/coins/erc20Coins.ts
@@ -7332,7 +7332,8 @@ export const erc20Coins = [
7332
'stETH',
7333
18,
7334
'0xae7ab96520de3a18e5e111b5eaab095312d7fe84',
7335
- UnderlyingAsset.STETH
+ UnderlyingAsset.STETH,
7336
+ [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION, CoinFeature.REBASE_TOKEN]
7337
),
7338
erc20(
7339
'8e23a447-d5e7-49e9-b7a0-5b23058971db',
0 commit comments