eth-chainlist 0.0.18 → 0.0.20
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/CHANGELOG.md +16 -0
- package/data/chain.js +41 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.20 (2022-11-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.19 ([27fc7c8](https://github.com/poowf/eth-chainlist/commit/27fc7c83f6d3c65e9bf9c4541b2d2e37f8f406a0))
|
|
9
|
+
* update chain data ([187a5de](https://github.com/poowf/eth-chainlist/commit/187a5de2b05eb805159fc68dc4526f9bcc09b293))
|
|
10
|
+
|
|
11
|
+
### 0.0.19 (2022-11-26)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.18 ([66d839d](https://github.com/poowf/eth-chainlist/commit/66d839da7b53f9c695503467615a32c3e5be5392))
|
|
17
|
+
* update chain data ([a46b599](https://github.com/poowf/eth-chainlist/commit/a46b5994de6d228756ca4de37d9fb06e11f54f2e))
|
|
18
|
+
|
|
3
19
|
### 0.0.18 (2022-11-25)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2071,6 +2071,7 @@ const chainArray = [
|
|
|
2071
2071
|
{
|
|
2072
2072
|
name: 'Polygon Mainnet',
|
|
2073
2073
|
chain: 'Polygon',
|
|
2074
|
+
icon: 'polygon',
|
|
2074
2075
|
rpc: [
|
|
2075
2076
|
'https://polygon-rpc.com/',
|
|
2076
2077
|
'https://rpc-mainnet.matic.network',
|
|
@@ -2128,7 +2129,7 @@ const chainArray = [
|
|
|
2128
2129
|
{
|
|
2129
2130
|
name: 'PHI Network v2',
|
|
2130
2131
|
chain: 'PHI',
|
|
2131
|
-
rpc: [ 'https://connect.phi.network'
|
|
2132
|
+
rpc: [ 'https://connect.phi.network' ],
|
|
2132
2133
|
faucets: [],
|
|
2133
2134
|
nativeCurrency: { name: 'PHI', symbol: 'Φ', decimals: 18 },
|
|
2134
2135
|
infoURL: 'https://phi.network',
|
|
@@ -3010,6 +3011,23 @@ const chainArray = [
|
|
|
3010
3011
|
}
|
|
3011
3012
|
]
|
|
3012
3013
|
},
|
|
3014
|
+
{
|
|
3015
|
+
name: 'Gear Zero Network Mainnet',
|
|
3016
|
+
chain: 'GearZero',
|
|
3017
|
+
rpc: [ 'https://gzn.linksme.info' ],
|
|
3018
|
+
faucets: [],
|
|
3019
|
+
nativeCurrency: {
|
|
3020
|
+
name: 'Gear Zero Network Native Token',
|
|
3021
|
+
symbol: 'GZN',
|
|
3022
|
+
decimals: 18
|
|
3023
|
+
},
|
|
3024
|
+
infoURL: 'https://token.gearzero.ca/mainnet',
|
|
3025
|
+
shortName: 'gz-mainnet',
|
|
3026
|
+
chainId: 516,
|
|
3027
|
+
networkId: 516,
|
|
3028
|
+
slip44: 516,
|
|
3029
|
+
explorers: []
|
|
3030
|
+
},
|
|
3013
3031
|
{
|
|
3014
3032
|
name: 'XT Smart Chain Mainnet',
|
|
3015
3033
|
chain: 'XSC',
|
|
@@ -5306,7 +5324,7 @@ const chainArray = [
|
|
|
5306
5324
|
{
|
|
5307
5325
|
name: 'Bitcoin EVM',
|
|
5308
5326
|
chain: 'Bitcoin EVM',
|
|
5309
|
-
rpc: [ 'https://connect.bitcoinevm.com'
|
|
5327
|
+
rpc: [ 'https://connect.bitcoinevm.com' ],
|
|
5310
5328
|
faucets: [],
|
|
5311
5329
|
nativeCurrency: { name: 'Bitcoin', symbol: 'eBTC', decimals: 18 },
|
|
5312
5330
|
infoURL: 'https://bitcoinevm.com',
|
|
@@ -6314,7 +6332,7 @@ const chainArray = [
|
|
|
6314
6332
|
parent: {
|
|
6315
6333
|
type: 'L2',
|
|
6316
6334
|
chain: 'eip155-250',
|
|
6317
|
-
bridges: [ { url: 'https://
|
|
6335
|
+
bridges: [ { url: 'https://lif3.com/bridge' } ]
|
|
6318
6336
|
}
|
|
6319
6337
|
},
|
|
6320
6338
|
{
|
|
@@ -7949,6 +7967,7 @@ const chainArray = [
|
|
|
7949
7967
|
{
|
|
7950
7968
|
name: 'Avalanche Fuji Testnet',
|
|
7951
7969
|
chain: 'AVAX',
|
|
7970
|
+
icon: 'avax',
|
|
7952
7971
|
rpc: [ 'https://api.avax-test.network/ext/bc/C/rpc' ],
|
|
7953
7972
|
faucets: [ 'https://faucet.avax-test.network/' ],
|
|
7954
7973
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
|
@@ -7967,6 +7986,7 @@ const chainArray = [
|
|
|
7967
7986
|
{
|
|
7968
7987
|
name: 'Avalanche C-Chain',
|
|
7969
7988
|
chain: 'AVAX',
|
|
7989
|
+
icon: 'avax',
|
|
7970
7990
|
rpc: [ 'https://api.avax.network/ext/bc/C/rpc' ],
|
|
7971
7991
|
features: [ { name: 'EIP1559' } ],
|
|
7972
7992
|
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
|
|
@@ -8582,6 +8602,7 @@ const chainArray = [
|
|
|
8582
8602
|
name: 'Mumbai',
|
|
8583
8603
|
title: 'Polygon Testnet Mumbai',
|
|
8584
8604
|
chain: 'Polygon',
|
|
8605
|
+
icon: 'polygon',
|
|
8585
8606
|
rpc: [
|
|
8586
8607
|
'https://matic-mumbai.chainstacklabs.com',
|
|
8587
8608
|
'https://rpc-mumbai.maticvigil.com',
|
|
@@ -9366,6 +9387,23 @@ const chainArray = [
|
|
|
9366
9387
|
}
|
|
9367
9388
|
]
|
|
9368
9389
|
},
|
|
9390
|
+
{
|
|
9391
|
+
name: 'Gear Zero Network Testnet',
|
|
9392
|
+
chain: 'GearZero',
|
|
9393
|
+
rpc: [ 'https://gzn-test.linksme.info' ],
|
|
9394
|
+
faucets: [],
|
|
9395
|
+
nativeCurrency: {
|
|
9396
|
+
name: 'Gear Zero Network Native Token',
|
|
9397
|
+
symbol: 'GZN',
|
|
9398
|
+
decimals: 18
|
|
9399
|
+
},
|
|
9400
|
+
infoURL: 'https://token.gearzero.ca/testnet',
|
|
9401
|
+
shortName: 'gz-testnet',
|
|
9402
|
+
chainId: 266256,
|
|
9403
|
+
networkId: 266256,
|
|
9404
|
+
slip44: 266256,
|
|
9405
|
+
explorers: []
|
|
9406
|
+
},
|
|
9369
9407
|
{
|
|
9370
9408
|
name: 'Social Smart Chain Mainnet',
|
|
9371
9409
|
chain: 'SoChain',
|