@defisaver/tokens 1.7.32 → 1.7.34

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
@@ -1105,7 +1105,7 @@ exports.assets = [
1105
1105
  42161: "0x4186BFC76E2E237523CBC30FD220FE055156b41F",
1106
1106
  8453: "0x1Bc71130A0e39942a7658878169764Bbd8A45993"
1107
1107
  }, decimals: 18, exchange: true }),
1108
- Object.assign(Object.assign({}, exports.assetProto), { symbol: 'bsdETH', feedAvailability: { 8453: true }, name: 'Based ETH', addresses: {
1108
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'bsdETH', feedAvailability: { 8453: true }, name: 'Based ETH', nativeChainId: 8453, addresses: {
1109
1109
  8453: "0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff"
1110
1110
  }, decimals: 18, exchange: true }),
1111
1111
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'swBTC', feedAvailability: { 1: true }, name: 'Swell Restaked BTC', addresses: {
@@ -1359,7 +1359,7 @@ exports.assets = [
1359
1359
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDG', name: 'Global Dollar Network USDG', exchange: true, decimals: 6, addresses: {
1360
1360
  1: USDGAddress,
1361
1361
  }, isStable: true }),
1362
- Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1362
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, nativeChainId: 8453, addresses: {
1363
1363
  8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1364
1364
  }, isStable: false }),
1365
1365
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'frxUSD', name: 'Frax USD', exchange: true, decimals: 18, addresses: {
package/esm/assets.js CHANGED
@@ -1102,7 +1102,7 @@ export const assets = [
1102
1102
  42161: "0x4186BFC76E2E237523CBC30FD220FE055156b41F",
1103
1103
  8453: "0x1Bc71130A0e39942a7658878169764Bbd8A45993"
1104
1104
  }, decimals: 18, exchange: true }),
1105
- Object.assign(Object.assign({}, assetProto), { symbol: 'bsdETH', feedAvailability: { 8453: true }, name: 'Based ETH', addresses: {
1105
+ Object.assign(Object.assign({}, assetProto), { symbol: 'bsdETH', feedAvailability: { 8453: true }, name: 'Based ETH', nativeChainId: 8453, addresses: {
1106
1106
  8453: "0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff"
1107
1107
  }, decimals: 18, exchange: true }),
1108
1108
  Object.assign(Object.assign({}, assetProto), { symbol: 'swBTC', feedAvailability: { 1: true }, name: 'Swell Restaked BTC', addresses: {
@@ -1356,7 +1356,7 @@ export const assets = [
1356
1356
  Object.assign(Object.assign({}, assetProto), { symbol: 'USDG', name: 'Global Dollar Network USDG', exchange: true, decimals: 6, addresses: {
1357
1357
  1: USDGAddress,
1358
1358
  }, isStable: true }),
1359
- Object.assign(Object.assign({}, assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1359
+ Object.assign(Object.assign({}, assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, nativeChainId: 8453, addresses: {
1360
1360
  8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1361
1361
  }, isStable: false }),
1362
1362
  Object.assign(Object.assign({}, assetProto), { symbol: 'frxUSD', name: 'Frax USD', exchange: true, decimals: 18, addresses: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.32",
3
+ "version": "1.7.34",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -3022,6 +3022,7 @@ export const assets: AssetDataBase[] = [
3022
3022
  symbol: 'bsdETH',
3023
3023
  feedAvailability: { 8453: true },
3024
3024
  name: 'Based ETH',
3025
+ nativeChainId: 8453,
3025
3026
  addresses: {
3026
3027
  8453: "0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff"
3027
3028
  },
@@ -4037,6 +4038,7 @@ export const assets: AssetDataBase[] = [
4037
4038
  name: 'Aerodrome',
4038
4039
  exchange: true,
4039
4040
  decimals: 18,
4041
+ nativeChainId: 8453,
4040
4042
  addresses: {
4041
4043
  8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
4042
4044
  },