@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.
- package/bundle-subwallet-chain-list.js +2 -2
- package/cjs/data/ChainAsset.json +1 -1
- package/cjs/data/ChainInfo.json +1 -1
- package/cjs/packageInfo.js +1 -1
- package/cjs/types.js +1 -0
- package/data/ChainAsset.json +1 -1
- package/data/ChainInfo.json +1 -1
- package/package.json +1 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +8 -0
- package/types.js +1 -0
|
@@ -14495,7 +14495,7 @@
|
|
|
14495
14495
|
name: "Aleph Zero - EVM",
|
|
14496
14496
|
symbol: "AZERO",
|
|
14497
14497
|
decimals: 18,
|
|
14498
|
-
priceId:
|
|
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:
|
|
23948
|
+
blockExplorer: "https://aleph-zero-evm.blockscout.com/",
|
|
23949
23949
|
existentialDeposit: "0",
|
|
23950
23950
|
symbol: "AZERO",
|
|
23951
23951
|
decimals: 18,
|
package/cjs/data/ChainAsset.json
CHANGED
|
@@ -11838,7 +11838,7 @@
|
|
|
11838
11838
|
"name": "Aleph Zero - EVM",
|
|
11839
11839
|
"symbol": "AZERO",
|
|
11840
11840
|
"decimals": 18,
|
|
11841
|
-
"priceId":
|
|
11841
|
+
"priceId": "aleph-zero",
|
|
11842
11842
|
"minAmount": "0",
|
|
11843
11843
|
"assetType": "NATIVE",
|
|
11844
11844
|
"metadata": null,
|
package/cjs/data/ChainInfo.json
CHANGED
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/data/ChainAsset.json
CHANGED
|
@@ -11838,7 +11838,7 @@
|
|
|
11838
11838
|
"name": "Aleph Zero - EVM",
|
|
11839
11839
|
"symbol": "AZERO",
|
|
11840
11840
|
"decimals": 18,
|
|
11841
|
-
"priceId":
|
|
11841
|
+
"priceId": "aleph-zero",
|
|
11842
11842
|
"minAmount": "0",
|
|
11843
11843
|
"assetType": "NATIVE",
|
|
11844
11844
|
"metadata": null,
|
package/data/ChainInfo.json
CHANGED
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.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