eth-chainlist 0.0.83 → 0.0.84
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 +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.84 (2023-02-22)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.83 ([f5ee66e](https://github.com/poowf/eth-chainlist/commit/f5ee66e75960e6fc8f658c9be4e9a96e9624b069))
|
9
|
+
* update chain data ([02cd060](https://github.com/poowf/eth-chainlist/commit/02cd060e67e610c0bf80d8376056fdddb0785a7b))
|
10
|
+
|
3
11
|
### 0.0.83 (2023-02-21)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -1683,6 +1683,27 @@ const chainArray = [
|
|
1683
1683
|
}
|
1684
1684
|
]
|
1685
1685
|
},
|
1686
|
+
{
|
1687
|
+
name: 'Bitkub Chain',
|
1688
|
+
chain: 'BKC',
|
1689
|
+
icon: 'bkc',
|
1690
|
+
rpc: [ 'https://rpc.bitkubchain.io', 'wss://wss.bitkubchain.io' ],
|
1691
|
+
faucets: [],
|
1692
|
+
nativeCurrency: { name: 'Bitkub Coin', symbol: 'KUB', decimals: 18 },
|
1693
|
+
infoURL: 'https://www.bitkubchain.com/',
|
1694
|
+
shortName: 'bkc',
|
1695
|
+
chainId: 96,
|
1696
|
+
networkId: 96,
|
1697
|
+
explorers: [
|
1698
|
+
{
|
1699
|
+
name: 'Bitkub Chain Explorer',
|
1700
|
+
url: 'https://bkcscan.com',
|
1701
|
+
standard: 'none',
|
1702
|
+
icon: 'bkc'
|
1703
|
+
}
|
1704
|
+
],
|
1705
|
+
redFlags: [ 'reusedChainId' ]
|
1706
|
+
},
|
1686
1707
|
{
|
1687
1708
|
name: 'Binance Smart Chain Testnet',
|
1688
1709
|
chain: 'BSC',
|