@defisaver/tokens 1.4.39 → 1.4.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.4.39",
3
+ "version": "1.4.41",
4
4
  "description": "Centralized asset data & utility functions",
5
5
  "main": "umd/index.js",
6
6
  "module": "esm/index.js",
package/src/assets.ts CHANGED
@@ -213,6 +213,8 @@ const cFeiAddress = "0x7713DD9Ca933848F6819F38B8352D9A15EA73F67";
213
213
  const bLUSDAddress = "0xB9D7DdDca9a4AC480991865EfEf82E01273F79C3";
214
214
  const cbETHAddress = "0xBe9895146f7AF43049ca1c1AE358B0541Ea49704";
215
215
  const MORPHOAddress = "0x9994e35db50125e0df82e4c2dde62496ce330999";
216
+ const rETHCrvAddress = "0x6c38ce8984a890f5e46e6df6117c26b3f1ecfc9c";
217
+ const cbETHCrvAddress = "0x5b6c539b224014a09b3388e51caaa8e354c959c8";
216
218
 
217
219
  export const assetProto: AssetDataBase = {
218
220
  symbol: '?',
@@ -2654,5 +2656,22 @@ export const assets: AssetDataBase[] = [
2654
2656
  },
2655
2657
  exchange: true,
2656
2658
  decimals: 18,
2659
+ isStable: true,
2660
+ },
2661
+ {...assetProto,
2662
+ symbol: 'reCRV',
2663
+ name: 'Curve.fi ETH/rETH',
2664
+ addresses: {
2665
+ 1: rETHCrvAddress,
2666
+ },
2667
+ decimals: 18,
2668
+ },
2669
+ {...assetProto,
2670
+ symbol: 'cbeCRV',
2671
+ name: 'Curve.fi ETH/cbETH',
2672
+ addresses: {
2673
+ 1: cbETHCrvAddress,
2674
+ },
2675
+ decimals: 18,
2657
2676
  },
2658
2677
  ];