@subwallet/chain-list 0.0.2 → 0.0.3

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.
@@ -30,6 +30,7 @@
30
30
  symbol: "DOT",
31
31
  existentialDeposit: "10000000000",
32
32
  decimals: 10,
33
+ hasNativeNft: false,
33
34
  supportStaking: true,
34
35
  supportSmartContract: null
35
36
  },
@@ -59,6 +60,7 @@
59
60
  symbol: "KSM",
60
61
  existentialDeposit: "333333333",
61
62
  decimals: 12,
63
+ hasNativeNft: true,
62
64
  supportStaking: true,
63
65
  supportSmartContract: null
64
66
  },
@@ -87,6 +89,7 @@
87
89
  symbol: "GLMR",
88
90
  existentialDeposit: "0",
89
91
  decimals: 18,
92
+ hasNativeNft: true,
90
93
  supportStaking: true,
91
94
  supportSmartContract: null
92
95
  },
@@ -127,6 +130,7 @@
127
130
  symbol: "ACA",
128
131
  existentialDeposit: "100000000000",
129
132
  decimals: 12,
133
+ hasNativeNft: true,
130
134
  supportStaking: false,
131
135
  supportSmartContract: null
132
136
  }
@@ -140,20 +144,21 @@
140
144
  },
141
145
  substrateInfo: {
142
146
  paraId: null,
143
- relayId: null,
147
+ relaySlug: null,
144
148
  genesisHash: "0x05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5",
145
149
  addressPrefix: 42,
146
150
  crowdloanUrl: null,
147
151
  chainType: "RELAYCHAIN",
148
- supportStaking: true,
149
152
  blockExplorer: null,
150
153
  symbol: "TZERO",
151
154
  existentialDeposit: "500",
152
155
  decimals: 12,
156
+ hasNativeNft: false,
153
157
  supportSmartContract: [
154
158
  "PSP34",
155
159
  "PSP22"
156
- ]
160
+ ],
161
+ supportStaking: true
157
162
  },
158
163
  evmInfo: null
159
164
  };
@@ -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.2'
16
+ version: '0.0.3'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
@@ -25,6 +25,7 @@
25
25
  "existentialDeposit": "10000000000",
26
26
  "decimals": 10,
27
27
 
28
+ "hasNativeNft": false,
28
29
  "supportStaking": true,
29
30
  "supportSmartContract": null
30
31
  },
@@ -56,6 +57,7 @@
56
57
  "existentialDeposit": "333333333",
57
58
  "decimals": 12,
58
59
 
60
+ "hasNativeNft": true,
59
61
  "supportStaking": true,
60
62
  "supportSmartContract": null
61
63
  },
@@ -86,6 +88,7 @@
86
88
  "existentialDeposit": "0",
87
89
  "decimals": 18,
88
90
 
91
+ "hasNativeNft": true,
89
92
  "supportStaking": true,
90
93
  "supportSmartContract": null
91
94
  },
@@ -127,6 +130,7 @@
127
130
  "existentialDeposit": "100000000000",
128
131
  "decimals": 12,
129
132
 
133
+ "hasNativeNft": true,
130
134
  "supportStaking": false,
131
135
  "supportSmartContract": null
132
136
  }
@@ -140,19 +144,21 @@
140
144
  },
141
145
  "substrateInfo": {
142
146
  "paraId": null,
143
- "relayId": null,
147
+ "relaySlug": null,
144
148
  "genesisHash": "0x05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5",
145
149
  "addressPrefix": 42,
146
150
  "crowdloanUrl": null,
147
151
  "chainType": "RELAYCHAIN",
148
- "supportStaking": true,
152
+
149
153
  "blockExplorer": null,
150
154
 
151
155
  "symbol": "TZERO",
152
156
  "existentialDeposit": "500",
153
157
  "decimals": 12,
154
158
 
155
- "supportSmartContract": ["PSP34", "PSP22"]
159
+ "hasNativeNft": false,
160
+ "supportSmartContract": ["PSP34", "PSP22"],
161
+ "supportStaking": true
156
162
  },
157
163
  "evmInfo": null
158
164
  },
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "./cjs/detectPackage.js"
21
21
  ],
22
22
  "type": "module",
23
- "version": "0.0.2",
23
+ "version": "0.0.3",
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.2'
10
+ version: '0.0.3'
11
11
  };
package/types.d.ts CHANGED
@@ -69,7 +69,7 @@ export interface _SubstrateInfo {
69
69
  existentialDeposit: string;
70
70
  decimals: number;
71
71
  symbol: string;
72
- supportNft: boolean;
72
+ hasNativeNft: boolean;
73
73
  supportStaking: boolean;
74
74
  supportSmartContract: _AssetType[] | null;
75
75
  }