@defisaver/tokens 1.6.12 → 1.6.14

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
@@ -1187,4 +1187,16 @@ exports.assets = [
1187
1187
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT syrupUSDC Aug', name: 'PT Syrup USDC August', underlyingAsset: 'syrupUSDC', feedAvailability: { 1: true }, decimals: 6, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1756339200, addresses: {
1188
1188
  1: '0xCcE7D12f683c6dAe700154f0BAdf779C0bA1F89A',
1189
1189
  } }),
1190
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aEthWETH', name: 'Aave Ethereum WETH', underlyingAsset: 'WETH', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1191
+ 1: '0x4d5F47FA6A74757f35C14fD3a6Ef8E3C9BC514E8'
1192
+ } }),
1193
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aEthUSDC', name: 'Aave Ethereum USDC', underlyingAsset: 'USDC', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1194
+ 1: '0x98C23E9d8f34FEFb1B7BD6a91B7FF122F4e16F5c'
1195
+ } }),
1196
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aEthUSDT', name: 'Aave Ethereum USDT', underlyingAsset: 'USDT', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1197
+ 1: '0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a'
1198
+ } }),
1199
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FBTC', name: 'Fire Bitcoin', decimals: 8, nativeChainId: 1, exchange: true, addresses: {
1200
+ 1: '0xC96dE26018A54D51c097160568752c4E3BD6C364'
1201
+ } }),
1190
1202
  ];
package/esm/assets.js CHANGED
@@ -1184,4 +1184,16 @@ export const assets = [
1184
1184
  Object.assign(Object.assign({}, assetProto), { symbol: 'PT syrupUSDC Aug', name: 'PT Syrup USDC August', underlyingAsset: 'syrupUSDC', feedAvailability: { 1: true }, decimals: 6, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1756339200, addresses: {
1185
1185
  1: '0xCcE7D12f683c6dAe700154f0BAdf779C0bA1F89A',
1186
1186
  } }),
1187
+ Object.assign(Object.assign({}, assetProto), { symbol: 'aEthWETH', name: 'Aave Ethereum WETH', underlyingAsset: 'WETH', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1188
+ 1: '0x4d5F47FA6A74757f35C14fD3a6Ef8E3C9BC514E8'
1189
+ } }),
1190
+ Object.assign(Object.assign({}, assetProto), { symbol: 'aEthUSDC', name: 'Aave Ethereum USDC', underlyingAsset: 'USDC', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1191
+ 1: '0x98C23E9d8f34FEFb1B7BD6a91B7FF122F4e16F5c'
1192
+ } }),
1193
+ Object.assign(Object.assign({}, assetProto), { symbol: 'aEthUSDT', name: 'Aave Ethereum USDT', underlyingAsset: 'USDT', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
1194
+ 1: '0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a'
1195
+ } }),
1196
+ Object.assign(Object.assign({}, assetProto), { symbol: 'FBTC', name: 'Fire Bitcoin', decimals: 8, nativeChainId: 1, exchange: true, addresses: {
1197
+ 1: '0xC96dE26018A54D51c097160568752c4E3BD6C364'
1198
+ } }),
1187
1199
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.6.12",
3
+ "version": "1.6.14",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -3387,4 +3387,51 @@ export const assets: AssetDataBase[] = [
3387
3387
  1: '0xCcE7D12f683c6dAe700154f0BAdf779C0bA1F89A',
3388
3388
  }
3389
3389
  },
3390
+ {
3391
+ ...assetProto,
3392
+ symbol: 'aEthWETH',
3393
+ name: 'Aave Ethereum WETH',
3394
+ underlyingAsset: 'WETH',
3395
+ decimals: 18,
3396
+ nativeChainId: 1,
3397
+ exchange: false,
3398
+ addresses: {
3399
+ 1: '0x4d5F47FA6A74757f35C14fD3a6Ef8E3C9BC514E8'
3400
+ }
3401
+ },
3402
+ {
3403
+ ...assetProto,
3404
+ symbol: 'aEthUSDC',
3405
+ name: 'Aave Ethereum USDC',
3406
+ underlyingAsset: 'USDC',
3407
+ decimals: 18,
3408
+ nativeChainId: 1,
3409
+ exchange: false,
3410
+ addresses: {
3411
+ 1: '0x98C23E9d8f34FEFb1B7BD6a91B7FF122F4e16F5c'
3412
+ }
3413
+ },
3414
+ {
3415
+ ...assetProto,
3416
+ symbol: 'aEthUSDT',
3417
+ name: 'Aave Ethereum USDT',
3418
+ underlyingAsset: 'USDT',
3419
+ decimals: 18,
3420
+ nativeChainId: 1,
3421
+ exchange: false,
3422
+ addresses: {
3423
+ 1: '0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a'
3424
+ }
3425
+ },
3426
+ {
3427
+ ...assetProto,
3428
+ symbol: 'FBTC',
3429
+ name: 'Fire Bitcoin',
3430
+ decimals: 8,
3431
+ nativeChainId: 1,
3432
+ exchange: true,
3433
+ addresses: {
3434
+ 1: '0xC96dE26018A54D51c097160568752c4E3BD6C364'
3435
+ }
3436
+ },
3390
3437
  ];