eth-chainlist 0.0.500 → 0.0.502
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +158 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.502 (2024-09-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.501 ([a99f773](https://github.com/poowf/eth-chainlist/commit/a99f773f3e8f1a04a9cf1aa3a7a43e9cbabea74b))
|
9
|
+
* update chain data ([cbd0328](https://github.com/poowf/eth-chainlist/commit/cbd03289d555e8839daddd8a4f6f58c01aa1b320))
|
10
|
+
|
11
|
+
### 0.0.501 (2024-09-24)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.500 ([b76ced2](https://github.com/poowf/eth-chainlist/commit/b76ced26c3fce59a43cba324fd391097d2348614))
|
17
|
+
* update chain data ([fe743d7](https://github.com/poowf/eth-chainlist/commit/fe743d7e94270a798612db04718cca25e7abf104))
|
18
|
+
|
3
19
|
### 0.0.500 (2024-09-23)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -12106,17 +12106,21 @@ const chainArray = [
|
|
12106
12106
|
{
|
12107
12107
|
name: 'Selendra Network Testnet',
|
12108
12108
|
chain: 'tSEL',
|
12109
|
-
rpc: [
|
12110
|
-
'https://rpc0-testnet.selendra.org',
|
12111
|
-
'https://rpc1-testnet.selendra.org'
|
12112
|
-
],
|
12109
|
+
rpc: [ 'https://rpc-testnet.selendra.org' ],
|
12113
12110
|
faucets: [],
|
12114
12111
|
nativeCurrency: { name: 'Selendra', symbol: 'tSEL', decimals: 18 },
|
12115
12112
|
infoURL: 'https://selendra.org',
|
12116
12113
|
shortName: 'tSEL',
|
12117
12114
|
chainId: 1953,
|
12118
12115
|
networkId: 1953,
|
12119
|
-
icon: 'selendra'
|
12116
|
+
icon: 'selendra',
|
12117
|
+
explorers: [
|
12118
|
+
{
|
12119
|
+
name: 'Selendra Portal',
|
12120
|
+
url: 'https://portal.selendra.org',
|
12121
|
+
standard: 'none'
|
12122
|
+
}
|
12123
|
+
]
|
12120
12124
|
},
|
12121
12125
|
{
|
12122
12126
|
name: 'Dexilla Testnet',
|
@@ -12165,7 +12169,7 @@ const chainArray = [
|
|
12165
12169
|
{
|
12166
12170
|
name: 'Selendra Network Mainnet',
|
12167
12171
|
chain: 'SEL',
|
12168
|
-
rpc: [ 'https://
|
12172
|
+
rpc: [ 'https://rpc.selendra.org', 'https://rpc2.selendra.org' ],
|
12169
12173
|
faucets: [],
|
12170
12174
|
nativeCurrency: { name: 'Selendra', symbol: 'SEL', decimals: 18 },
|
12171
12175
|
infoURL: 'https://selendra.org',
|
@@ -12175,8 +12179,8 @@ const chainArray = [
|
|
12175
12179
|
icon: 'selendra',
|
12176
12180
|
explorers: [
|
12177
12181
|
{
|
12178
|
-
name: 'Selendra
|
12179
|
-
url: 'https://
|
12182
|
+
name: 'Selendra Portal',
|
12183
|
+
url: 'https://portal.selendra.org',
|
12180
12184
|
standard: 'none'
|
12181
12185
|
}
|
12182
12186
|
]
|
@@ -17173,6 +17177,27 @@ const chainArray = [
|
|
17173
17177
|
],
|
17174
17178
|
status: 'active'
|
17175
17179
|
},
|
17180
|
+
{
|
17181
|
+
name: 'Citrea Testnet',
|
17182
|
+
chain: 'Citrea',
|
17183
|
+
rpc: [ 'https://rpc.testnet.citrea.xyz' ],
|
17184
|
+
faucets: [ 'https://citrea.xyz/faucet' ],
|
17185
|
+
nativeCurrency: { name: 'Citrea BTC', symbol: 'cBTC', decimals: 18 },
|
17186
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17187
|
+
infoURL: 'https://citrea.xyz',
|
17188
|
+
shortName: 'citrea-testnet',
|
17189
|
+
chainId: 5115,
|
17190
|
+
networkId: 5115,
|
17191
|
+
icon: 'citrea',
|
17192
|
+
explorers: [
|
17193
|
+
{
|
17194
|
+
name: 'Citrea Testnet Explorer',
|
17195
|
+
url: 'https://explorer.testnet.citrea.xyz',
|
17196
|
+
icon: 'citrea',
|
17197
|
+
standard: 'EIP3091'
|
17198
|
+
}
|
17199
|
+
]
|
17200
|
+
},
|
17176
17201
|
{
|
17177
17202
|
name: 'MeChain Testnet',
|
17178
17203
|
chain: 'MeChain',
|
@@ -17898,6 +17923,26 @@ const chainArray = [
|
|
17898
17923
|
}
|
17899
17924
|
]
|
17900
17925
|
},
|
17926
|
+
{
|
17927
|
+
name: 'BC Hyper POS Testnet',
|
17928
|
+
chain: 'BC Hyper POS Testnet',
|
17929
|
+
rpc: [ 'https://rpc.bcexplorer.io' ],
|
17930
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17931
|
+
faucets: [],
|
17932
|
+
nativeCurrency: { name: 'TEST VERSATIZE COIN', symbol: 'TVTCN', decimals: 18 },
|
17933
|
+
infoURL: 'https://www.versatizecoin.com/',
|
17934
|
+
shortName: 'BCH',
|
17935
|
+
chainId: 6060,
|
17936
|
+
networkId: 6060,
|
17937
|
+
icon: 'bchyper',
|
17938
|
+
explorers: [
|
17939
|
+
{
|
17940
|
+
name: 'bcexplorer testnet',
|
17941
|
+
url: 'https://testnet.bcexplorer.io',
|
17942
|
+
standard: 'EIP3091'
|
17943
|
+
}
|
17944
|
+
]
|
17945
|
+
},
|
17901
17946
|
{
|
17902
17947
|
name: 'Tres Testnet',
|
17903
17948
|
chain: 'TresLeches',
|
@@ -18006,6 +18051,29 @@ const chainArray = [
|
|
18006
18051
|
}
|
18007
18052
|
]
|
18008
18053
|
},
|
18054
|
+
{
|
18055
|
+
name: 'Rails',
|
18056
|
+
title: 'Rails Network Mainnet',
|
18057
|
+
chain: 'RAILS',
|
18058
|
+
icon: 'rails',
|
18059
|
+
rpc: [ 'https://mainnet.steamexchange.io' ],
|
18060
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP6551' } ],
|
18061
|
+
faucets: [],
|
18062
|
+
nativeCurrency: { name: 'SteamX', symbol: 'STEAMX', decimals: 18 },
|
18063
|
+
infoURL: 'https://steamexchange.io',
|
18064
|
+
shortName: 'rails',
|
18065
|
+
chainId: 6278,
|
18066
|
+
networkId: 6278,
|
18067
|
+
slip44: 6278,
|
18068
|
+
explorers: [
|
18069
|
+
{
|
18070
|
+
name: 'blockscout',
|
18071
|
+
url: 'https://explore.steamexchange.io',
|
18072
|
+
icon: 'blockscout',
|
18073
|
+
standard: 'EIP3091'
|
18074
|
+
}
|
18075
|
+
]
|
18076
|
+
},
|
18009
18077
|
{
|
18010
18078
|
name: 'LAOS',
|
18011
18079
|
title: 'LAOS Mainnet',
|
@@ -22609,6 +22677,24 @@ const chainArray = [
|
|
22609
22677
|
],
|
22610
22678
|
parent: { type: 'L2', chain: 'eip155-43113' }
|
22611
22679
|
},
|
22680
|
+
{
|
22681
|
+
name: 'GDPR Mainnet',
|
22682
|
+
chain: 'GDPR',
|
22683
|
+
rpc: [ 'https://rpc.gdprchain.com' ],
|
22684
|
+
faucets: [],
|
22685
|
+
nativeCurrency: { name: 'GDPR', symbol: 'GDPR', decimals: 18 },
|
22686
|
+
infoURL: 'https://explorer.gdprchain.com',
|
22687
|
+
shortName: 'gdpr',
|
22688
|
+
chainId: 12358,
|
22689
|
+
networkId: 12358,
|
22690
|
+
explorers: [
|
22691
|
+
{
|
22692
|
+
name: 'GDPR Mainnet Explorer (Blockscout)',
|
22693
|
+
url: 'https://explorer.gdprchain.com',
|
22694
|
+
standard: 'EIP3091'
|
22695
|
+
}
|
22696
|
+
]
|
22697
|
+
},
|
22612
22698
|
{
|
22613
22699
|
name: 'RSS3 VSL Mainnet',
|
22614
22700
|
chain: 'RSS3',
|
@@ -24548,6 +24634,27 @@ const chainArray = [
|
|
24548
24634
|
}
|
24549
24635
|
]
|
24550
24636
|
},
|
24637
|
+
{
|
24638
|
+
name: 'Amauti',
|
24639
|
+
title: 'Rails Network Testnet Amauti',
|
24640
|
+
chain: 'RAILS',
|
24641
|
+
icon: 'railsTestnet',
|
24642
|
+
rpc: [ 'https://testnet.steamexchange.io' ],
|
24643
|
+
faucets: [ 'https://depot.steamexchange.io/faucet' ],
|
24644
|
+
nativeCurrency: { name: 'SteamX', symbol: 'STEAMX', decimals: 18 },
|
24645
|
+
infoURL: 'https://steamexchange.io',
|
24646
|
+
shortName: 'railst',
|
24647
|
+
chainId: 24116,
|
24648
|
+
networkId: 24116,
|
24649
|
+
explorers: [
|
24650
|
+
{
|
24651
|
+
name: 'blockscout',
|
24652
|
+
url: 'https://build.steamexchange.io',
|
24653
|
+
icon: 'blockscout',
|
24654
|
+
standard: 'EIP3091'
|
24655
|
+
}
|
24656
|
+
]
|
24657
|
+
},
|
24551
24658
|
{
|
24552
24659
|
name: 'Webchain',
|
24553
24660
|
chain: 'WEB',
|
@@ -29214,6 +29321,24 @@ const chainArray = [
|
|
29214
29321
|
}
|
29215
29322
|
]
|
29216
29323
|
},
|
29324
|
+
{
|
29325
|
+
name: 'GDPR Testnet',
|
29326
|
+
chain: 'GDPR',
|
29327
|
+
rpc: [ 'https://rpc.testnet.gdprchain.com' ],
|
29328
|
+
faucets: [],
|
29329
|
+
nativeCurrency: { name: 'GDPR', symbol: 'GDPR', decimals: 18 },
|
29330
|
+
infoURL: 'https://explorer.testnet.gdprchain.com',
|
29331
|
+
shortName: 'gdpr-testnet',
|
29332
|
+
chainId: 85321,
|
29333
|
+
networkId: 85321,
|
29334
|
+
explorers: [
|
29335
|
+
{
|
29336
|
+
name: 'GDPR Testnet Explorer (Blockscout)',
|
29337
|
+
url: 'https://explorer.testnet.gdprchain.com',
|
29338
|
+
standard: 'EIP3091'
|
29339
|
+
}
|
29340
|
+
]
|
29341
|
+
},
|
29217
29342
|
{
|
29218
29343
|
name: 'CYBERTRUST',
|
29219
29344
|
chain: 'CYBER',
|
@@ -31918,6 +32043,31 @@ const chainArray = [
|
|
31918
32043
|
networkId: 281121,
|
31919
32044
|
explorers: []
|
31920
32045
|
},
|
32046
|
+
{
|
32047
|
+
name: 'Athene Parthenon',
|
32048
|
+
chain: 'athene-parthenon',
|
32049
|
+
rpc: [
|
32050
|
+
'https://rpc.parthenon.athenescan.io',
|
32051
|
+
'wss://ws.parthenon.athenescan.io'
|
32052
|
+
],
|
32053
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
32054
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/athene-parthenon',
|
32055
|
+
faucets: [],
|
32056
|
+
shortName: 'athene-parthenon',
|
32057
|
+
chainId: 281123,
|
32058
|
+
networkId: 281123,
|
32059
|
+
slip44: 60,
|
32060
|
+
explorers: [
|
32061
|
+
{
|
32062
|
+
name: 'blockscout',
|
32063
|
+
url: 'https://parthenon.athenescan.io',
|
32064
|
+
icon: 'blockscout',
|
32065
|
+
standard: 'EIP3091'
|
32066
|
+
}
|
32067
|
+
],
|
32068
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
32069
|
+
status: 'active'
|
32070
|
+
},
|
31921
32071
|
{
|
31922
32072
|
name: 'Zillion Sepolia Testnet',
|
31923
32073
|
status: 'active',
|