eth-chainlist 0.0.168 → 0.0.169
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 +30 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.169 (2023-06-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.168 ([ea5f26e](https://github.com/poowf/eth-chainlist/commit/ea5f26eecfdf471973ca75f83883c88aa4355493))
|
9
|
+
* update chain data ([ac0d751](https://github.com/poowf/eth-chainlist/commit/ac0d7519373640abd827785297209631a136d7e4))
|
10
|
+
|
3
11
|
### 0.0.168 (2023-06-13)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2633,6 +2633,25 @@ const chainArray = [
|
|
2633
2633
|
chainId: 163,
|
2634
2634
|
networkId: 163
|
2635
2635
|
},
|
2636
|
+
{
|
2637
|
+
name: 'Omni Testnet 1',
|
2638
|
+
chain: 'Omni',
|
2639
|
+
rpc: [ 'https://testnet-1.omni.network' ],
|
2640
|
+
features: [ { name: 'EIP155' } ],
|
2641
|
+
faucets: [],
|
2642
|
+
nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
|
2643
|
+
infoURL: 'https://docs.omni.network/',
|
2644
|
+
shortName: 'omni_testnet',
|
2645
|
+
chainId: 165,
|
2646
|
+
networkId: 165,
|
2647
|
+
explorers: [
|
2648
|
+
{
|
2649
|
+
name: 'Omni Explorer',
|
2650
|
+
url: 'https://testnet-1.explorer.omni.network',
|
2651
|
+
standard: 'EIP3091'
|
2652
|
+
}
|
2653
|
+
]
|
2654
|
+
},
|
2636
2655
|
{
|
2637
2656
|
name: 'Atoshi Testnet',
|
2638
2657
|
chain: 'ATOSHI',
|
@@ -7698,6 +7717,17 @@ const chainArray = [
|
|
7698
7717
|
chainId: 2043,
|
7699
7718
|
networkId: 2043
|
7700
7719
|
},
|
7720
|
+
{
|
7721
|
+
name: 'Shrapnel Subnet',
|
7722
|
+
chain: 'shrapnel',
|
7723
|
+
rpc: [ 'https://subnets.avax.network/shrapnel/mainnet/rpc' ],
|
7724
|
+
faucets: [],
|
7725
|
+
nativeCurrency: { name: 'Shrapnel Gas Token', symbol: 'SHRAPG', decimals: 18 },
|
7726
|
+
infoURL: 'https://www.shrapnel.com/',
|
7727
|
+
shortName: 'Shrapnel',
|
7728
|
+
chainId: 2044,
|
7729
|
+
networkId: 2044
|
7730
|
+
},
|
7701
7731
|
{
|
7702
7732
|
name: 'Stratos Testnet',
|
7703
7733
|
chain: 'STOS',
|