@defisaver/tokens 1.7.26 → 1.7.27

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/cjs/assets.js CHANGED
@@ -239,6 +239,7 @@ const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
239
239
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
240
240
  const mUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
241
241
  const USDGAddress = "0xe343167631d89B6Ffc58B88d6b7fB0228795491D";
242
+ const frxUSDAddress = "0xCAcd6fd266aF91b8AeD52aCCc382b4e165586E29";
242
243
  exports.assetProto = {
243
244
  symbol: '?',
244
245
  feedAvailability: {},
@@ -1343,4 +1344,7 @@ exports.assets = [
1343
1344
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1344
1345
  8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1345
1346
  }, isStable: false }),
1347
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'frxUSD', name: 'Frax USD', exchange: true, decimals: 18, addresses: {
1348
+ 1: frxUSDAddress,
1349
+ }, isStable: true }),
1346
1350
  ];
package/esm/assets.js CHANGED
@@ -236,6 +236,7 @@ const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
236
236
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
237
237
  const mUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
238
238
  const USDGAddress = "0xe343167631d89B6Ffc58B88d6b7fB0228795491D";
239
+ const frxUSDAddress = "0xCAcd6fd266aF91b8AeD52aCCc382b4e165586E29";
239
240
  export const assetProto = {
240
241
  symbol: '?',
241
242
  feedAvailability: {},
@@ -1340,4 +1341,7 @@ export const assets = [
1340
1341
  Object.assign(Object.assign({}, assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1341
1342
  8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1342
1343
  }, isStable: false }),
1344
+ Object.assign(Object.assign({}, assetProto), { symbol: 'frxUSD', name: 'Frax USD', exchange: true, decimals: 18, addresses: {
1345
+ 1: frxUSDAddress,
1346
+ }, isStable: true }),
1343
1347
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.26",
3
+ "version": "1.7.27",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -238,6 +238,7 @@ const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
238
238
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
239
239
  const mUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
240
240
  const USDGAddress = "0xe343167631d89B6Ffc58B88d6b7fB0228795491D";
241
+ const frxUSDAddress = "0xCAcd6fd266aF91b8AeD52aCCc382b4e165586E29";
241
242
 
242
243
 
243
244
  export const assetProto: AssetDataBase = {
@@ -3952,4 +3953,15 @@ export const assets: AssetDataBase[] = [
3952
3953
  },
3953
3954
  isStable: false,
3954
3955
  },
3956
+ {
3957
+ ...assetProto,
3958
+ symbol: 'frxUSD',
3959
+ name: 'Frax USD',
3960
+ exchange: true,
3961
+ decimals: 18,
3962
+ addresses: {
3963
+ 1: frxUSDAddress,
3964
+ },
3965
+ isStable: true,
3966
+ },
3955
3967
  ];