@defisaver/tokens 1.7.12 → 1.7.13
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 +6 -0
- package/esm/assets.js +6 -0
- package/package.json +1 -1
- package/src/assets.ts +32 -0
package/cjs/assets.js
CHANGED
|
@@ -1269,6 +1269,12 @@ exports.assets = [
|
|
|
1269
1269
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe Jan', name: 'PT USDe January 2026', underlyingAsset: 'USDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1768435200, addresses: {
|
|
1270
1270
|
9745: '0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a',
|
|
1271
1271
|
} }),
|
|
1272
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT sUSDe Feb', name: 'PT Ethena sUSDE February 2026', underlyingAsset: 'sUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1770249600, addresses: {
|
|
1273
|
+
1: '0xE8483517077afa11A9B07f849cee2552f040d7b2',
|
|
1274
|
+
} }),
|
|
1275
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe Feb', name: 'PT Ethena USDe February 2026', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1770249600, addresses: {
|
|
1276
|
+
1: '0x1F84a51296691320478c98b8d77f2Bbd17D34350',
|
|
1277
|
+
} }),
|
|
1272
1278
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LINEA', name: 'Linea', feedAvailability: { 1: true, 59144: true }, decimals: 18, nativeChainId: 1, isStable: false, exchange: true, addresses: {
|
|
1273
1279
|
1: '0x1789e0043623282D5DCc7F213d703C6D8BAfBB04',
|
|
1274
1280
|
59144: '0x1789e0043623282d5dcc7f213d703c6d8bafbb04',
|
package/esm/assets.js
CHANGED
|
@@ -1266,6 +1266,12 @@ export const assets = [
|
|
|
1266
1266
|
Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDe Jan', name: 'PT USDe January 2026', underlyingAsset: 'USDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1768435200, addresses: {
|
|
1267
1267
|
9745: '0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a',
|
|
1268
1268
|
} }),
|
|
1269
|
+
Object.assign(Object.assign({}, assetProto), { symbol: 'PT sUSDe Feb', name: 'PT Ethena sUSDE February 2026', underlyingAsset: 'sUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1770249600, addresses: {
|
|
1270
|
+
1: '0xE8483517077afa11A9B07f849cee2552f040d7b2',
|
|
1271
|
+
} }),
|
|
1272
|
+
Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDe Feb', name: 'PT Ethena USDe February 2026', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1770249600, addresses: {
|
|
1273
|
+
1: '0x1F84a51296691320478c98b8d77f2Bbd17D34350',
|
|
1274
|
+
} }),
|
|
1269
1275
|
Object.assign(Object.assign({}, assetProto), { symbol: 'LINEA', name: 'Linea', feedAvailability: { 1: true, 59144: true }, decimals: 18, nativeChainId: 1, isStable: false, exchange: true, addresses: {
|
|
1270
1276
|
1: '0x1789e0043623282D5DCc7F213d703C6D8BAfBB04',
|
|
1271
1277
|
59144: '0x1789e0043623282d5dcc7f213d703c6d8bafbb04',
|
package/package.json
CHANGED
package/src/assets.ts
CHANGED
|
@@ -3663,6 +3663,38 @@ export const assets: AssetDataBase[] = [
|
|
|
3663
3663
|
9745: '0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a',
|
|
3664
3664
|
}
|
|
3665
3665
|
},
|
|
3666
|
+
{
|
|
3667
|
+
...assetProto,
|
|
3668
|
+
symbol: 'PT sUSDe Feb',
|
|
3669
|
+
name: 'PT Ethena sUSDE February 2026',
|
|
3670
|
+
underlyingAsset: 'sUSDe',
|
|
3671
|
+
feedAvailability: { 1: true },
|
|
3672
|
+
decimals: 18,
|
|
3673
|
+
nativeChainId: 1,
|
|
3674
|
+
isStable: true,
|
|
3675
|
+
isPendle: true,
|
|
3676
|
+
exchange: true,
|
|
3677
|
+
expiryTimestamp: 1770249600,
|
|
3678
|
+
addresses: {
|
|
3679
|
+
1: '0xE8483517077afa11A9B07f849cee2552f040d7b2',
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
...assetProto,
|
|
3684
|
+
symbol: 'PT USDe Feb',
|
|
3685
|
+
name: 'PT Ethena USDe February 2026',
|
|
3686
|
+
underlyingAsset: 'USDe',
|
|
3687
|
+
feedAvailability: { 1: true },
|
|
3688
|
+
decimals: 18,
|
|
3689
|
+
nativeChainId: 1,
|
|
3690
|
+
isStable: true,
|
|
3691
|
+
isPendle: true,
|
|
3692
|
+
exchange: true,
|
|
3693
|
+
expiryTimestamp: 1770249600,
|
|
3694
|
+
addresses: {
|
|
3695
|
+
1: '0x1F84a51296691320478c98b8d77f2Bbd17D34350',
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3666
3698
|
{
|
|
3667
3699
|
...assetProto,
|
|
3668
3700
|
symbol: 'LINEA',
|