eth-chainlist 0.0.572 → 0.0.574
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 +227 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.574 (2024-12-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.573 ([023bcad](https://github.com/poowf/eth-chainlist/commit/023bcad29013407107aa5abe584b0789467e49e5))
|
9
|
+
* update chain data ([df2690d](https://github.com/poowf/eth-chainlist/commit/df2690d9e39954ce2c069e83ec3f21a5fdc9a1e0))
|
10
|
+
|
11
|
+
### 0.0.573 (2024-12-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.572 ([37df653](https://github.com/poowf/eth-chainlist/commit/37df65392cf0c148d0bacf771fc757cf08b0cca6))
|
17
|
+
* update chain data ([5b82e85](https://github.com/poowf/eth-chainlist/commit/5b82e85e00222eb69f7340f85a024d8dc31f3589))
|
18
|
+
|
3
19
|
### 0.0.572 (2024-12-26)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3050,7 +3050,11 @@ const chainArray = [
|
|
3050
3050
|
{
|
3051
3051
|
name: 'Sonic Mainnet',
|
3052
3052
|
chain: 'sonic',
|
3053
|
-
rpc: [
|
3053
|
+
rpc: [
|
3054
|
+
'https://rpc.soniclabs.com',
|
3055
|
+
'https://sonic-rpc.publicnode.com',
|
3056
|
+
'wss://sonic-rpc.publicnode.com'
|
3057
|
+
],
|
3054
3058
|
faucets: [],
|
3055
3059
|
nativeCurrency: { name: 'Sonic', symbol: 'S', decimals: 18 },
|
3056
3060
|
features: [ { name: 'EIP155' } ],
|
@@ -4040,6 +4044,27 @@ const chainArray = [
|
|
4040
4044
|
}
|
4041
4045
|
]
|
4042
4046
|
},
|
4047
|
+
{
|
4048
|
+
name: 'WowChain Mainnet',
|
4049
|
+
title: 'WowChain Mainnet',
|
4050
|
+
chain: 'WowChain',
|
4051
|
+
rpc: [ 'https://rpc.wowchain.io' ],
|
4052
|
+
faucets: [],
|
4053
|
+
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
4054
|
+
infoURL: 'https://wowchain.io',
|
4055
|
+
shortName: 'wow',
|
4056
|
+
chainId: 203,
|
4057
|
+
networkId: 203,
|
4058
|
+
icon: 'wowchain',
|
4059
|
+
explorers: [
|
4060
|
+
{
|
4061
|
+
name: 'blockscout',
|
4062
|
+
url: 'https://explorer.wowchain.io',
|
4063
|
+
icon: 'wowchain',
|
4064
|
+
standard: 'EIP3091'
|
4065
|
+
}
|
4066
|
+
]
|
4067
|
+
},
|
4043
4068
|
{
|
4044
4069
|
name: 'opBNB Mainnet',
|
4045
4070
|
icon: 'bnbchain',
|
@@ -4669,7 +4694,11 @@ const chainArray = [
|
|
4669
4694
|
{
|
4670
4695
|
name: 'Fraxtal',
|
4671
4696
|
chain: 'FRAX',
|
4672
|
-
rpc: [
|
4697
|
+
rpc: [
|
4698
|
+
'https://rpc.frax.com',
|
4699
|
+
'https://fraxtal-rpc.publicnode.com',
|
4700
|
+
'wss://fraxtal-rpc.publicnode.com'
|
4701
|
+
],
|
4673
4702
|
faucets: [],
|
4674
4703
|
nativeCurrency: { name: 'Frax Ether', symbol: 'frxETH', decimals: 18 },
|
4675
4704
|
infoURL: 'https://mainnet.frax.com',
|
@@ -7316,6 +7345,29 @@ const chainArray = [
|
|
7316
7345
|
}
|
7317
7346
|
]
|
7318
7347
|
},
|
7348
|
+
{
|
7349
|
+
name: 'Skynet',
|
7350
|
+
chain: 'Skynet',
|
7351
|
+
rpc: [ 'http://rpc.skynet.io' ],
|
7352
|
+
nativeCurrency: { name: 'SkyUSD', symbol: 'sUSD', decimals: 18 },
|
7353
|
+
infoURL: 'http://explorer.skynet.io',
|
7354
|
+
shortName: 'Skynet',
|
7355
|
+
chainId: 619,
|
7356
|
+
networkId: 619,
|
7357
|
+
explorers: [
|
7358
|
+
{
|
7359
|
+
name: 'tracehawk',
|
7360
|
+
url: 'http://explorer.skynet.io',
|
7361
|
+
standard: 'none'
|
7362
|
+
}
|
7363
|
+
],
|
7364
|
+
faucets: [],
|
7365
|
+
parent: {
|
7366
|
+
type: 'L2',
|
7367
|
+
chain: 'eip155-42161',
|
7368
|
+
bridges: [ { url: 'http://bridge.skynet.io' } ]
|
7369
|
+
}
|
7370
|
+
},
|
7319
7371
|
{
|
7320
7372
|
name: 'Binary Mainnet',
|
7321
7373
|
chain: 'The Binary Holdings',
|
@@ -10013,7 +10065,9 @@ const chainArray = [
|
|
10013
10065
|
rpc: [
|
10014
10066
|
'https://andromeda.metis.io/?owner=1088',
|
10015
10067
|
'https://metis.drpc.org',
|
10016
|
-
'wss://metis.drpc.org'
|
10068
|
+
'wss://metis.drpc.org',
|
10069
|
+
'https://metis-rpc.publicnode.com',
|
10070
|
+
'wss://metis-rpc.publicnode.com'
|
10017
10071
|
],
|
10018
10072
|
faucets: [],
|
10019
10073
|
nativeCurrency: { name: 'Metis', symbol: 'METIS', decimals: 18 },
|
@@ -11368,7 +11422,11 @@ const chainArray = [
|
|
11368
11422
|
{
|
11369
11423
|
name: 'Unichain Sepolia Testnet',
|
11370
11424
|
chain: 'ETH',
|
11371
|
-
rpc: [
|
11425
|
+
rpc: [
|
11426
|
+
'https://sepolia.unichain.org',
|
11427
|
+
'https://unichain-sepolia-rpc.publicnode.com',
|
11428
|
+
'wss://unichain-sepolia-rpc.publicnode.com'
|
11429
|
+
],
|
11372
11430
|
faucets: [],
|
11373
11431
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
11374
11432
|
infoURL: 'https://unichain.org',
|
@@ -15084,6 +15142,29 @@ const chainArray = [
|
|
15084
15142
|
explorers: [],
|
15085
15143
|
status: 'incubating'
|
15086
15144
|
},
|
15145
|
+
{
|
15146
|
+
name: 'CratD2C',
|
15147
|
+
chain: 'CRATD2C',
|
15148
|
+
rpc: [
|
15149
|
+
'https://node1.cratd2csmartchain.io',
|
15150
|
+
'https://node2.cratd2csmartchain.io',
|
15151
|
+
'https://node3.cratd2csmartchain.io'
|
15152
|
+
],
|
15153
|
+
faucets: [],
|
15154
|
+
nativeCurrency: { name: 'CRATD2C', symbol: 'CRAT', decimals: 18 },
|
15155
|
+
infoURL: 'https://cratd2csmartchain.io',
|
15156
|
+
shortName: 'cratd2c',
|
15157
|
+
chainId: 2310,
|
15158
|
+
networkId: 2310,
|
15159
|
+
explorers: [
|
15160
|
+
{
|
15161
|
+
name: 'Blockscout',
|
15162
|
+
url: 'https://explorer.cratd2csmartchain.io',
|
15163
|
+
icon: 'blockscout',
|
15164
|
+
standard: 'EIP3091'
|
15165
|
+
}
|
15166
|
+
]
|
15167
|
+
},
|
15087
15168
|
{
|
15088
15169
|
name: 'Chronicle Vesuvius - Lit Protocol Testnet',
|
15089
15170
|
chain: 'LPV',
|
@@ -15652,7 +15733,11 @@ const chainArray = [
|
|
15652
15733
|
{
|
15653
15734
|
name: 'Fraxtal Testnet',
|
15654
15735
|
chain: 'FRAX',
|
15655
|
-
rpc: [
|
15736
|
+
rpc: [
|
15737
|
+
'https://rpc.testnet.frax.com',
|
15738
|
+
'https://fraxtal-holesky-rpc.publicnode.com',
|
15739
|
+
'wss://fraxtal-holesky-rpc.publicnode.com'
|
15740
|
+
],
|
15656
15741
|
faucets: [],
|
15657
15742
|
nativeCurrency: { name: 'Frax Ether', symbol: 'frxETH', decimals: 18 },
|
15658
15743
|
infoURL: 'https://testnet.frax.com',
|
@@ -16710,6 +16795,52 @@ const chainArray = [
|
|
16710
16795
|
slip44: 1,
|
16711
16796
|
status: 'incubating'
|
16712
16797
|
},
|
16798
|
+
{
|
16799
|
+
name: 'Meroneum',
|
16800
|
+
chain: 'MERON',
|
16801
|
+
icon: 'meron',
|
16802
|
+
rpc: [
|
16803
|
+
'https://mainnet-node1.meronscan.ai/',
|
16804
|
+
'https://mainnet-node2.meronscan.ai/',
|
16805
|
+
'https://mainnet-node3.meronscan.ai/'
|
16806
|
+
],
|
16807
|
+
faucets: [],
|
16808
|
+
nativeCurrency: { name: 'MERON', symbol: 'MERON', decimals: 18 },
|
16809
|
+
infoURL: 'https://www.meroneum.ai',
|
16810
|
+
shortName: 'meron-testnet',
|
16811
|
+
chainId: 3366,
|
16812
|
+
networkId: 3366,
|
16813
|
+
explorers: [
|
16814
|
+
{
|
16815
|
+
name: 'meronscan',
|
16816
|
+
url: 'https://meronscan.ai',
|
16817
|
+
standard: 'EIP3091'
|
16818
|
+
}
|
16819
|
+
]
|
16820
|
+
},
|
16821
|
+
{
|
16822
|
+
name: 'Meroneum Testnet',
|
16823
|
+
chain: 'MERON',
|
16824
|
+
icon: 'meron',
|
16825
|
+
rpc: [
|
16826
|
+
'https://testnet-node1.meronscan.ai/',
|
16827
|
+
'https://testnet-node2.meronscan.ai/',
|
16828
|
+
'https://testnet-node3.meronscan.ai/'
|
16829
|
+
],
|
16830
|
+
faucets: [],
|
16831
|
+
nativeCurrency: { name: 'MERON', symbol: 'MERON', decimals: 18 },
|
16832
|
+
infoURL: 'https://www.meroneum.ai/',
|
16833
|
+
shortName: 'meron',
|
16834
|
+
chainId: 3369,
|
16835
|
+
networkId: 3369,
|
16836
|
+
explorers: [
|
16837
|
+
{
|
16838
|
+
name: 'meronscan',
|
16839
|
+
url: 'https://testnet.meronscan.ai',
|
16840
|
+
standard: 'EIP3091'
|
16841
|
+
}
|
16842
|
+
]
|
16843
|
+
},
|
16713
16844
|
{
|
16714
16845
|
name: 'Paribu Net Mainnet',
|
16715
16846
|
chain: 'PRB',
|
@@ -21104,6 +21235,24 @@ const chainArray = [
|
|
21104
21235
|
}
|
21105
21236
|
]
|
21106
21237
|
},
|
21238
|
+
{
|
21239
|
+
name: 'PandaSea Testnet',
|
21240
|
+
chain: 'PandaSea Testnet',
|
21241
|
+
rpc: [ 'https://rpc.testnet.pandasea.io' ],
|
21242
|
+
faucets: [ 'https://faucet.pandasea.io' ],
|
21243
|
+
nativeCurrency: { name: 'PandaSea Coin', symbol: 'PANDA', decimals: 18 },
|
21244
|
+
infoURL: 'https://test.pandaseascan.com',
|
21245
|
+
shortName: 'Pandasea-Testnet',
|
21246
|
+
chainId: 7770,
|
21247
|
+
networkId: 7770,
|
21248
|
+
explorers: [
|
21249
|
+
{
|
21250
|
+
name: 'tracehawk',
|
21251
|
+
url: 'https://test.pandaseascan.com',
|
21252
|
+
standard: 'none'
|
21253
|
+
}
|
21254
|
+
]
|
21255
|
+
},
|
21107
21256
|
{
|
21108
21257
|
name: 'Bitrock Testnet',
|
21109
21258
|
chain: 'Bitrock',
|
@@ -27408,6 +27557,25 @@ const chainArray = [
|
|
27408
27557
|
}
|
27409
27558
|
]
|
27410
27559
|
},
|
27560
|
+
{
|
27561
|
+
name: 'Ferrum Quantum Portal Network',
|
27562
|
+
chain: 'QPN',
|
27563
|
+
icon: 'ferrum',
|
27564
|
+
rpc: [ 'https://qpn.svcs.ferrumnetwork.io' ],
|
27565
|
+
faucets: [],
|
27566
|
+
nativeCurrency: { name: 'Ferrum', symbol: 'qpFRM', decimals: 18 },
|
27567
|
+
infoURL: 'https://ferrum.network',
|
27568
|
+
shortName: 'qpn',
|
27569
|
+
chainId: 26100,
|
27570
|
+
networkId: 26100,
|
27571
|
+
explorers: [
|
27572
|
+
{
|
27573
|
+
name: 'ferrumscout',
|
27574
|
+
url: 'https://explorer.ferrumnetwork.io',
|
27575
|
+
standard: 'none'
|
27576
|
+
}
|
27577
|
+
]
|
27578
|
+
},
|
27411
27579
|
{
|
27412
27580
|
name: 'DucatusX Testnet',
|
27413
27581
|
chain: 'DUCX',
|
@@ -28769,6 +28937,31 @@ const chainArray = [
|
|
28769
28937
|
}
|
28770
28938
|
]
|
28771
28939
|
},
|
28940
|
+
{
|
28941
|
+
name: 'PMON Chain',
|
28942
|
+
chain: '42001',
|
28943
|
+
rpc: [ 'https://rpc.pmon.xyz' ],
|
28944
|
+
faucets: [],
|
28945
|
+
nativeCurrency: { name: 'PMON Token', symbol: 'PMON', decimals: 18 },
|
28946
|
+
infoURL: 'https://protocolmonsterlabs.com/pmon-chain',
|
28947
|
+
shortName: 'pmon',
|
28948
|
+
chainId: 42001,
|
28949
|
+
networkId: 42001,
|
28950
|
+
icon: 'pmon',
|
28951
|
+
explorers: [
|
28952
|
+
{
|
28953
|
+
name: 'blockscout',
|
28954
|
+
url: 'https://explorer.pmon.xyz',
|
28955
|
+
icon: 'blockscout',
|
28956
|
+
standard: 'EIP3091'
|
28957
|
+
}
|
28958
|
+
],
|
28959
|
+
parent: {
|
28960
|
+
type: 'L2',
|
28961
|
+
chain: 'eip155-42161',
|
28962
|
+
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
28963
|
+
}
|
28964
|
+
},
|
28772
28965
|
{
|
28773
28966
|
name: 'pegglecoin',
|
28774
28967
|
chain: '42069',
|
@@ -30315,7 +30508,11 @@ const chainArray = [
|
|
30315
30508
|
{
|
30316
30509
|
name: 'Sonic Blaze Testnet',
|
30317
30510
|
chain: 'blaze-testnet',
|
30318
|
-
rpc: [
|
30511
|
+
rpc: [
|
30512
|
+
'https://rpc.blaze.soniclabs.com',
|
30513
|
+
'https://sonic-blaze-rpc.publicnode.com',
|
30514
|
+
'wss://sonic-blaze-rpc.publicnode.com'
|
30515
|
+
],
|
30319
30516
|
faucets: [ 'https://blaze.soniclabs.com/account' ],
|
30320
30517
|
nativeCurrency: { name: 'Sonic', symbol: 'S', decimals: 18 },
|
30321
30518
|
features: [ { name: 'EIP155' } ],
|
@@ -30323,15 +30520,7 @@ const chainArray = [
|
|
30323
30520
|
shortName: 'blaze',
|
30324
30521
|
chainId: 57054,
|
30325
30522
|
networkId: 57054,
|
30326
|
-
icon: 'sonic'
|
30327
|
-
explorers: [
|
30328
|
-
{
|
30329
|
-
name: 'sonic blaze testnet',
|
30330
|
-
url: 'https://explorer.blaze.soniclabs.com',
|
30331
|
-
icon: 'sonic',
|
30332
|
-
standard: 'none'
|
30333
|
-
}
|
30334
|
-
]
|
30523
|
+
icon: 'sonic'
|
30335
30524
|
},
|
30336
30525
|
{
|
30337
30526
|
name: 'Ink',
|
@@ -30563,7 +30752,11 @@ const chainArray = [
|
|
30563
30752
|
{
|
30564
30753
|
name: 'Metis Sepolia Testnet',
|
30565
30754
|
chain: 'ETH',
|
30566
|
-
rpc: [
|
30755
|
+
rpc: [
|
30756
|
+
'https://sepolia.metisdevops.link',
|
30757
|
+
'https://metis-sepolia-rpc.publicnode.com',
|
30758
|
+
'wss://metis-sepolia-rpc.publicnode.com'
|
30759
|
+
],
|
30567
30760
|
faucets: [ 'https://sepolia.faucet.metisdevops.link' ],
|
30568
30761
|
nativeCurrency: { name: 'tMetis', symbol: 'tMETIS', decimals: 18 },
|
30569
30762
|
infoURL: 'https://www.metis.io',
|
@@ -31831,6 +32024,24 @@ const chainArray = [
|
|
31831
32024
|
}
|
31832
32025
|
]
|
31833
32026
|
},
|
32027
|
+
{
|
32028
|
+
name: 'Carrchain Testnet',
|
32029
|
+
chain: 'Carrchain Testnet',
|
32030
|
+
rpc: [ 'https://rpc-testnetcarrchain.artiffine.com' ],
|
32031
|
+
faucets: [ 'https://faucet-testnetcarrchain.artiffine.com' ],
|
32032
|
+
nativeCurrency: { name: 'Carrchain Coin', symbol: 'CARR', decimals: 18 },
|
32033
|
+
infoURL: 'https://explorer-testnetcarrchain.artiffine.com',
|
32034
|
+
shortName: 'Carrchain-Testnet',
|
32035
|
+
chainId: 77652,
|
32036
|
+
networkId: 77652,
|
32037
|
+
explorers: [
|
32038
|
+
{
|
32039
|
+
name: 'tracehawk',
|
32040
|
+
url: 'https://explorer-testnetcarrchain.artiffine.com',
|
32041
|
+
standard: 'none'
|
32042
|
+
}
|
32043
|
+
]
|
32044
|
+
},
|
31834
32045
|
{
|
31835
32046
|
name: 'Cycle Network Mainnet Sailboat',
|
31836
32047
|
chain: 'ETH',
|