@subwallet/chain-list 0.2.80-beta.3 → 0.2.80-beta.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.
@@ -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.4'
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";
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.4",
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.4'
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";