@defisaver/tokens 1.7.3 → 1.7.4

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
@@ -1260,4 +1260,10 @@ exports.assets = [
1260
1260
  1: '0x1789e0043623282D5DCc7F213d703C6D8BAfBB04',
1261
1261
  59144: '0x1789e0043623282d5dcc7f213d703c6d8bafbb04',
1262
1262
  } }),
1263
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'XPL', feedAvailability: { 9745: true }, name: 'XPL', decimals: 18, exchange: true, nativeChainId: 9745, addresses: {
1264
+ 9745: ETHAddress,
1265
+ } }),
1266
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'WXPL', feedAvailability: { 9745: true }, name: 'Wrapped XPL', decimals: 18, exchange: true, nativeChainId: 9745, addresses: {
1267
+ 9745: '0x6100E367285b01F48D07953803A2d8dCA5D19873',
1268
+ } }),
1263
1269
  ];
package/esm/assets.js CHANGED
@@ -1257,4 +1257,10 @@ export const assets = [
1257
1257
  1: '0x1789e0043623282D5DCc7F213d703C6D8BAfBB04',
1258
1258
  59144: '0x1789e0043623282d5dcc7f213d703c6d8bafbb04',
1259
1259
  } }),
1260
+ Object.assign(Object.assign({}, assetProto), { symbol: 'XPL', feedAvailability: { 9745: true }, name: 'XPL', decimals: 18, exchange: true, nativeChainId: 9745, addresses: {
1261
+ 9745: ETHAddress,
1262
+ } }),
1263
+ Object.assign(Object.assign({}, assetProto), { symbol: 'WXPL', feedAvailability: { 9745: true }, name: 'Wrapped XPL', decimals: 18, exchange: true, nativeChainId: 9745, addresses: {
1264
+ 9745: '0x6100E367285b01F48D07953803A2d8dCA5D19873',
1265
+ } }),
1260
1266
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -3630,4 +3630,28 @@ export const assets: AssetDataBase[] = [
3630
3630
  59144: '0x1789e0043623282d5dcc7f213d703c6d8bafbb04',
3631
3631
  }
3632
3632
  },
3633
+ {
3634
+ ...assetProto,
3635
+ symbol: 'XPL',
3636
+ feedAvailability: { 9745: true },
3637
+ name: 'XPL',
3638
+ decimals: 18,
3639
+ exchange: true,
3640
+ nativeChainId: 9745,
3641
+ addresses: {
3642
+ 9745: ETHAddress,
3643
+ },
3644
+ },
3645
+ {
3646
+ ...assetProto,
3647
+ symbol: 'WXPL',
3648
+ feedAvailability: { 9745: true },
3649
+ name: 'Wrapped XPL',
3650
+ decimals: 18,
3651
+ exchange: true,
3652
+ nativeChainId: 9745,
3653
+ addresses: {
3654
+ 9745: '0x6100E367285b01F48D07953803A2d8dCA5D19873',
3655
+ },
3656
+ },
3633
3657
  ];