@subwallet/chain-list 0.0.4 → 0.0.5

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.
@@ -371,14 +371,14 @@
371
371
  const _MultiChainAssetMap = {
372
372
  "DOT-Polkadot": {
373
373
  slug: "DOT-Polkadot",
374
- originChainAsset: 1,
374
+ originChainAsset: "polkadot-NATIVE-DOT",
375
375
  name: "Polkadot",
376
376
  symbol: "DOT",
377
377
  priceId: "polkadot"
378
378
  },
379
379
  "KSM-Kusama": {
380
380
  slug: "KSM-Kusama",
381
- originChainAsset: 2,
381
+ originChainAsset: "kusama-NATIVE-KSM",
382
382
  name: "Kusama",
383
383
  symbol: "KSM",
384
384
  priceId: "kusama"
@@ -406,7 +406,7 @@
406
406
  },
407
407
  "ETH-Ethereum": {
408
408
  slug: "ETH-Ethereum",
409
- originChainAsset: null,
409
+ originChainAsset: "ethereum-NATIVE-ETH",
410
410
  name: "Ethereum",
411
411
  symbol: "ETH",
412
412
  priceId: "ethereum"
@@ -13,6 +13,6 @@ const packageInfo = {
13
13
  name: '@subwallet/chain-list',
14
14
  path: typeof __dirname === 'string' ? __dirname : 'auto',
15
15
  type: 'cjs',
16
- version: '0.0.4'
16
+ version: '0.0.5'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "DOT-Polkadot": {
3
3
  "slug": "DOT-Polkadot",
4
- "originChainAsset": 1,
4
+ "originChainAsset": "polkadot-NATIVE-DOT",
5
5
  "name": "Polkadot",
6
6
  "symbol": "DOT",
7
7
  "priceId": "polkadot"
8
8
  },
9
9
  "KSM-Kusama": {
10
10
  "slug": "KSM-Kusama",
11
- "originChainAsset": 2,
11
+ "originChainAsset": "kusama-NATIVE-KSM",
12
12
  "name": "Kusama",
13
13
  "symbol": "KSM",
14
14
  "priceId": "kusama"
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "ETH-Ethereum": {
38
38
  "slug": "ETH-Ethereum",
39
- "originChainAsset": null,
39
+ "originChainAsset": "ethereum-NATIVE-ETH",
40
40
  "name": "Ethereum",
41
41
  "symbol": "ETH",
42
42
  "priceId": "ethereum"
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "./cjs/detectPackage.js"
21
21
  ],
22
22
  "type": "module",
23
- "version": "0.0.4",
23
+ "version": "0.0.5",
24
24
  "main": "./cjs/index.js",
25
25
  "module": "./index.js",
26
26
  "types": "./index.d.ts",
package/packageInfo.js CHANGED
@@ -7,5 +7,5 @@ export const packageInfo = {
7
7
  name: '@subwallet/chain-list',
8
8
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
9
9
  type: 'esm',
10
- version: '0.0.4'
10
+ version: '0.0.5'
11
11
  };