@subwallet/chain-list 0.0.5 → 0.0.6
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 +12 -0
- package/cjs/packageInfo.js +1 -1
- package/data/ChainInfo.json +12 -0
- package/package.json +1 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +2 -0
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
slug: "polkadot",
|
|
11
11
|
name: "Polkadot Relay Chain",
|
|
12
12
|
logo: "./71.Polkadot.png",
|
|
13
|
+
isTestnet: false,
|
|
14
|
+
chainStatus: "ACTIVE",
|
|
13
15
|
providers: {
|
|
14
16
|
Parity: "wss://rpc.polkadot.io",
|
|
15
17
|
OnFinality: "wss://polkadot.api.onfinality.io/public-ws",
|
|
@@ -40,6 +42,8 @@
|
|
|
40
42
|
slug: "kusama",
|
|
41
43
|
name: "Kusama Relay Chain",
|
|
42
44
|
logo: "./72.Kusama.png",
|
|
45
|
+
isTestnet: false,
|
|
46
|
+
chainStatus: "ACTIVE",
|
|
43
47
|
providers: {
|
|
44
48
|
Parity: "wss://kusama-rpc.polkadot.io",
|
|
45
49
|
OnFinality: "wss://kusama.api.onfinality.io/public-ws",
|
|
@@ -70,6 +74,8 @@
|
|
|
70
74
|
slug: "moonbeam",
|
|
71
75
|
name: "Moonbeam",
|
|
72
76
|
logo: "./34.Moonbeam.png",
|
|
77
|
+
isTestnet: false,
|
|
78
|
+
chainStatus: "ACTIVE",
|
|
73
79
|
providers: {
|
|
74
80
|
"Moonbeam Foundation": "wss://wss.api.moonbeam.network",
|
|
75
81
|
OnFinality: "wss://moonbeam.api.onfinality.io/public-ws",
|
|
@@ -110,6 +116,8 @@
|
|
|
110
116
|
slug: "acala",
|
|
111
117
|
name: "Acala",
|
|
112
118
|
logo: "./34.Moonbeam.png",
|
|
119
|
+
isTestnet: false,
|
|
120
|
+
chainStatus: "ACTIVE",
|
|
113
121
|
providers: {
|
|
114
122
|
"Acala Foundation 0": "wss://acala-rpc-0.aca-api.network",
|
|
115
123
|
"Acala Foundation 1": "wss://acala-rpc-1.aca-api.network",
|
|
@@ -139,6 +147,8 @@
|
|
|
139
147
|
slug: "alephZeroTest",
|
|
140
148
|
name: "Aleph Zero Testnet",
|
|
141
149
|
logo: "./55.Aleph.png",
|
|
150
|
+
isTestnet: true,
|
|
151
|
+
chainStatus: "ACTIVE",
|
|
142
152
|
providers: {
|
|
143
153
|
"Aleph Zero Foundation": "wss://ws.test.azero.dev"
|
|
144
154
|
},
|
|
@@ -166,6 +176,8 @@
|
|
|
166
176
|
slug: "ethereum",
|
|
167
177
|
name: "Ethereum Mainnet",
|
|
168
178
|
logo: "./77.Ethereum.png",
|
|
179
|
+
isTestnet: false,
|
|
180
|
+
chainStatus: "ACTIVE",
|
|
169
181
|
providers: {
|
|
170
182
|
Cloudflare: "https://cloudflare-eth.com",
|
|
171
183
|
BlastApi: "https://eth-mainnet.public.blastapi.io",
|
package/cjs/packageInfo.js
CHANGED
package/data/ChainInfo.json
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
"slug": "polkadot",
|
|
4
4
|
"name": "Polkadot Relay Chain",
|
|
5
5
|
"logo": "./71.Polkadot.png",
|
|
6
|
+
"isTestnet": false,
|
|
7
|
+
"chainStatus": "ACTIVE",
|
|
6
8
|
"providers": {
|
|
7
9
|
"Parity": "wss://rpc.polkadot.io",
|
|
8
10
|
"OnFinality": "wss://polkadot.api.onfinality.io/public-ws",
|
|
@@ -35,6 +37,8 @@
|
|
|
35
37
|
"slug": "kusama",
|
|
36
38
|
"name": "Kusama Relay Chain",
|
|
37
39
|
"logo": "./72.Kusama.png",
|
|
40
|
+
"isTestnet": false,
|
|
41
|
+
"chainStatus": "ACTIVE",
|
|
38
42
|
"providers": {
|
|
39
43
|
"Parity": "wss://kusama-rpc.polkadot.io",
|
|
40
44
|
"OnFinality": "wss://kusama.api.onfinality.io/public-ws",
|
|
@@ -67,6 +71,8 @@
|
|
|
67
71
|
"slug": "moonbeam",
|
|
68
72
|
"name": "Moonbeam",
|
|
69
73
|
"logo": "./34.Moonbeam.png",
|
|
74
|
+
"isTestnet": false,
|
|
75
|
+
"chainStatus": "ACTIVE",
|
|
70
76
|
"providers": {
|
|
71
77
|
"Moonbeam Foundation": "wss://wss.api.moonbeam.network",
|
|
72
78
|
"OnFinality": "wss://moonbeam.api.onfinality.io/public-ws",
|
|
@@ -108,6 +114,8 @@
|
|
|
108
114
|
"slug": "acala",
|
|
109
115
|
"name": "Acala",
|
|
110
116
|
"logo": "./34.Moonbeam.png",
|
|
117
|
+
"isTestnet": false,
|
|
118
|
+
"chainStatus": "ACTIVE",
|
|
111
119
|
"providers": {
|
|
112
120
|
"Acala Foundation 0": "wss://acala-rpc-0.aca-api.network",
|
|
113
121
|
"Acala Foundation 1": "wss://acala-rpc-1.aca-api.network",
|
|
@@ -139,6 +147,8 @@
|
|
|
139
147
|
"slug": "alephZeroTest",
|
|
140
148
|
"name": "Aleph Zero Testnet",
|
|
141
149
|
"logo": "./55.Aleph.png",
|
|
150
|
+
"isTestnet": true,
|
|
151
|
+
"chainStatus": "ACTIVE",
|
|
142
152
|
"providers": {
|
|
143
153
|
"Aleph Zero Foundation": "wss://ws.test.azero.dev"
|
|
144
154
|
},
|
|
@@ -166,6 +176,8 @@
|
|
|
166
176
|
"slug": "ethereum",
|
|
167
177
|
"name": "Ethereum Mainnet",
|
|
168
178
|
"logo": "./77.Ethereum.png",
|
|
179
|
+
"isTestnet": false,
|
|
180
|
+
"chainStatus": "ACTIVE",
|
|
169
181
|
"providers": {
|
|
170
182
|
"Cloudflare": "https://cloudflare-eth.com",
|
|
171
183
|
"BlastApi": "https://eth-mainnet.public.blastapi.io",
|
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.0.
|
|
10
|
+
version: '0.0.6'
|
|
11
11
|
};
|
package/types.d.ts
CHANGED