eth-chainlist 0.0.167 → 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 +16 -0
- package/data/chain.js +37 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
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
|
+
|
11
|
+
### 0.0.168 (2023-06-13)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.167 ([d4b8e09](https://github.com/poowf/eth-chainlist/commit/d4b8e0991ee1da78262c1517da7a7cf39005d42d))
|
17
|
+
* update chain data ([162694a](https://github.com/poowf/eth-chainlist/commit/162694a4780cd3c8fff264081e868330e0fa8751))
|
18
|
+
|
3
19
|
### 0.0.167 (2023-06-10)
|
4
20
|
|
5
21
|
|
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',
|
@@ -8712,19 +8742,19 @@ const chainArray = [
|
|
8712
8742
|
]
|
8713
8743
|
},
|
8714
8744
|
{
|
8715
|
-
name: '
|
8716
|
-
chain: '
|
8717
|
-
rpc: [ 'https://
|
8745
|
+
name: 'Jouleverse Mainnet',
|
8746
|
+
chain: 'Jouleverse',
|
8747
|
+
rpc: [ 'https://rpc.jnsdao.com:8503' ],
|
8718
8748
|
faucets: [],
|
8719
8749
|
nativeCurrency: { name: 'J', symbol: 'J', decimals: 18 },
|
8720
|
-
infoURL: 'https://
|
8721
|
-
shortName: '
|
8750
|
+
infoURL: 'https://jnsdao.com',
|
8751
|
+
shortName: 'jouleverse',
|
8722
8752
|
chainId: 3666,
|
8723
8753
|
networkId: 3666,
|
8724
8754
|
explorers: [
|
8725
8755
|
{
|
8726
|
-
name: '
|
8727
|
-
url: 'https://
|
8756
|
+
name: 'jscan',
|
8757
|
+
url: 'https://jscan.jnsdao.com',
|
8728
8758
|
standard: 'EIP3091'
|
8729
8759
|
}
|
8730
8760
|
]
|