@defisaver/tokens 1.7.11 → 1.7.12-dev-sena-2

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
@@ -1064,6 +1064,9 @@ exports.assets = [
1064
1064
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENA', name: 'Ethena', addresses: {
1065
1065
  1: "0x57e114B691Db790C35207b2e685D4A43181e6061",
1066
1066
  }, decimals: 18, exchange: false, isStable: false }),
1067
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sENA', name: 'Staked Ethena', addresses: {
1068
+ 1: "0x8bE3460A480c80728a8C4D7a5D5303c85ba7B3b9",
1069
+ }, decimals: 18, exchange: true, isStable: false }),
1067
1070
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FXN', name: 'f(x) Protocol', addresses: {
1068
1071
  1: fxnAddress,
1069
1072
  42161: fxnAddressArb,
package/esm/assets.js CHANGED
@@ -1061,6 +1061,9 @@ export const assets = [
1061
1061
  Object.assign(Object.assign({}, assetProto), { symbol: 'ENA', name: 'Ethena', addresses: {
1062
1062
  1: "0x57e114B691Db790C35207b2e685D4A43181e6061",
1063
1063
  }, decimals: 18, exchange: false, isStable: false }),
1064
+ Object.assign(Object.assign({}, assetProto), { symbol: 'sENA', name: 'Staked Ethena', addresses: {
1065
+ 1: "0x8bE3460A480c80728a8C4D7a5D5303c85ba7B3b9",
1066
+ }, decimals: 18, exchange: true, isStable: false }),
1064
1067
  Object.assign(Object.assign({}, assetProto), { symbol: 'FXN', name: 'f(x) Protocol', addresses: {
1065
1068
  1: fxnAddress,
1066
1069
  42161: fxnAddressArb,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.11",
3
+ "version": "1.7.12-dev-sena-2",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -2913,6 +2913,17 @@ export const assets: AssetDataBase[] = [
2913
2913
  exchange: false,
2914
2914
  isStable: false,
2915
2915
  },
2916
+ {
2917
+ ...assetProto,
2918
+ symbol: 'sENA',
2919
+ name: 'Staked Ethena',
2920
+ addresses: {
2921
+ 1: "0x8bE3460A480c80728a8C4D7a5D5303c85ba7B3b9",
2922
+ },
2923
+ decimals: 18,
2924
+ exchange: true,
2925
+ isStable: false,
2926
+ },
2916
2927
  {
2917
2928
  ...assetProto,
2918
2929
  symbol: 'FXN',