@subwallet/chain-list 0.2.80-beta.3 → 0.2.80-beta.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.
@@ -14495,7 +14495,7 @@
14495
14495
  name: "Aleph Zero - EVM",
14496
14496
  symbol: "AZERO",
14497
14497
  decimals: 18,
14498
- priceId: null,
14498
+ priceId: "aleph-zero",
14499
14499
  minAmount: "0",
14500
14500
  assetType: "NATIVE",
14501
14501
  metadata: null,
@@ -23945,7 +23945,7 @@
23945
23945
  },
23946
23946
  evmInfo: {
23947
23947
  evmChainId: 41455,
23948
- blockExplorer: null,
23948
+ blockExplorer: "https://aleph-zero-evm.blockscout.com/",
23949
23949
  existentialDeposit: "0",
23950
23950
  symbol: "AZERO",
23951
23951
  decimals: 18,
@@ -11838,7 +11838,7 @@
11838
11838
  "name": "Aleph Zero - EVM",
11839
11839
  "symbol": "AZERO",
11840
11840
  "decimals": 18,
11841
- "priceId": null,
11841
+ "priceId": "aleph-zero",
11842
11842
  "minAmount": "0",
11843
11843
  "assetType": "NATIVE",
11844
11844
  "metadata": null,
@@ -9292,7 +9292,7 @@
9292
9292
  },
9293
9293
  "evmInfo": {
9294
9294
  "evmChainId": 41455,
9295
- "blockExplorer": null,
9295
+ "blockExplorer": "https://aleph-zero-evm.blockscout.com/",
9296
9296
  "existentialDeposit": "0",
9297
9297
  "symbol": "AZERO",
9298
9298
  "decimals": 18,
@@ -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.2.80-beta.3'
16
+ version: '0.2.80-beta.5'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
package/cjs/types.js CHANGED
@@ -31,6 +31,7 @@ exports._AssetType = _AssetType;
31
31
  _AssetType["PSP34"] = "PSP34";
32
32
  _AssetType["GRC20"] = "GRC20";
33
33
  _AssetType["VFT"] = "VFT";
34
+ _AssetType["TEP74"] = "TEP74";
34
35
  _AssetType["GRC721"] = "GRC721";
35
36
  _AssetType["RUNE"] = "RUNE";
36
37
  _AssetType["BRC20"] = "BRC20";
@@ -11838,7 +11838,7 @@
11838
11838
  "name": "Aleph Zero - EVM",
11839
11839
  "symbol": "AZERO",
11840
11840
  "decimals": 18,
11841
- "priceId": null,
11841
+ "priceId": "aleph-zero",
11842
11842
  "minAmount": "0",
11843
11843
  "assetType": "NATIVE",
11844
11844
  "metadata": null,
@@ -9292,7 +9292,7 @@
9292
9292
  },
9293
9293
  "evmInfo": {
9294
9294
  "evmChainId": 41455,
9295
- "blockExplorer": null,
9295
+ "blockExplorer": "https://aleph-zero-evm.blockscout.com/",
9296
9296
  "existentialDeposit": "0",
9297
9297
  "symbol": "AZERO",
9298
9298
  "decimals": 18,
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "./cjs/detectPackage.js"
21
21
  ],
22
22
  "type": "module",
23
- "version": "0.2.80-beta.3",
23
+ "version": "0.2.80-beta.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.2.80-beta.3'
10
+ version: '0.2.80-beta.5'
11
11
  };
package/types.d.ts CHANGED
@@ -25,6 +25,7 @@ export declare enum _AssetType {
25
25
  PSP34 = "PSP34",
26
26
  GRC20 = "GRC20",
27
27
  VFT = "VFT",
28
+ TEP74 = "TEP74",
28
29
  GRC721 = "GRC721",
29
30
  RUNE = "RUNE",
30
31
  BRC20 = "BRC20",
@@ -44,6 +45,7 @@ export interface _ChainInfo {
44
45
  evmInfo: _EvmInfo | null;
45
46
  bitcoinInfo: _BitcoinInfo | null;
46
47
  extraInfo: _ExtraInfo | null;
48
+ tonInfo: _TonInfo | null;
47
49
  icon: string;
48
50
  }
49
51
  export interface _ChainAsset {
@@ -90,6 +92,12 @@ export interface _BitcoinInfo {
90
92
  symbol: string;
91
93
  bitcoinNetwork: BitcoinNetworkMode;
92
94
  }
95
+ export interface _TonInfo {
96
+ blockExplorer: string | null;
97
+ existentialDeposit: string;
98
+ decimals: number;
99
+ symbol: string;
100
+ }
93
101
  export interface _ExtraInfo {
94
102
  subscanSlug: string | null;
95
103
  chainBalanceSlug: string | null;
package/types.js CHANGED
@@ -23,6 +23,7 @@ export let _AssetType;
23
23
  _AssetType["PSP34"] = "PSP34";
24
24
  _AssetType["GRC20"] = "GRC20";
25
25
  _AssetType["VFT"] = "VFT";
26
+ _AssetType["TEP74"] = "TEP74";
26
27
  _AssetType["GRC721"] = "GRC721";
27
28
  _AssetType["RUNE"] = "RUNE";
28
29
  _AssetType["BRC20"] = "BRC20";