eth-chainlist 0.0.515 → 0.0.516
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +190 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.516 (2024-10-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.515 ([90f44f5](https://github.com/poowf/eth-chainlist/commit/90f44f5679ff7cfdf9ec687b96163a95a0616f91))
|
9
|
+
* update chain data ([468c4ca](https://github.com/poowf/eth-chainlist/commit/468c4ca64a9c147b86c7350e531512324339912a))
|
10
|
+
|
3
11
|
### 0.0.515 (2024-10-14)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -6048,6 +6048,27 @@ const chainArray = [
|
|
6048
6048
|
bridges: [ { url: 'https://bridge.publicgoods.network' } ]
|
6049
6049
|
}
|
6050
6050
|
},
|
6051
|
+
{
|
6052
|
+
name: 'Stenix Mainnet',
|
6053
|
+
chain: 'STEN',
|
6054
|
+
rpc: [ 'https://stenix.network/pub' ],
|
6055
|
+
faucets: [],
|
6056
|
+
nativeCurrency: { name: 'Stenix', symbol: 'STEN', decimals: 18 },
|
6057
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6058
|
+
infoURL: 'https://stenix.org',
|
6059
|
+
shortName: 'sten',
|
6060
|
+
chainId: 425,
|
6061
|
+
networkId: 425,
|
6062
|
+
icon: 'stenix',
|
6063
|
+
explorers: [
|
6064
|
+
{
|
6065
|
+
name: 'stenscan',
|
6066
|
+
url: 'https://stenscan.com',
|
6067
|
+
icon: 'stenscan',
|
6068
|
+
standard: 'none'
|
6069
|
+
}
|
6070
|
+
]
|
6071
|
+
},
|
6051
6072
|
{
|
6052
6073
|
name: 'Zeeth Chain',
|
6053
6074
|
chain: 'ZeethChain',
|
@@ -7160,6 +7181,29 @@ const chainArray = [
|
|
7160
7181
|
}
|
7161
7182
|
]
|
7162
7183
|
},
|
7184
|
+
{
|
7185
|
+
name: 'NERO Testnet',
|
7186
|
+
chain: 'NERO Chain',
|
7187
|
+
rpc: [
|
7188
|
+
'https://rpc-testnet.nerochain.io',
|
7189
|
+
'wss://ws-testnet.nerochain.io'
|
7190
|
+
],
|
7191
|
+
faucets: [ 'https://faucet-testnet.nerochain.io' ],
|
7192
|
+
nativeCurrency: { name: 'NERO', symbol: 'NERO', decimals: 18 },
|
7193
|
+
infoURL: 'https://docs.nerochain.io/',
|
7194
|
+
shortName: 'NERO',
|
7195
|
+
chainId: 689,
|
7196
|
+
networkId: 689,
|
7197
|
+
slip44: 1,
|
7198
|
+
icon: 'nero',
|
7199
|
+
explorers: [
|
7200
|
+
{
|
7201
|
+
name: 'nero testnet scan',
|
7202
|
+
url: 'https://testnet.neroscan.io',
|
7203
|
+
standard: 'EIP3091'
|
7204
|
+
}
|
7205
|
+
]
|
7206
|
+
},
|
7163
7207
|
{
|
7164
7208
|
name: 'Redstone',
|
7165
7209
|
chain: 'ETH',
|
@@ -7866,14 +7910,23 @@ const chainArray = [
|
|
7866
7910
|
{
|
7867
7911
|
name: 'Callisto Mainnet',
|
7868
7912
|
chain: 'CLO',
|
7869
|
-
|
7870
|
-
|
7913
|
+
icon: 'callistonetwork',
|
7914
|
+
rpc: [ 'https://rpc.callistodao.org' ],
|
7915
|
+
faucets: [ 'https://faucet.callistodao.org' ],
|
7871
7916
|
nativeCurrency: { name: 'Callisto', symbol: 'CLO', decimals: 18 },
|
7872
|
-
|
7917
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
7918
|
+
infoURL: 'https://callistodao.org',
|
7873
7919
|
shortName: 'clo',
|
7874
7920
|
chainId: 820,
|
7875
7921
|
networkId: 1,
|
7876
|
-
slip44: 820
|
7922
|
+
slip44: 820,
|
7923
|
+
explorers: [
|
7924
|
+
{
|
7925
|
+
name: 'blockscout-callisto-network',
|
7926
|
+
url: 'https://explorer.callistodao.org',
|
7927
|
+
standard: 'EIP3091'
|
7928
|
+
}
|
7929
|
+
]
|
7877
7930
|
},
|
7878
7931
|
{
|
7879
7932
|
name: 'Callisto Testnet Deprecated',
|
@@ -19041,6 +19094,26 @@ const chainArray = [
|
|
19041
19094
|
}
|
19042
19095
|
]
|
19043
19096
|
},
|
19097
|
+
{
|
19098
|
+
name: 'exSat Network',
|
19099
|
+
chain: 'exSat',
|
19100
|
+
icon: 'exsat',
|
19101
|
+
rpc: [ 'https://evm.exsat.network' ],
|
19102
|
+
faucets: [],
|
19103
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
19104
|
+
infoURL: 'https://exsat.network/',
|
19105
|
+
shortName: 'xsat',
|
19106
|
+
chainId: 7200,
|
19107
|
+
networkId: 7200,
|
19108
|
+
explorers: [
|
19109
|
+
{
|
19110
|
+
name: 'exSat Explorer',
|
19111
|
+
url: 'https://scan.exsat.network',
|
19112
|
+
standard: 'EIP3091'
|
19113
|
+
}
|
19114
|
+
],
|
19115
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [ { url: '' } ] }
|
19116
|
+
},
|
19044
19117
|
{
|
19045
19118
|
name: 'Nibiru Testnet-1',
|
19046
19119
|
chain: 'Nibiru',
|
@@ -31465,6 +31538,25 @@ const chainArray = [
|
|
31465
31538
|
}
|
31466
31539
|
]
|
31467
31540
|
},
|
31541
|
+
{
|
31542
|
+
name: 'XCOIN',
|
31543
|
+
chain: 'XCOIN',
|
31544
|
+
rpc: [ 'https://rpc-xcoin.cryptoxnetwork.io' ],
|
31545
|
+
faucets: [],
|
31546
|
+
nativeCurrency: { name: 'XCOIN', symbol: 'XCOIN', decimals: 18 },
|
31547
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
31548
|
+
infoURL: 'https://cryptoxnetwork.io',
|
31549
|
+
shortName: 'xcoin',
|
31550
|
+
chainId: 158345,
|
31551
|
+
networkId: 158345,
|
31552
|
+
explorers: [
|
31553
|
+
{
|
31554
|
+
name: 'CryptoX explorer',
|
31555
|
+
url: 'https://cryptoxscan.io',
|
31556
|
+
standard: 'EIP3091'
|
31557
|
+
}
|
31558
|
+
]
|
31559
|
+
},
|
31468
31560
|
{
|
31469
31561
|
name: 'PlayFi Mainnet',
|
31470
31562
|
chain: 'PLAY',
|
@@ -31770,6 +31862,24 @@ const chainArray = [
|
|
31770
31862
|
chainId: 192940,
|
31771
31863
|
networkId: 192940
|
31772
31864
|
},
|
31865
|
+
{
|
31866
|
+
name: 'R0AR Chain',
|
31867
|
+
chain: 'R0AR Chain',
|
31868
|
+
rpc: [ 'https://rpc-r0ar.io' ],
|
31869
|
+
faucets: [],
|
31870
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
31871
|
+
infoURL: 'https://r0arscan.io',
|
31872
|
+
shortName: 'R0AR-Chain',
|
31873
|
+
chainId: 193939,
|
31874
|
+
networkId: 193939,
|
31875
|
+
explorers: [
|
31876
|
+
{
|
31877
|
+
name: 'tracehawk',
|
31878
|
+
url: 'https://r0arscan.io',
|
31879
|
+
standard: 'none'
|
31880
|
+
}
|
31881
|
+
]
|
31882
|
+
},
|
31773
31883
|
{
|
31774
31884
|
name: 'MAZZE Testnet',
|
31775
31885
|
chain: 'MAZZE Testnet',
|
@@ -32085,6 +32195,24 @@ const chainArray = [
|
|
32085
32195
|
}
|
32086
32196
|
]
|
32087
32197
|
},
|
32198
|
+
{
|
32199
|
+
name: 'Blockfit',
|
32200
|
+
chain: '202424',
|
32201
|
+
rpc: [ 'https://rpc.blockfitscan.io' ],
|
32202
|
+
faucets: [],
|
32203
|
+
nativeCurrency: { name: 'BFIT', symbol: 'BFIT', decimals: 18 },
|
32204
|
+
infoURL: 'https://blockfit.io',
|
32205
|
+
shortName: 'Blockfit',
|
32206
|
+
chainId: 202424,
|
32207
|
+
networkId: 202424,
|
32208
|
+
explorers: [
|
32209
|
+
{
|
32210
|
+
name: 'Tracehawk',
|
32211
|
+
url: 'https://blockfitscan.io',
|
32212
|
+
standard: 'none'
|
32213
|
+
}
|
32214
|
+
]
|
32215
|
+
},
|
32088
32216
|
{
|
32089
32217
|
name: 'Jellie',
|
32090
32218
|
title: 'Twala Testnet Jellie',
|
@@ -32160,6 +32288,20 @@ const chainArray = [
|
|
32160
32288
|
chainId: 210049,
|
32161
32289
|
networkId: 210049
|
32162
32290
|
},
|
32291
|
+
{
|
32292
|
+
name: 'Sorian',
|
32293
|
+
chain: 'SOR',
|
32294
|
+
rpc: [ 'https://rpc.sorian.io' ],
|
32295
|
+
faucets: [],
|
32296
|
+
icon: 'sorian',
|
32297
|
+
nativeCurrency: { name: 'Sorian', symbol: 'SOR', decimals: 18 },
|
32298
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
32299
|
+
infoURL: 'https://sorian.io',
|
32300
|
+
shortName: 'sorian',
|
32301
|
+
chainId: 210209,
|
32302
|
+
networkId: 210209,
|
32303
|
+
explorers: []
|
32304
|
+
},
|
32163
32305
|
{
|
32164
32306
|
name: 'PlatON Mainnet',
|
32165
32307
|
chain: 'PlatON',
|
@@ -36368,6 +36510,24 @@ const chainArray = [
|
|
36368
36510
|
}
|
36369
36511
|
]
|
36370
36512
|
},
|
36513
|
+
{
|
36514
|
+
name: 'R0AR Testnet',
|
36515
|
+
chain: 'R0AR Testnet',
|
36516
|
+
rpc: [ 'https://testnet.rpc-r0ar.io' ],
|
36517
|
+
faucets: [ 'https://testnet.r0arfaucet.io' ],
|
36518
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
36519
|
+
infoURL: 'https://testnet.r0arscan.io',
|
36520
|
+
shortName: 'R0AR-Test-Chain',
|
36521
|
+
chainId: 11166111,
|
36522
|
+
networkId: 11166111,
|
36523
|
+
explorers: [
|
36524
|
+
{
|
36525
|
+
name: 'tracehawk',
|
36526
|
+
url: 'https://testnet.r0arscan.io',
|
36527
|
+
standard: 'none'
|
36528
|
+
}
|
36529
|
+
]
|
36530
|
+
},
|
36371
36531
|
{
|
36372
36532
|
name: 'Memento Testnet',
|
36373
36533
|
chain: 'Memento',
|
@@ -37019,6 +37179,32 @@ const chainArray = [
|
|
37019
37179
|
}
|
37020
37180
|
]
|
37021
37181
|
},
|
37182
|
+
{
|
37183
|
+
name: 'Deviant Token Blockchain',
|
37184
|
+
chain: 'DTBC',
|
37185
|
+
status: 'incubating',
|
37186
|
+
rpc: [ 'https://rpc.devianttoken.net' ],
|
37187
|
+
faucets: [],
|
37188
|
+
nativeCurrency: { name: 'Deviant Token', symbol: 'DTBC', decimals: 18 },
|
37189
|
+
infoURL: 'https://devianttoken.net',
|
37190
|
+
shortName: 'dtbc',
|
37191
|
+
chainId: 52027071,
|
37192
|
+
networkId: 52027071,
|
37193
|
+
explorers: []
|
37194
|
+
},
|
37195
|
+
{
|
37196
|
+
name: 'Deviant Token Blockchain Testnet',
|
37197
|
+
chain: 'tDTBC',
|
37198
|
+
status: 'incubating',
|
37199
|
+
rpc: [ 'https://trpc.devianttoken.net' ],
|
37200
|
+
faucets: [],
|
37201
|
+
nativeCurrency: { name: 'Deviant Token Testnet', symbol: 'tDTBC', decimals: 18 },
|
37202
|
+
infoURL: 'https://devianttoken.net',
|
37203
|
+
shortName: 'tdtbc',
|
37204
|
+
chainId: 52027080,
|
37205
|
+
networkId: 52027080,
|
37206
|
+
explorers: []
|
37207
|
+
},
|
37022
37208
|
{
|
37023
37209
|
name: 'Fluence Testnet',
|
37024
37210
|
chain: 'Fluence Testnet',
|
@@ -38461,7 +38647,6 @@ const chainArray = [
|
|
38461
38647
|
'https://a.api.s0.t.hmny.io',
|
38462
38648
|
'https://api.s0.t.hmny.io',
|
38463
38649
|
'https://rpc.ankr.com/harmony',
|
38464
|
-
'https://harmony.api.onfinality.io/public',
|
38465
38650
|
'https://1rpc.io/one',
|
38466
38651
|
'https://harmony-0.drpc.org',
|
38467
38652
|
'wss://harmony-0.drpc.org'
|