eth-chainlist 0.0.114 → 0.0.115
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 +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.115 (2023-03-31)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.114 ([97ec5b1](https://github.com/poowf/eth-chainlist/commit/97ec5b1c9d96e5277a0b2f6172fc3752a3a25bc0))
|
9
|
+
* update chain data ([bfb42f5](https://github.com/poowf/eth-chainlist/commit/bfb42f52311217c11c4ce609256dd350e234bff7))
|
10
|
+
|
3
11
|
### 0.0.114 (2023-03-30)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2985,7 +2985,7 @@ const chainArray = [
|
|
2985
2985
|
rpc: [ 'https://mainnet.hashio.io/api' ],
|
2986
2986
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2987
2987
|
faucets: [],
|
2988
|
-
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals:
|
2988
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
2989
2989
|
infoURL: 'https://hedera.com',
|
2990
2990
|
shortName: 'hedera-mainnet',
|
2991
2991
|
chainId: 295,
|
@@ -3026,7 +3026,7 @@ const chainArray = [
|
|
3026
3026
|
rpc: [ 'https://testnet.hashio.io/api' ],
|
3027
3027
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3028
3028
|
faucets: [ 'https://portal.hedera.com' ],
|
3029
|
-
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals:
|
3029
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
3030
3030
|
infoURL: 'https://hedera.com',
|
3031
3031
|
shortName: 'hedera-testnet',
|
3032
3032
|
chainId: 296,
|
@@ -3067,7 +3067,7 @@ const chainArray = [
|
|
3067
3067
|
rpc: [ 'https://previewnet.hashio.io/api' ],
|
3068
3068
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3069
3069
|
faucets: [ 'https://portal.hedera.com' ],
|
3070
|
-
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals:
|
3070
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
3071
3071
|
infoURL: 'https://hedera.com',
|
3072
3072
|
shortName: 'hedera-previewnet',
|
3073
3073
|
chainId: 297,
|
@@ -3088,7 +3088,7 @@ const chainArray = [
|
|
3088
3088
|
rpc: [],
|
3089
3089
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3090
3090
|
faucets: [],
|
3091
|
-
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals:
|
3091
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
3092
3092
|
infoURL: 'https://hedera.com',
|
3093
3093
|
shortName: 'hedera-localnet',
|
3094
3094
|
chainId: 298,
|
@@ -9035,7 +9035,7 @@ const chainArray = [
|
|
9035
9035
|
{
|
9036
9036
|
name: 'Shardeum Scan',
|
9037
9037
|
url: 'https://explorer-liberty10.shardeum.org',
|
9038
|
-
standard: '
|
9038
|
+
standard: 'EIP3091'
|
9039
9039
|
}
|
9040
9040
|
],
|
9041
9041
|
redFlags: [ 'reusedChainId' ]
|
@@ -9055,7 +9055,7 @@ const chainArray = [
|
|
9055
9055
|
{
|
9056
9056
|
name: 'Shardeum Scan',
|
9057
9057
|
url: 'https://explorer-liberty20.shardeum.org',
|
9058
|
-
standard: '
|
9058
|
+
standard: 'EIP3091'
|
9059
9059
|
}
|
9060
9060
|
],
|
9061
9061
|
redFlags: [ 'reusedChainId' ]
|
@@ -9075,7 +9075,7 @@ const chainArray = [
|
|
9075
9075
|
{
|
9076
9076
|
name: 'Shardeum Scan',
|
9077
9077
|
url: 'https://explorer-sphinx.shardeum.org',
|
9078
|
-
standard: '
|
9078
|
+
standard: 'EIP3091'
|
9079
9079
|
}
|
9080
9080
|
],
|
9081
9081
|
redFlags: [ 'reusedChainId' ]
|