eth-chainlist 0.0.162 → 0.0.163
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 +8 -0
- package/data/chain.js +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.163 (2023-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.162 ([49ccf48](https://github.com/poowf/eth-chainlist/commit/49ccf48cfc740acd5d8057a7c6eb87de6df53a77))
|
9
|
+
* update chain data ([08f8f79](https://github.com/poowf/eth-chainlist/commit/08f8f796a4bb161c382394ad401e02fddd186a81))
|
10
|
+
|
3
11
|
### 0.0.162 (2023-06-02)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -8270,6 +8270,25 @@ const chainArray = [
|
|
8270
8270
|
}
|
8271
8271
|
]
|
8272
8272
|
},
|
8273
|
+
{
|
8274
|
+
name: 'WhiteBIT Network Testnet',
|
8275
|
+
chain: 'WBT',
|
8276
|
+
rpc: [ 'https://rpc-testnet.whitebit.network' ],
|
8277
|
+
faucets: [ 'https://explorer.whitebit.network/testnet/faucet' ],
|
8278
|
+
nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
|
8279
|
+
infoURL: 'https://whitebit.com/wbt',
|
8280
|
+
shortName: 'twbt',
|
8281
|
+
chainId: 2625,
|
8282
|
+
networkId: 2625,
|
8283
|
+
icon: 'whitebit-testnet',
|
8284
|
+
explorers: [
|
8285
|
+
{
|
8286
|
+
name: 'wb-explorer-testnet',
|
8287
|
+
url: 'https://explorer.whitebit.network/testnet',
|
8288
|
+
standard: 'EIP3091'
|
8289
|
+
}
|
8290
|
+
]
|
8291
|
+
},
|
8273
8292
|
{
|
8274
8293
|
name: 'Boba Network Goerli Testnet',
|
8275
8294
|
chain: 'ETH',
|
@@ -14767,6 +14786,7 @@ const chainArray = [
|
|
14767
14786
|
{
|
14768
14787
|
name: 'Taiko (Alpha-2 Testnet)',
|
14769
14788
|
chain: 'ETH',
|
14789
|
+
status: 'deprecated',
|
14770
14790
|
icon: 'taiko',
|
14771
14791
|
rpc: [ 'https://rpc.a2.taiko.xyz' ],
|
14772
14792
|
faucets: [],
|
@@ -14783,6 +14803,26 @@ const chainArray = [
|
|
14783
14803
|
}
|
14784
14804
|
]
|
14785
14805
|
},
|
14806
|
+
{
|
14807
|
+
name: 'Taiko (Alpha-3 Testnet)',
|
14808
|
+
chain: 'ETH',
|
14809
|
+
status: 'active',
|
14810
|
+
icon: 'taiko',
|
14811
|
+
rpc: [ 'https://rpc.test.taiko.xyz' ],
|
14812
|
+
faucets: [],
|
14813
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14814
|
+
infoURL: 'https://taiko.xyz',
|
14815
|
+
shortName: 'taiko-a3',
|
14816
|
+
chainId: 167005,
|
14817
|
+
networkId: 167005,
|
14818
|
+
explorers: [
|
14819
|
+
{
|
14820
|
+
name: 'blockscout',
|
14821
|
+
url: 'https://explorer.test.taiko.xyz',
|
14822
|
+
standard: 'EIP3091'
|
14823
|
+
}
|
14824
|
+
]
|
14825
|
+
},
|
14786
14826
|
{
|
14787
14827
|
name: 'Condor Test Network',
|
14788
14828
|
chain: 'CONDOR',
|