eth-chainlist 0.0.85 → 0.0.87
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 +115 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.87 (2023-02-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.86 ([49bb1fd](https://github.com/poowf/eth-chainlist/commit/49bb1fd852dfb8de664bfa68db85b39656a4a65c))
|
9
|
+
* update chain data ([9d81aeb](https://github.com/poowf/eth-chainlist/commit/9d81aeb803867313dd9678c92d44625998f702ca))
|
10
|
+
|
11
|
+
### 0.0.86 (2023-02-24)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.85 ([4b3bc35](https://github.com/poowf/eth-chainlist/commit/4b3bc358f0be7f489d32145ba4a28a2fec7a4798))
|
17
|
+
* update chain data ([2bdeeaa](https://github.com/poowf/eth-chainlist/commit/2bdeeaaac9ed28d9094fabc2d11f51e43168ce5c))
|
18
|
+
|
3
19
|
### 0.0.85 (2023-02-23)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5787,6 +5787,28 @@ const chainArray = [
|
|
5787
5787
|
chainId: 1657,
|
5788
5788
|
networkId: 1657
|
5789
5789
|
},
|
5790
|
+
{
|
5791
|
+
name: 'Horizen Yuma Testnet',
|
5792
|
+
shortName: 'Yuma',
|
5793
|
+
chain: 'Yuma',
|
5794
|
+
icon: 'eon',
|
5795
|
+
rpc: [ 'https://yuma-testnet.horizenlabs.io/ethv1' ],
|
5796
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5797
|
+
faucets: [ 'https://yuma-testnet-faucet.horizen.io' ],
|
5798
|
+
nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
|
5799
|
+
infoURL: 'https://horizen.io/',
|
5800
|
+
chainId: 1662,
|
5801
|
+
networkId: 1662,
|
5802
|
+
slip44: 121,
|
5803
|
+
explorers: [
|
5804
|
+
{
|
5805
|
+
name: 'Yuma Testnet Block Explorer',
|
5806
|
+
url: 'https://yuma-explorer.horizen.io',
|
5807
|
+
icon: 'eon',
|
5808
|
+
standard: 'EIP3091'
|
5809
|
+
}
|
5810
|
+
]
|
5811
|
+
},
|
5790
5812
|
{
|
5791
5813
|
name: 'LUDAN Mainnet',
|
5792
5814
|
chain: 'LUDAN',
|
@@ -6000,6 +6022,44 @@ const chainArray = [
|
|
6000
6022
|
}
|
6001
6023
|
]
|
6002
6024
|
},
|
6025
|
+
{
|
6026
|
+
name: 'Bitcichain Mainnet',
|
6027
|
+
chain: 'BITCI',
|
6028
|
+
icon: 'bitci',
|
6029
|
+
rpc: [ 'https://rpc.bitci.com' ],
|
6030
|
+
faucets: [],
|
6031
|
+
nativeCurrency: { name: 'Bitci', symbol: 'BITCI', decimals: 18 },
|
6032
|
+
infoURL: 'https://www.bitcichain.com',
|
6033
|
+
shortName: 'bitci',
|
6034
|
+
chainId: 1907,
|
6035
|
+
networkId: 1907,
|
6036
|
+
explorers: [
|
6037
|
+
{
|
6038
|
+
name: 'Bitci Explorer',
|
6039
|
+
url: 'https://bitciexplorer.com',
|
6040
|
+
standard: 'EIP3091'
|
6041
|
+
}
|
6042
|
+
]
|
6043
|
+
},
|
6044
|
+
{
|
6045
|
+
name: 'Bitcichain Testnet',
|
6046
|
+
chain: 'TBITCI',
|
6047
|
+
icon: 'bitci',
|
6048
|
+
rpc: [ 'https://testnet.bitcichain.com' ],
|
6049
|
+
faucets: [ 'https://faucet.bitcichain.com' ],
|
6050
|
+
nativeCurrency: { name: 'Test Bitci', symbol: 'TBITCI', decimals: 18 },
|
6051
|
+
infoURL: 'https://www.bitcichain.com',
|
6052
|
+
shortName: 'tbitci',
|
6053
|
+
chainId: 1908,
|
6054
|
+
networkId: 1908,
|
6055
|
+
explorers: [
|
6056
|
+
{
|
6057
|
+
name: 'Bitci Explorer Testnet',
|
6058
|
+
url: 'https://testnet.bitciexplorer.com',
|
6059
|
+
standard: 'EIP3091'
|
6060
|
+
}
|
6061
|
+
]
|
6062
|
+
},
|
6003
6063
|
{
|
6004
6064
|
name: 'ONUS Chain Testnet',
|
6005
6065
|
title: 'ONUS Chain Testnet',
|
@@ -6122,7 +6182,10 @@ const chainArray = [
|
|
6122
6182
|
{
|
6123
6183
|
name: 'edeXa Testnet',
|
6124
6184
|
chain: 'edeXa TestNetwork',
|
6125
|
-
rpc: [
|
6185
|
+
rpc: [
|
6186
|
+
'https://testnet.edexa.com/rpc',
|
6187
|
+
'https://io-dataseed1.testnet.edexa.io-market.com/rpc'
|
6188
|
+
],
|
6126
6189
|
faucets: [ 'https://faucet.edexa.com/' ],
|
6127
6190
|
nativeCurrency: { name: 'EDEXA', symbol: 'EDX', decimals: 18 },
|
6128
6191
|
infoURL: 'https://edexa.com/',
|
@@ -6732,6 +6795,19 @@ const chainArray = [
|
|
6732
6795
|
}
|
6733
6796
|
]
|
6734
6797
|
},
|
6798
|
+
{
|
6799
|
+
name: 'Arevia',
|
6800
|
+
chain: 'Arevia',
|
6801
|
+
rpc: [],
|
6802
|
+
faucets: [],
|
6803
|
+
nativeCurrency: { name: 'Arev', symbol: 'ARÉV', decimals: 18 },
|
6804
|
+
infoURL: '',
|
6805
|
+
shortName: 'arevia',
|
6806
|
+
chainId: 2309,
|
6807
|
+
networkId: 2309,
|
6808
|
+
explorers: [],
|
6809
|
+
status: 'incubating'
|
6810
|
+
},
|
6735
6811
|
{
|
6736
6812
|
name: 'Altcoinchain',
|
6737
6813
|
chain: 'mainnet',
|
@@ -7876,8 +7952,9 @@ const chainArray = [
|
|
7876
7952
|
]
|
7877
7953
|
},
|
7878
7954
|
{
|
7879
|
-
name: 'Hika
|
7880
|
-
|
7955
|
+
name: 'Hika Network Testnet',
|
7956
|
+
title: 'Hika Network Testnet',
|
7957
|
+
chain: 'HIK',
|
7881
7958
|
icon: 'hik',
|
7882
7959
|
rpc: [ 'https://rpc-testnet.hika.network/' ],
|
7883
7960
|
faucets: [],
|
@@ -8480,6 +8557,18 @@ const chainArray = [
|
|
8480
8557
|
chainId: 8285,
|
8481
8558
|
networkId: 8285
|
8482
8559
|
},
|
8560
|
+
{
|
8561
|
+
name: 'Base',
|
8562
|
+
chain: 'ETH',
|
8563
|
+
rpc: [],
|
8564
|
+
faucets: [],
|
8565
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
8566
|
+
infoURL: 'https://base.org',
|
8567
|
+
shortName: 'base',
|
8568
|
+
chainId: 8453,
|
8569
|
+
networkId: 8453,
|
8570
|
+
status: 'incubating'
|
8571
|
+
},
|
8483
8572
|
{
|
8484
8573
|
name: 'Toki Network',
|
8485
8574
|
chain: 'TOKI',
|
@@ -11340,6 +11429,29 @@ const chainArray = [
|
|
11340
11429
|
}
|
11341
11430
|
]
|
11342
11431
|
},
|
11432
|
+
{
|
11433
|
+
name: 'Base Goerli Testnet',
|
11434
|
+
chain: 'ETH',
|
11435
|
+
rpc: [ 'https://goerli.base.org' ],
|
11436
|
+
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
11437
|
+
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
11438
|
+
infoURL: 'https://base.org',
|
11439
|
+
shortName: 'basegor',
|
11440
|
+
chainId: 84531,
|
11441
|
+
networkId: 84531,
|
11442
|
+
explorers: [
|
11443
|
+
{
|
11444
|
+
name: 'basescan',
|
11445
|
+
url: 'https://goerli.basescan.org',
|
11446
|
+
standard: 'none'
|
11447
|
+
},
|
11448
|
+
{
|
11449
|
+
name: 'basescout',
|
11450
|
+
url: 'https://base-goerli.blockscout.com',
|
11451
|
+
standard: 'none'
|
11452
|
+
}
|
11453
|
+
]
|
11454
|
+
},
|
11343
11455
|
{
|
11344
11456
|
name: 'Chiliz Scoville Testnet',
|
11345
11457
|
chain: 'CHZ',
|