@defisaver/tokens 1.6.19 → 1.6.20

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
@@ -1223,4 +1223,7 @@ exports.assets = [
1223
1223
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sdeUSD', name: 'Elixir Staked deUSD', underlyingAsset: 'deUSD', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1224
1224
  1: '0x5C5b196aBE0d54485975D1Ec29617D42D9198326'
1225
1225
  } }),
1226
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe Sep', name: 'PT Ethena USDe September', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1758758400, addresses: {
1227
+ 1: '0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
1228
+ } }),
1226
1229
  ];
package/esm/assets.js CHANGED
@@ -1220,4 +1220,7 @@ export const assets = [
1220
1220
  Object.assign(Object.assign({}, assetProto), { symbol: 'sdeUSD', name: 'Elixir Staked deUSD', underlyingAsset: 'deUSD', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1221
1221
  1: '0x5C5b196aBE0d54485975D1Ec29617D42D9198326'
1222
1222
  } }),
1223
+ Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDe Sep', name: 'PT Ethena USDe September', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1758758400, addresses: {
1224
+ 1: '0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
1225
+ } }),
1223
1226
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.6.19",
3
+ "version": "1.6.20",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -3517,4 +3517,20 @@ export const assets: AssetDataBase[] = [
3517
3517
  1: '0x5C5b196aBE0d54485975D1Ec29617D42D9198326'
3518
3518
  }
3519
3519
  },
3520
+ {
3521
+ ...assetProto,
3522
+ symbol: 'PT USDe Sep',
3523
+ name: 'PT Ethena USDe September',
3524
+ underlyingAsset: 'USDe',
3525
+ feedAvailability: { 1: true },
3526
+ decimals: 18,
3527
+ nativeChainId: 1,
3528
+ isStable: true,
3529
+ isPendle: true,
3530
+ exchange: true,
3531
+ expiryTimestamp: 1758758400,
3532
+ addresses: {
3533
+ 1: '0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
3534
+ }
3535
+ },
3520
3536
  ];