@defisaver/tokens 1.7.28 → 1.7.29
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 +3 -0
- package/esm/assets.js +3 -0
- package/package.json +1 -1
- package/src/assets.ts +16 -0
package/cjs/assets.js
CHANGED
|
@@ -1209,6 +1209,9 @@ exports.assets = [
|
|
|
1209
1209
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT sUSDe June', name: 'PT Ethena sUSDe June 2026', underlyingAsset: 'sUSDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1781740800, addresses: {
|
|
1210
1210
|
9745: '0x30559e3d35e33ab69399a3fe9f383d32bd3c016e',
|
|
1211
1211
|
} }),
|
|
1212
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe June', name: 'PT Ethena USDe June 2026', underlyingAsset: 'USDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1781740800, addresses: {
|
|
1213
|
+
9745: '0x23B17d3944742ACe3d0C71586FcB320d1e4a1Ed2',
|
|
1214
|
+
} }),
|
|
1212
1215
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDtb', feedAvailability: { 1: true }, name: 'USDtb', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, addresses: {
|
|
1213
1216
|
1: '0xC139190F447e929f090Edeb554D95AbB8b18aC1C',
|
|
1214
1217
|
8453: '0xc708B6887DB46005dA033501f8aeBee72d191a5d',
|
package/esm/assets.js
CHANGED
|
@@ -1206,6 +1206,9 @@ export const assets = [
|
|
|
1206
1206
|
Object.assign(Object.assign({}, assetProto), { symbol: 'PT sUSDe June', name: 'PT Ethena sUSDe June 2026', underlyingAsset: 'sUSDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1781740800, addresses: {
|
|
1207
1207
|
9745: '0x30559e3d35e33ab69399a3fe9f383d32bd3c016e',
|
|
1208
1208
|
} }),
|
|
1209
|
+
Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDe June', name: 'PT Ethena USDe June 2026', underlyingAsset: 'USDe', feedAvailability: { 9745: true }, decimals: 18, nativeChainId: 9745, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1781740800, addresses: {
|
|
1210
|
+
9745: '0x23B17d3944742ACe3d0C71586FcB320d1e4a1Ed2',
|
|
1211
|
+
} }),
|
|
1209
1212
|
Object.assign(Object.assign({}, assetProto), { symbol: 'USDtb', feedAvailability: { 1: true }, name: 'USDtb', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, addresses: {
|
|
1210
1213
|
1: '0xC139190F447e929f090Edeb554D95AbB8b18aC1C',
|
|
1211
1214
|
8453: '0xc708B6887DB46005dA033501f8aeBee72d191a5d',
|
package/package.json
CHANGED
package/src/assets.ts
CHANGED
|
@@ -3386,6 +3386,22 @@ export const assets: AssetDataBase[] = [
|
|
|
3386
3386
|
addresses: {
|
|
3387
3387
|
9745: '0x30559e3d35e33ab69399a3fe9f383d32bd3c016e',
|
|
3388
3388
|
}
|
|
3389
|
+
},
|
|
3390
|
+
{
|
|
3391
|
+
...assetProto,
|
|
3392
|
+
symbol: 'PT USDe June',
|
|
3393
|
+
name: 'PT Ethena USDe June 2026',
|
|
3394
|
+
underlyingAsset: 'USDe',
|
|
3395
|
+
feedAvailability: { 9745: true },
|
|
3396
|
+
decimals: 18,
|
|
3397
|
+
nativeChainId: 9745,
|
|
3398
|
+
isStable: true,
|
|
3399
|
+
isPendle: true,
|
|
3400
|
+
exchange: true,
|
|
3401
|
+
expiryTimestamp: 1781740800,
|
|
3402
|
+
addresses: {
|
|
3403
|
+
9745: '0x23B17d3944742ACe3d0C71586FcB320d1e4a1Ed2',
|
|
3404
|
+
}
|
|
3389
3405
|
},
|
|
3390
3406
|
{
|
|
3391
3407
|
...assetProto,
|