eth-chainlist 0.0.623 → 0.0.625
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 +206 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.625 (2025-02-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.624 ([96f2e8f](https://github.com/poowf/eth-chainlist/commit/96f2e8feeb6d5563b227ef4d563f9f3aa0d354ad))
|
9
|
+
* update chain data ([cb80100](https://github.com/poowf/eth-chainlist/commit/cb80100e016d845f063776d5b2573ff7ac361878))
|
10
|
+
|
11
|
+
### 0.0.624 (2025-02-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.623 ([24897a8](https://github.com/poowf/eth-chainlist/commit/24897a812f2b4f85524a43f7e1422cafc4e70c4d))
|
17
|
+
* update chain data ([aea993e](https://github.com/poowf/eth-chainlist/commit/aea993e2ed9ee97f95f0238a3e3f08770a68ceaa))
|
18
|
+
|
3
19
|
### 0.0.623 (2025-02-26)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -13001,6 +13001,27 @@ const chainArray = [
|
|
13001
13001
|
}
|
13002
13002
|
]
|
13003
13003
|
},
|
13004
|
+
{
|
13005
|
+
name: 'Ethpar Mainnet',
|
13006
|
+
chain: 'ETP',
|
13007
|
+
rpc: [ 'https://rpc01.ethpar.net/' ],
|
13008
|
+
faucets: [],
|
13009
|
+
nativeCurrency: { name: 'Ethpar', symbol: 'ETP', decimals: 18 },
|
13010
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
13011
|
+
infoURL: 'https://ethpar.com',
|
13012
|
+
shortName: 'ethpar',
|
13013
|
+
chainId: 1727,
|
13014
|
+
networkId: 1727,
|
13015
|
+
icon: 'ethpar',
|
13016
|
+
explorers: [
|
13017
|
+
{
|
13018
|
+
name: 'Ethpar Mainnet Explorer',
|
13019
|
+
url: 'https://dora.ethpar.net',
|
13020
|
+
icon: 'ethpar',
|
13021
|
+
standard: 'none'
|
13022
|
+
}
|
13023
|
+
]
|
13024
|
+
},
|
13004
13025
|
{
|
13005
13026
|
name: 'Reya Network',
|
13006
13027
|
chain: 'Reya',
|
@@ -13834,7 +13855,7 @@ const chainArray = [
|
|
13834
13855
|
explorers: [
|
13835
13856
|
{
|
13836
13857
|
name: 'Selendra Portal',
|
13837
|
-
url: 'https://
|
13858
|
+
url: 'https://explorer.selendra.org',
|
13838
13859
|
standard: 'none'
|
13839
13860
|
}
|
13840
13861
|
]
|
@@ -13897,7 +13918,7 @@ const chainArray = [
|
|
13897
13918
|
explorers: [
|
13898
13919
|
{
|
13899
13920
|
name: 'Selendra Portal',
|
13900
|
-
url: 'https://
|
13921
|
+
url: 'https://explorer.selendra.org',
|
13901
13922
|
standard: 'none'
|
13902
13923
|
}
|
13903
13924
|
]
|
@@ -15690,16 +15711,18 @@ const chainArray = [
|
|
15690
15711
|
},
|
15691
15712
|
{
|
15692
15713
|
name: 'Atleta Olympia',
|
15693
|
-
chain: 'Atleta',
|
15714
|
+
chain: 'Atleta Testnet Olympia',
|
15694
15715
|
rpc: [
|
15695
|
-
'
|
15696
|
-
'https://
|
15697
|
-
'
|
15716
|
+
'https://testnet-rpc.atleta.network',
|
15717
|
+
'https://rpc.ankr.com/atleta_olympia',
|
15718
|
+
'wss://testnet-rpc.atleta.network',
|
15719
|
+
'https://atleta-testnet.htw.tech/',
|
15720
|
+
'https://public-atleta.nownodes.io'
|
15698
15721
|
],
|
15699
15722
|
faucets: [ 'https://app-olympia.atleta.network/faucet' ],
|
15700
|
-
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
15723
|
+
nativeCurrency: { name: 'Atla Olympia', symbol: 'ATLA', decimals: 18 },
|
15701
15724
|
infoURL: 'https://atleta.network',
|
15702
|
-
shortName: '
|
15725
|
+
shortName: 'olym',
|
15703
15726
|
chainId: 2340,
|
15704
15727
|
networkId: 2340,
|
15705
15728
|
slip44: 1,
|
@@ -15708,7 +15731,7 @@ const chainArray = [
|
|
15708
15731
|
{
|
15709
15732
|
name: 'Atleta Olympia Explorer',
|
15710
15733
|
icon: 'atleta',
|
15711
|
-
url: 'https://blockscout.atleta.network',
|
15734
|
+
url: 'https://blockscout.testnet-v2.atleta.network',
|
15712
15735
|
standard: 'none'
|
15713
15736
|
},
|
15714
15737
|
{
|
@@ -16058,6 +16081,36 @@ const chainArray = [
|
|
16058
16081
|
networkId: 2426,
|
16059
16082
|
status: 'incubating'
|
16060
16083
|
},
|
16084
|
+
{
|
16085
|
+
name: 'Atleta Network',
|
16086
|
+
chain: 'Atleta',
|
16087
|
+
rpc: [
|
16088
|
+
'https://rpc.mainnet.atleta.network',
|
16089
|
+
'wss://rpc.mainnet.atleta.network'
|
16090
|
+
],
|
16091
|
+
faucets: [],
|
16092
|
+
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
16093
|
+
infoURL: 'https://atleta.network',
|
16094
|
+
shortName: 'atla',
|
16095
|
+
chainId: 2440,
|
16096
|
+
networkId: 2440,
|
16097
|
+
slip44: 965,
|
16098
|
+
icon: 'atleta',
|
16099
|
+
explorers: [
|
16100
|
+
{
|
16101
|
+
name: 'Atleta Explorer',
|
16102
|
+
icon: 'atleta',
|
16103
|
+
url: 'https://blockscout.atleta.network',
|
16104
|
+
standard: 'none'
|
16105
|
+
},
|
16106
|
+
{
|
16107
|
+
name: 'Atleta Polka Explorer',
|
16108
|
+
icon: 'atleta',
|
16109
|
+
url: 'https://polkadot-explorer.atleta.network/#/explorer',
|
16110
|
+
standard: 'none'
|
16111
|
+
}
|
16112
|
+
]
|
16113
|
+
},
|
16061
16114
|
{
|
16062
16115
|
name: 'Polygon zkEVM Cardona Testnet',
|
16063
16116
|
title: 'Polygon zkEVM Cardona Testnet',
|
@@ -28886,6 +28939,25 @@ const chainArray = [
|
|
28886
28939
|
}
|
28887
28940
|
]
|
28888
28941
|
},
|
28942
|
+
{
|
28943
|
+
name: 'XferChain Testnet',
|
28944
|
+
chain: 'XferChain Testnet',
|
28945
|
+
icon: 'xferIcon',
|
28946
|
+
rpc: [ 'https://testnet-rpc.xferchain.org' ],
|
28947
|
+
faucets: [ 'https://faucet.xferchain.org' ],
|
28948
|
+
nativeCurrency: { name: 'Dapo', symbol: 'Dapo', decimals: 18 },
|
28949
|
+
infoURL: 'https://xferchain.org',
|
28950
|
+
shortName: 'DPt',
|
28951
|
+
chainId: 27125,
|
28952
|
+
networkId: 27125,
|
28953
|
+
explorers: [
|
28954
|
+
{
|
28955
|
+
name: 'XferChain Testnet Explorer',
|
28956
|
+
url: 'https://testnet.xferchain.org',
|
28957
|
+
standard: 'EIP3091'
|
28958
|
+
}
|
28959
|
+
]
|
28960
|
+
},
|
28889
28961
|
{
|
28890
28962
|
name: 'KLAOS Nova',
|
28891
28963
|
title: 'KLAOS Nova Test Chain',
|
@@ -28955,6 +29027,25 @@ const chainArray = [
|
|
28955
29027
|
}
|
28956
29028
|
]
|
28957
29029
|
},
|
29030
|
+
{
|
29031
|
+
name: 'XferChain Mainnet',
|
29032
|
+
chain: 'XferChain Mainnet',
|
29033
|
+
icon: 'xferIcon',
|
29034
|
+
rpc: [ 'https://rpc.xferchain.org' ],
|
29035
|
+
faucets: [],
|
29036
|
+
nativeCurrency: { name: 'Dapo', symbol: 'Dapo', decimals: 18 },
|
29037
|
+
infoURL: 'https://xferchain.org',
|
29038
|
+
shortName: 'DPm',
|
29039
|
+
chainId: 28125,
|
29040
|
+
networkId: 28125,
|
29041
|
+
explorers: [
|
29042
|
+
{
|
29043
|
+
name: 'XferChain Mainnet Explorer',
|
29044
|
+
url: 'https://xferchain.org',
|
29045
|
+
standard: 'EIP3091'
|
29046
|
+
}
|
29047
|
+
]
|
29048
|
+
},
|
28958
29049
|
{
|
28959
29050
|
name: 'Vizing Testnet',
|
28960
29051
|
title: 'Vizing Testnet',
|
@@ -31383,13 +31474,13 @@ const chainArray = [
|
|
31383
31474
|
]
|
31384
31475
|
},
|
31385
31476
|
{
|
31386
|
-
name: 'Cytonic Testnet',
|
31387
|
-
chain: '
|
31477
|
+
name: 'Cytonic Settlement Layer Testnet',
|
31478
|
+
chain: 'CytonicSL',
|
31388
31479
|
rpc: [ 'http://rpc.sl.testnet.cytonic.com' ],
|
31389
31480
|
faucets: [],
|
31390
31481
|
nativeCurrency: { name: 'Cytonic', symbol: 'CCC', decimals: 18 },
|
31391
31482
|
infoURL: 'https://cytonic.com',
|
31392
|
-
shortName: '
|
31483
|
+
shortName: 'CSL',
|
31393
31484
|
chainId: 52225,
|
31394
31485
|
networkId: 52225,
|
31395
31486
|
icon: 'cytonic_l1',
|
@@ -31403,13 +31494,13 @@ const chainArray = [
|
|
31403
31494
|
]
|
31404
31495
|
},
|
31405
31496
|
{
|
31406
|
-
name: 'Cytonic
|
31407
|
-
chain: '
|
31497
|
+
name: 'Cytonic Ethereum Testnet',
|
31498
|
+
chain: 'CytonicEVM',
|
31408
31499
|
rpc: [ 'http://rpc.evm.testnet.cytonic.com' ],
|
31409
31500
|
faucets: [],
|
31410
31501
|
nativeCurrency: { name: 'Cytonic', symbol: 'CCC', decimals: 18 },
|
31411
31502
|
infoURL: 'https://cytonic.com',
|
31412
|
-
shortName: '
|
31503
|
+
shortName: 'CEVM',
|
31413
31504
|
chainId: 52226,
|
31414
31505
|
networkId: 52226,
|
31415
31506
|
icon: 'cytonic_l2',
|
@@ -36550,6 +36641,27 @@ const chainArray = [
|
|
36550
36641
|
}
|
36551
36642
|
]
|
36552
36643
|
},
|
36644
|
+
{
|
36645
|
+
name: 'MUD Chain',
|
36646
|
+
chain: 'MUD',
|
36647
|
+
rpc: [ 'https://rpc.mud.network' ],
|
36648
|
+
faucets: [ 'https://faucet.mud.network' ],
|
36649
|
+
nativeCurrency: { name: 'MUD', symbol: 'MUD', decimals: 18 },
|
36650
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
36651
|
+
infoURL: 'https://mud.network',
|
36652
|
+
shortName: 'MUD',
|
36653
|
+
chainId: 168169,
|
36654
|
+
networkId: 168169,
|
36655
|
+
icon: 'mud',
|
36656
|
+
explorers: [
|
36657
|
+
{
|
36658
|
+
name: 'MUD Chain Scan',
|
36659
|
+
url: 'https://scan.mud.network',
|
36660
|
+
icon: 'mud',
|
36661
|
+
standard: 'EIP3091'
|
36662
|
+
}
|
36663
|
+
]
|
36664
|
+
},
|
36553
36665
|
{
|
36554
36666
|
name: 'Fair Testnet',
|
36555
36667
|
chain: 'FAIR',
|
@@ -37654,6 +37766,27 @@ const chainArray = [
|
|
37654
37766
|
}
|
37655
37767
|
]
|
37656
37768
|
},
|
37769
|
+
{
|
37770
|
+
name: 'CELESTIUM Network Testnet',
|
37771
|
+
chain: 'CELESTIUM',
|
37772
|
+
rpc: [ 'https://rpc-private-testnet.celestium.network' ],
|
37773
|
+
faucets: [ 'https://faucet.celestium.network' ],
|
37774
|
+
nativeCurrency: { name: 'CLT', symbol: 'tCLT', decimals: 18 },
|
37775
|
+
infoURL: 'https://celestium.network',
|
37776
|
+
shortName: 'tclt',
|
37777
|
+
chainId: 252525,
|
37778
|
+
networkId: 252525,
|
37779
|
+
slip44: 1,
|
37780
|
+
icon: 'celestium',
|
37781
|
+
explorers: [
|
37782
|
+
{
|
37783
|
+
name: 'CELESTIUM Testnet Explorer',
|
37784
|
+
icon: 'celestium',
|
37785
|
+
url: 'https://testnet.celestium.network',
|
37786
|
+
standard: 'none'
|
37787
|
+
}
|
37788
|
+
]
|
37789
|
+
},
|
37657
37790
|
{
|
37658
37791
|
name: 'CMP-Mainnet',
|
37659
37792
|
chain: 'CMP',
|
@@ -39523,7 +39656,12 @@ const chainArray = [
|
|
39523
39656
|
{
|
39524
39657
|
name: 'Primea Chain',
|
39525
39658
|
chain: 'Primea Chain',
|
39526
|
-
rpc: [
|
39659
|
+
rpc: [
|
39660
|
+
'http://rpc.primeanetwork.com/rpc-http',
|
39661
|
+
'https://rpc.primeanetwork.com/rpc-https',
|
39662
|
+
'ws://rpc.primeanetwork.com/rpc-ws',
|
39663
|
+
'wss://rpc.primeanetwork.com/rpc-wss'
|
39664
|
+
],
|
39527
39665
|
faucets: [],
|
39528
39666
|
nativeCurrency: { name: 'PrimeaCoin', symbol: 'PRIM', decimals: 18 },
|
39529
39667
|
infoURL: 'https://primeanetwork.com',
|
@@ -39944,6 +40082,27 @@ const chainArray = [
|
|
39944
40082
|
}
|
39945
40083
|
]
|
39946
40084
|
},
|
40085
|
+
{
|
40086
|
+
name: 'Ethpar Testnet',
|
40087
|
+
chain: 'ETP',
|
40088
|
+
rpc: [ 'https://rpc82.testnet.ethpar.net/' ],
|
40089
|
+
faucets: [],
|
40090
|
+
nativeCurrency: { name: 'Ethpar', symbol: 'ETP', decimals: 18 },
|
40091
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
40092
|
+
infoURL: 'https://ethpar.com',
|
40093
|
+
shortName: 'ethpar-tesnet',
|
40094
|
+
chainId: 806582,
|
40095
|
+
networkId: 806582,
|
40096
|
+
icon: 'ethpar',
|
40097
|
+
explorers: [
|
40098
|
+
{
|
40099
|
+
name: 'Ethpar Testnet Explorer',
|
40100
|
+
url: 'https://dora.testnet.ethpar.net',
|
40101
|
+
icon: 'ethpar',
|
40102
|
+
standard: 'none'
|
40103
|
+
}
|
40104
|
+
]
|
40105
|
+
},
|
39947
40106
|
{
|
39948
40107
|
name: 'BIZ Smart Chain Testnet',
|
39949
40108
|
chain: 'BIZT Testnet',
|
@@ -42391,14 +42550,14 @@ const chainArray = [
|
|
42391
42550
|
]
|
42392
42551
|
},
|
42393
42552
|
{
|
42394
|
-
name: '
|
42395
|
-
chain: '
|
42553
|
+
name: 'Privix Chain Mainnet',
|
42554
|
+
chain: 'PRIVIX',
|
42396
42555
|
rpc: [
|
42397
42556
|
'https://mainnet-rpc.privixchain.xyz/',
|
42398
42557
|
'wss://mainnet-rpc.privixchain.xyz/ws'
|
42399
42558
|
],
|
42400
42559
|
faucets: [],
|
42401
|
-
nativeCurrency: { name: 'Privix Coin', symbol: '
|
42560
|
+
nativeCurrency: { name: 'Privix Coin', symbol: 'PRIVIX', decimals: 18 },
|
42402
42561
|
infoURL: 'https://privix.co/',
|
42403
42562
|
shortName: 'mpsc',
|
42404
42563
|
chainId: 16969696,
|
@@ -43562,13 +43721,13 @@ const chainArray = [
|
|
43562
43721
|
},
|
43563
43722
|
{
|
43564
43723
|
name: ' Privix Chain Testnet',
|
43565
|
-
chain: '
|
43724
|
+
chain: 'PRIVIX',
|
43566
43725
|
rpc: [
|
43567
43726
|
'https://testnet-rpc.privixchain.xyz/',
|
43568
43727
|
'wss://testnet-rpc.privixchain.xyz/ws'
|
43569
43728
|
],
|
43570
43729
|
faucets: [ 'https://faucet.privixchain.xyz' ],
|
43571
|
-
nativeCurrency: { name: 'Privix Coin', symbol: '
|
43730
|
+
nativeCurrency: { name: 'Privix Coin', symbol: 'PRIVIX', decimals: 18 },
|
43572
43731
|
infoURL: 'https://privix.co/',
|
43573
43732
|
shortName: 'tpsc',
|
43574
43733
|
chainId: 96969696,
|
@@ -45315,6 +45474,32 @@ const chainArray = [
|
|
45315
45474
|
}
|
45316
45475
|
]
|
45317
45476
|
},
|
45477
|
+
{
|
45478
|
+
name: 'ONFA Chain',
|
45479
|
+
title: 'ONFA Chain',
|
45480
|
+
chain: 'onfa',
|
45481
|
+
rpc: [
|
45482
|
+
'https://rpc.onfa.io',
|
45483
|
+
'https://rpc.onfachain.com',
|
45484
|
+
'wss://ws.onfa.io',
|
45485
|
+
'wss://ws.onfachain.com'
|
45486
|
+
],
|
45487
|
+
faucets: [],
|
45488
|
+
nativeCurrency: { name: 'Onfa Coin', symbol: 'OFC', decimals: 18 },
|
45489
|
+
infoURL: 'https://onfa.io',
|
45490
|
+
shortName: 'onfa',
|
45491
|
+
chainId: 8691942025,
|
45492
|
+
networkId: 8691942025,
|
45493
|
+
icon: 'onfachain',
|
45494
|
+
explorers: [
|
45495
|
+
{
|
45496
|
+
name: 'ONFA Scan',
|
45497
|
+
url: 'https://onfascan.com',
|
45498
|
+
icon: 'onfachain',
|
45499
|
+
standard: 'EIP3091'
|
45500
|
+
}
|
45501
|
+
]
|
45502
|
+
},
|
45318
45503
|
{
|
45319
45504
|
name: 'Palm Testnet',
|
45320
45505
|
chain: 'Palm',
|