@defisaver/tokens 1.7.21 → 1.7.22

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
@@ -1318,4 +1318,7 @@ exports.assets = [
1318
1318
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDG', name: 'Global Dollar Network USDG', exchange: true, decimals: 6, addresses: {
1319
1319
  1: USDGAddress,
1320
1320
  }, isStable: true }),
1321
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1322
+ 8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1323
+ }, isStable: false }),
1321
1324
  ];
package/esm/assets.js CHANGED
@@ -1315,4 +1315,7 @@ export const assets = [
1315
1315
  Object.assign(Object.assign({}, assetProto), { symbol: 'USDG', name: 'Global Dollar Network USDG', exchange: true, decimals: 6, addresses: {
1316
1316
  1: USDGAddress,
1317
1317
  }, isStable: true }),
1318
+ Object.assign(Object.assign({}, assetProto), { symbol: 'AERO', name: 'Aerodrome', exchange: true, decimals: 18, addresses: {
1319
+ 8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
1320
+ }, isStable: false }),
1318
1321
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.21",
3
+ "version": "1.7.22",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -3840,4 +3840,15 @@ export const assets: AssetDataBase[] = [
3840
3840
  },
3841
3841
  isStable: true,
3842
3842
  },
3843
+ {
3844
+ ...assetProto,
3845
+ symbol: 'AERO',
3846
+ name: 'Aerodrome',
3847
+ exchange: true,
3848
+ decimals: 18,
3849
+ addresses: {
3850
+ 8453: '0x940181a94A35A4569E4529A3CDfB74e38FD98631',
3851
+ },
3852
+ isStable: false,
3853
+ },
3843
3854
  ];