eth-chainlist 0.0.175 → 0.0.176
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 +51 -19
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.176 (2023-07-01)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.175 ([ebb9a6d](https://github.com/poowf/eth-chainlist/commit/ebb9a6d33279a85a8c6dfc6ed13d4af2c721c77d))
|
9
|
+
* update chain data ([9e42474](https://github.com/poowf/eth-chainlist/commit/9e4247425bee78a9c9924c75542d2eebf8299437))
|
10
|
+
|
3
11
|
### 0.0.175 (2023-06-28)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -4242,6 +4242,7 @@ const chainArray = [
|
|
4242
4242
|
chain: 'SYS',
|
4243
4243
|
rpc: [
|
4244
4244
|
'https://rpc.rollux.com',
|
4245
|
+
'https://rollux.public-rpc.com',
|
4245
4246
|
'wss://rpc.rollux.com/wss',
|
4246
4247
|
'https://rpc.ankr.com/rollux/${ANKR_API_KEY}'
|
4247
4248
|
],
|
@@ -9756,6 +9757,32 @@ const chainArray = [
|
|
9756
9757
|
}
|
9757
9758
|
]
|
9758
9759
|
},
|
9760
|
+
{
|
9761
|
+
name: 'Cascadia Testnet',
|
9762
|
+
chain: 'Cascadia',
|
9763
|
+
rpc: [ 'https://testnet.cascadia.foundation' ],
|
9764
|
+
faucets: [ 'https://www.cascadia.foundation/faucet' ],
|
9765
|
+
nativeCurrency: { name: 'CC', symbol: 'tCC', decimals: 18 },
|
9766
|
+
infoURL: 'https://www.cascadia.foundation',
|
9767
|
+
shortName: 'cascadia',
|
9768
|
+
chainId: 6102,
|
9769
|
+
networkId: 6102,
|
9770
|
+
icon: 'cascadia',
|
9771
|
+
explorers: [
|
9772
|
+
{
|
9773
|
+
name: 'Cascadia EVM Explorer',
|
9774
|
+
url: 'https://explorer.cascadia.foundation',
|
9775
|
+
standard: 'none',
|
9776
|
+
icon: 'cascadia'
|
9777
|
+
},
|
9778
|
+
{
|
9779
|
+
name: 'Cascadia Cosmos Explorer',
|
9780
|
+
url: 'https://validator.cascadia.foundation',
|
9781
|
+
standard: 'none',
|
9782
|
+
icon: 'cascadia'
|
9783
|
+
}
|
9784
|
+
]
|
9785
|
+
},
|
9759
9786
|
{
|
9760
9787
|
name: 'UPTN Testnet',
|
9761
9788
|
chain: 'UPTN',
|
@@ -10947,14 +10974,8 @@ const chainArray = [
|
|
10947
10974
|
icon: 'evmos',
|
10948
10975
|
explorers: [
|
10949
10976
|
{
|
10950
|
-
name: 'Evmos
|
10951
|
-
url: 'https://
|
10952
|
-
standard: 'EIP3091',
|
10953
|
-
icon: 'evmos'
|
10954
|
-
},
|
10955
|
-
{
|
10956
|
-
name: 'Evmos Cosmos Explorer',
|
10957
|
-
url: 'https://explorer.evmos.dev',
|
10977
|
+
name: 'Evmos Explorer (Escan)',
|
10978
|
+
url: 'https://testnet.escan.live',
|
10958
10979
|
standard: 'none',
|
10959
10980
|
icon: 'evmos'
|
10960
10981
|
}
|
@@ -10963,10 +10984,7 @@ const chainArray = [
|
|
10963
10984
|
{
|
10964
10985
|
name: 'Evmos',
|
10965
10986
|
chain: 'Evmos',
|
10966
|
-
rpc: [
|
10967
|
-
'https://eth.bd.evmos.org:8545',
|
10968
|
-
'https://evmos-evm.publicnode.com'
|
10969
|
-
],
|
10987
|
+
rpc: [ 'https://evmos-evm.publicnode.com' ],
|
10970
10988
|
faucets: [],
|
10971
10989
|
nativeCurrency: { name: 'Evmos', symbol: 'EVMOS', decimals: 18 },
|
10972
10990
|
infoURL: 'https://evmos.org',
|
@@ -10976,16 +10994,10 @@ const chainArray = [
|
|
10976
10994
|
icon: 'evmos',
|
10977
10995
|
explorers: [
|
10978
10996
|
{
|
10979
|
-
name: 'Evmos
|
10997
|
+
name: 'Evmos Explorer (Escan)',
|
10980
10998
|
url: 'https://escan.live',
|
10981
10999
|
standard: 'none',
|
10982
11000
|
icon: 'evmos'
|
10983
|
-
},
|
10984
|
-
{
|
10985
|
-
name: 'Evmos Cosmos Explorer (Mintscan)',
|
10986
|
-
url: 'https://www.mintscan.io/evmos',
|
10987
|
-
standard: 'none',
|
10988
|
-
icon: 'evmos'
|
10989
11001
|
}
|
10990
11002
|
]
|
10991
11003
|
},
|
@@ -14962,6 +14974,26 @@ const chainArray = [
|
|
14962
14974
|
}
|
14963
14975
|
]
|
14964
14976
|
},
|
14977
|
+
{
|
14978
|
+
name: 'Metachain One Mainnet',
|
14979
|
+
chain: 'METAO',
|
14980
|
+
icon: 'metao',
|
14981
|
+
rpc: [ 'https://rpc.metachain.one', 'https://rpc2.metachain.one' ],
|
14982
|
+
faucets: [],
|
14983
|
+
nativeCurrency: { name: 'Metao', symbol: 'METAO', decimals: 18 },
|
14984
|
+
infoURL: 'https://metachain.one',
|
14985
|
+
shortName: 'metao',
|
14986
|
+
chainId: 112358,
|
14987
|
+
networkId: 112358,
|
14988
|
+
explorers: [
|
14989
|
+
{
|
14990
|
+
name: 'blockscout',
|
14991
|
+
url: 'https://explorer.metachain.one',
|
14992
|
+
icon: 'blockscout',
|
14993
|
+
standard: 'EIP3091'
|
14994
|
+
}
|
14995
|
+
]
|
14996
|
+
},
|
14965
14997
|
{
|
14966
14998
|
name: 'ADIL Devnet',
|
14967
14999
|
chain: 'ADIL',
|