@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.
- package/cjs/packageInfo.js +1 -1
- package/cjs/types.js +1 -0
- package/package.json +1 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +8 -0
- package/types.js +1 -0
package/cjs/packageInfo.js
CHANGED
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
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.
|
|
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