eth-chainlist 0.0.359 → 0.0.360
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 +546 -85
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.360 (2024-03-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.359 ([b4e88bb](https://github.com/poowf/eth-chainlist/commit/b4e88bb2f6fa49efdc08d310f43323c5a89f89c7))
|
9
|
+
* update chain data ([08bdf1b](https://github.com/poowf/eth-chainlist/commit/08bdf1b27d332f55199b314d565e06c49d18e68b))
|
10
|
+
|
3
11
|
### 0.0.359 (2024-03-14)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -18,7 +18,9 @@ const chainArray = [
|
|
18
18
|
'https://rpc.mevblocker.io',
|
19
19
|
'https://rpc.mevblocker.io/fast',
|
20
20
|
'https://rpc.mevblocker.io/noreverts',
|
21
|
-
'https://rpc.mevblocker.io/fullprivacy'
|
21
|
+
'https://rpc.mevblocker.io/fullprivacy',
|
22
|
+
'https://eth.drpc.org',
|
23
|
+
'wss://eth.drpc.org'
|
22
24
|
],
|
23
25
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
24
26
|
faucets: [],
|
@@ -227,7 +229,9 @@ const chainArray = [
|
|
227
229
|
'https://optimism-rpc.publicnode.com',
|
228
230
|
'wss://optimism-rpc.publicnode.com',
|
229
231
|
'https://optimism.gateway.tenderly.co',
|
230
|
-
'wss://optimism.gateway.tenderly.co'
|
232
|
+
'wss://optimism.gateway.tenderly.co',
|
233
|
+
'https://optimism.drpc.org',
|
234
|
+
'wss://optimism.drpc.org'
|
231
235
|
],
|
232
236
|
faucets: [],
|
233
237
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -385,7 +389,11 @@ const chainArray = [
|
|
385
389
|
{
|
386
390
|
name: 'ThunderCore Testnet',
|
387
391
|
chain: 'TST',
|
388
|
-
rpc: [
|
392
|
+
rpc: [
|
393
|
+
'https://testnet-rpc.thundercore.com',
|
394
|
+
'https://thundercore-testnet.drpc.org',
|
395
|
+
'wss://thundercore-testnet.drpc.org'
|
396
|
+
],
|
389
397
|
faucets: [ 'https://faucet-testnet.thundercore.com' ],
|
390
398
|
nativeCurrency: { name: 'ThunderCore Testnet Token', symbol: 'TST', decimals: 18 },
|
391
399
|
infoURL: 'https://thundercore.com',
|
@@ -509,7 +517,9 @@ const chainArray = [
|
|
509
517
|
rpc: [
|
510
518
|
'https://evm.cronos.org',
|
511
519
|
'https://cronos-evm-rpc.publicnode.com',
|
512
|
-
'wss://cronos-evm-rpc.publicnode.com'
|
520
|
+
'wss://cronos-evm-rpc.publicnode.com',
|
521
|
+
'https://cronos.drpc.org',
|
522
|
+
'wss://cronos.drpc.org'
|
513
523
|
],
|
514
524
|
features: [ { name: 'EIP1559' } ],
|
515
525
|
faucets: [],
|
@@ -778,7 +788,11 @@ const chainArray = [
|
|
778
788
|
{
|
779
789
|
name: 'Telos EVM Mainnet',
|
780
790
|
chain: 'TLOS',
|
781
|
-
rpc: [
|
791
|
+
rpc: [
|
792
|
+
'https://mainnet.telos.net/evm',
|
793
|
+
'https://telos.drpc.org',
|
794
|
+
'wss://telos.drpc.org'
|
795
|
+
],
|
782
796
|
faucets: [],
|
783
797
|
nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 },
|
784
798
|
infoURL: 'https://telos.net',
|
@@ -796,7 +810,11 @@ const chainArray = [
|
|
796
810
|
{
|
797
811
|
name: 'Telos EVM Testnet',
|
798
812
|
chain: 'TLOS',
|
799
|
-
rpc: [
|
813
|
+
rpc: [
|
814
|
+
'https://testnet.telos.net/evm',
|
815
|
+
'https://telos-testnet.drpc.org',
|
816
|
+
'wss://telos-testnet.drpc.org'
|
817
|
+
],
|
800
818
|
faucets: [ 'https://app.telos.net/testnet/developers' ],
|
801
819
|
nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 },
|
802
820
|
infoURL: 'https://telos.net',
|
@@ -1825,25 +1843,25 @@ const chainArray = [
|
|
1825
1843
|
]
|
1826
1844
|
},
|
1827
1845
|
{
|
1828
|
-
name: '
|
1829
|
-
chain: '
|
1830
|
-
rpc: [ 'https://rpc.
|
1846
|
+
name: 'Viction',
|
1847
|
+
chain: 'Viction',
|
1848
|
+
rpc: [ 'https://rpc.viction.xyz' ],
|
1831
1849
|
faucets: [],
|
1832
|
-
nativeCurrency: { name: '
|
1833
|
-
infoURL: 'https://
|
1834
|
-
shortName: '
|
1850
|
+
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 },
|
1851
|
+
infoURL: 'https://viction.xyz',
|
1852
|
+
shortName: 'vic',
|
1835
1853
|
chainId: 88,
|
1836
1854
|
networkId: 88,
|
1837
1855
|
slip44: 889
|
1838
1856
|
},
|
1839
1857
|
{
|
1840
|
-
name: '
|
1841
|
-
chain: '
|
1842
|
-
rpc: [ 'https://rpc
|
1858
|
+
name: 'Viction Testnet',
|
1859
|
+
chain: 'Viction',
|
1860
|
+
rpc: [ 'https://rpc-testnet.viction.xyz' ],
|
1843
1861
|
faucets: [],
|
1844
|
-
nativeCurrency: { name: '
|
1845
|
-
infoURL: 'https://
|
1846
|
-
shortName: '
|
1862
|
+
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 },
|
1863
|
+
infoURL: 'https://viction.xyz',
|
1864
|
+
shortName: 'vict',
|
1847
1865
|
chainId: 89,
|
1848
1866
|
networkId: 89,
|
1849
1867
|
slip44: 1
|
@@ -2524,7 +2542,11 @@ const chainArray = [
|
|
2524
2542
|
{
|
2525
2543
|
name: 'Fuse Mainnet',
|
2526
2544
|
chain: 'FUSE',
|
2527
|
-
rpc: [
|
2545
|
+
rpc: [
|
2546
|
+
'https://rpc.fuse.io',
|
2547
|
+
'https://fuse.drpc.org',
|
2548
|
+
'wss://fuse.drpc.org'
|
2549
|
+
],
|
2528
2550
|
faucets: [],
|
2529
2551
|
nativeCurrency: { name: 'Fuse', symbol: 'FUSE', decimals: 18 },
|
2530
2552
|
infoURL: 'https://fuse.io/',
|
@@ -2759,7 +2781,9 @@ const chainArray = [
|
|
2759
2781
|
'https://polygon-bor-rpc.publicnode.com',
|
2760
2782
|
'wss://polygon-bor-rpc.publicnode.com',
|
2761
2783
|
'https://polygon.gateway.tenderly.co',
|
2762
|
-
'wss://polygon.gateway.tenderly.co'
|
2784
|
+
'wss://polygon.gateway.tenderly.co',
|
2785
|
+
'https://polygon.drpc.org',
|
2786
|
+
'wss://polygon.drpc.org'
|
2763
2787
|
],
|
2764
2788
|
faucets: [],
|
2765
2789
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
@@ -3154,7 +3178,11 @@ const chainArray = [
|
|
3154
3178
|
{
|
3155
3179
|
name: 'Manta Pacific Mainnet',
|
3156
3180
|
chain: 'Manta Pacific',
|
3157
|
-
rpc: [
|
3181
|
+
rpc: [
|
3182
|
+
'https://pacific-rpc.manta.network/http',
|
3183
|
+
'https://manta-pacific.drpc.org',
|
3184
|
+
'wss://manta-pacific.drpc.org'
|
3185
|
+
],
|
3158
3186
|
faucets: [],
|
3159
3187
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3160
3188
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -3385,7 +3413,11 @@ const chainArray = [
|
|
3385
3413
|
{
|
3386
3414
|
name: 'BitTorrent Chain Mainnet',
|
3387
3415
|
chain: 'BTTC',
|
3388
|
-
rpc: [
|
3416
|
+
rpc: [
|
3417
|
+
'https://rpc.bt.io',
|
3418
|
+
'https://bittorrent.drpc.org',
|
3419
|
+
'wss://bittorrent.drpc.org'
|
3420
|
+
],
|
3389
3421
|
faucets: [],
|
3390
3422
|
nativeCurrency: { name: 'BitTorrent', symbol: 'BTT', decimals: 18 },
|
3391
3423
|
infoURL: 'https://bt.io',
|
@@ -3449,7 +3481,9 @@ const chainArray = [
|
|
3449
3481
|
'https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
|
3450
3482
|
'wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
|
3451
3483
|
'https://opbnb-rpc.publicnode.com',
|
3452
|
-
'wss://opbnb-rpc.publicnode.com'
|
3484
|
+
'wss://opbnb-rpc.publicnode.com',
|
3485
|
+
'https://opbnb.drpc.org',
|
3486
|
+
'wss://opbnb.drpc.org'
|
3453
3487
|
],
|
3454
3488
|
faucets: [],
|
3455
3489
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
@@ -3855,7 +3889,9 @@ const chainArray = [
|
|
3855
3889
|
rpc: [
|
3856
3890
|
'https://rpc.ftm.tools',
|
3857
3891
|
'https://fantom-rpc.publicnode.com',
|
3858
|
-
'wss://fantom-rpc.publicnode.com'
|
3892
|
+
'wss://fantom-rpc.publicnode.com',
|
3893
|
+
'https://fantom.drpc.org',
|
3894
|
+
'wss://fantom.drpc.org'
|
3859
3895
|
],
|
3860
3896
|
faucets: [],
|
3861
3897
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
@@ -3889,6 +3925,7 @@ const chainArray = [
|
|
3889
3925
|
shortName: 'fraxtal',
|
3890
3926
|
chainId: 252,
|
3891
3927
|
networkId: 252,
|
3928
|
+
icon: 'fraxtal',
|
3892
3929
|
explorers: [
|
3893
3930
|
{
|
3894
3931
|
name: 'fraxscan',
|
@@ -4105,7 +4142,9 @@ const chainArray = [
|
|
4105
4142
|
'https://boba-ethereum.gateway.tenderly.co',
|
4106
4143
|
'https://gateway.tenderly.co/public/boba-ethereum',
|
4107
4144
|
'wss://boba-ethereum.gateway.tenderly.co/',
|
4108
|
-
'wss://gateway.tenderly.co/public/boba-ethereum'
|
4145
|
+
'wss://gateway.tenderly.co/public/boba-ethereum',
|
4146
|
+
'https://boba-eth.drpc.org',
|
4147
|
+
'wss://boba-eth.drpc.org'
|
4109
4148
|
],
|
4110
4149
|
faucets: [],
|
4111
4150
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -4275,7 +4314,11 @@ const chainArray = [
|
|
4275
4314
|
{
|
4276
4315
|
name: 'zkSync Sepolia Testnet',
|
4277
4316
|
chain: 'ETH',
|
4278
|
-
rpc: [
|
4317
|
+
rpc: [
|
4318
|
+
'https://sepolia.era.zksync.dev',
|
4319
|
+
'https://zksync-sepolia.drpc.org',
|
4320
|
+
'wss://zksync-sepolia.drpc.org'
|
4321
|
+
],
|
4279
4322
|
faucets: [],
|
4280
4323
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
4281
4324
|
infoURL: 'https://zksync.io/',
|
@@ -4454,7 +4497,9 @@ const chainArray = [
|
|
4454
4497
|
'https://api.node.glif.io/',
|
4455
4498
|
'https://rpc.ankr.com/filecoin',
|
4456
4499
|
'https://filecoin-mainnet.chainstacklabs.com/rpc/v1',
|
4457
|
-
'https://filfox.info/rpc/v1'
|
4500
|
+
'https://filfox.info/rpc/v1',
|
4501
|
+
'https://filecoin.drpc.org',
|
4502
|
+
'wss://filecoin.drpc.org'
|
4458
4503
|
],
|
4459
4504
|
faucets: [],
|
4460
4505
|
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
@@ -4556,7 +4601,11 @@ const chainArray = [
|
|
4556
4601
|
{
|
4557
4602
|
name: 'zkSync Mainnet',
|
4558
4603
|
chain: 'ETH',
|
4559
|
-
rpc: [
|
4604
|
+
rpc: [
|
4605
|
+
'https://mainnet.era.zksync.io',
|
4606
|
+
'https://zksync.drpc.org',
|
4607
|
+
'wss://zksync.drpc.org'
|
4608
|
+
],
|
4560
4609
|
faucets: [],
|
4561
4610
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
4562
4611
|
infoURL: 'https://zksync.io/',
|
@@ -4655,7 +4704,11 @@ const chainArray = [
|
|
4655
4704
|
{
|
4656
4705
|
name: 'Cronos Testnet',
|
4657
4706
|
chain: 'CRO',
|
4658
|
-
rpc: [
|
4707
|
+
rpc: [
|
4708
|
+
'https://evm-t3.cronos.org',
|
4709
|
+
'https://cronos-testnet.drpc.org',
|
4710
|
+
'wss://cronos-testnet.drpc.org'
|
4711
|
+
],
|
4659
4712
|
faucets: [ 'https://cronos.org/faucet' ],
|
4660
4713
|
nativeCurrency: { name: 'Cronos Test Coin', symbol: 'TCRO', decimals: 18 },
|
4661
4714
|
infoURL: 'https://cronos.org',
|
@@ -5000,7 +5053,9 @@ const chainArray = [
|
|
5000
5053
|
'https://optimism-goerli-rpc.publicnode.com',
|
5001
5054
|
'wss://optimism-goerli-rpc.publicnode.com',
|
5002
5055
|
'https://optimism-goerli.gateway.tenderly.co',
|
5003
|
-
'wss://optimism-goerli.gateway.tenderly.co'
|
5056
|
+
'wss://optimism-goerli.gateway.tenderly.co',
|
5057
|
+
'https://optimism-testnet.drpc.org',
|
5058
|
+
'wss://optimism-testnet.drpc.org'
|
5004
5059
|
],
|
5005
5060
|
faucets: [],
|
5006
5061
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
@@ -7301,7 +7356,11 @@ const chainArray = [
|
|
7301
7356
|
{
|
7302
7357
|
name: 'Klaytn Testnet Baobab',
|
7303
7358
|
chain: 'KLAY',
|
7304
|
-
rpc: [
|
7359
|
+
rpc: [
|
7360
|
+
'https://api.baobab.klaytn.net:8651',
|
7361
|
+
'https://klaytn-baobab.drpc.org',
|
7362
|
+
'wss://klaytn-baobab.drpc.org'
|
7363
|
+
],
|
7305
7364
|
faucets: [ 'https://baobab.wallet.klaytn.com/access?next=faucet' ],
|
7306
7365
|
nativeCurrency: { name: 'KLAY', symbol: 'KLAY', decimals: 18 },
|
7307
7366
|
infoURL: 'https://www.klaytn.com/',
|
@@ -7662,7 +7721,11 @@ const chainArray = [
|
|
7662
7721
|
{
|
7663
7722
|
name: 'Metis Andromeda Mainnet',
|
7664
7723
|
chain: 'ETH',
|
7665
|
-
rpc: [
|
7724
|
+
rpc: [
|
7725
|
+
'https://andromeda.metis.io/?owner=1088',
|
7726
|
+
'https://metis.drpc.org',
|
7727
|
+
'wss://metis.drpc.org'
|
7728
|
+
],
|
7666
7729
|
faucets: [],
|
7667
7730
|
nativeCurrency: { name: 'Metis', symbol: 'METIS', decimals: 18 },
|
7668
7731
|
infoURL: 'https://www.metis.io',
|
@@ -7753,7 +7816,11 @@ const chainArray = [
|
|
7753
7816
|
name: 'Polygon zkEVM',
|
7754
7817
|
title: 'Polygon zkEVM',
|
7755
7818
|
chain: 'Polygon',
|
7756
|
-
rpc: [
|
7819
|
+
rpc: [
|
7820
|
+
'https://zkevm-rpc.com',
|
7821
|
+
'https://polygon-zkevm.drpc.org',
|
7822
|
+
'wss://polygon-zkevm.drpc.org'
|
7823
|
+
],
|
7757
7824
|
faucets: [],
|
7758
7825
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
7759
7826
|
infoURL: 'https://polygon.technology/polygon-zkevm',
|
@@ -7882,7 +7949,12 @@ const chainArray = [
|
|
7882
7949
|
name: 'Core Blockchain Mainnet',
|
7883
7950
|
chain: 'Core',
|
7884
7951
|
icon: 'core',
|
7885
|
-
rpc: [
|
7952
|
+
rpc: [
|
7953
|
+
'https://rpc.coredao.org/',
|
7954
|
+
'https://rpc-core.icecreamswap.com',
|
7955
|
+
'https://core.drpc.org',
|
7956
|
+
'wss://core.drpc.org'
|
7957
|
+
],
|
7886
7958
|
faucets: [],
|
7887
7959
|
nativeCurrency: {
|
7888
7960
|
name: 'Core Blockchain Native Token',
|
@@ -8399,7 +8471,9 @@ const chainArray = [
|
|
8399
8471
|
'https://rpc.api.moonbeam.network',
|
8400
8472
|
'wss://wss.api.moonbeam.network',
|
8401
8473
|
'https://moonbeam-rpc.publicnode.com',
|
8402
|
-
'wss://moonbeam-rpc.publicnode.com'
|
8474
|
+
'wss://moonbeam-rpc.publicnode.com',
|
8475
|
+
'https://moonbeam.drpc.org',
|
8476
|
+
'wss://moonbeam.drpc.org'
|
8403
8477
|
],
|
8404
8478
|
faucets: [],
|
8405
8479
|
nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
|
@@ -8422,7 +8496,9 @@ const chainArray = [
|
|
8422
8496
|
'https://rpc.api.moonriver.moonbeam.network',
|
8423
8497
|
'wss://wss.api.moonriver.moonbeam.network',
|
8424
8498
|
'https://moonriver-rpc.publicnode.com',
|
8425
|
-
'wss://moonriver-rpc.publicnode.com'
|
8499
|
+
'wss://moonriver-rpc.publicnode.com',
|
8500
|
+
'https://moonriver.drpc.org',
|
8501
|
+
'wss://moonriver.drpc.org'
|
8426
8502
|
],
|
8427
8503
|
faucets: [],
|
8428
8504
|
nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
|
@@ -8455,7 +8531,9 @@ const chainArray = [
|
|
8455
8531
|
chain: 'MOON',
|
8456
8532
|
rpc: [
|
8457
8533
|
'https://rpc.api.moonbase.moonbeam.network',
|
8458
|
-
'wss://wss.api.moonbase.moonbeam.network'
|
8534
|
+
'wss://wss.api.moonbase.moonbeam.network',
|
8535
|
+
'https://moonbase-alpha.drpc.org',
|
8536
|
+
'wss://moonbase-alpha.drpc.org'
|
8459
8537
|
],
|
8460
8538
|
faucets: [],
|
8461
8539
|
nativeCurrency: { name: 'Dev', symbol: 'DEV', decimals: 18 },
|
@@ -8889,7 +8967,11 @@ const chainArray = [
|
|
8889
8967
|
name: 'Polygon zkEVM Testnet',
|
8890
8968
|
title: 'Polygon zkEVM Testnet',
|
8891
8969
|
chain: 'Polygon',
|
8892
|
-
rpc: [
|
8970
|
+
rpc: [
|
8971
|
+
'https://rpc.public.zkevm-test.net',
|
8972
|
+
'https://polygon-zkevm-testnet.drpc.org',
|
8973
|
+
'wss://polygon-zkevm-testnet.drpc.org'
|
8974
|
+
],
|
8893
8975
|
faucets: [],
|
8894
8976
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
8895
8977
|
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
@@ -9282,6 +9364,25 @@ const chainArray = [
|
|
9282
9364
|
}
|
9283
9365
|
]
|
9284
9366
|
},
|
9367
|
+
{
|
9368
|
+
name: 'Doric Network',
|
9369
|
+
chain: 'DRC',
|
9370
|
+
icon: 'doric',
|
9371
|
+
rpc: [ 'https://mainnet.doric.network' ],
|
9372
|
+
faucets: [],
|
9373
|
+
nativeCurrency: { name: 'Doric Native Token', symbol: 'DRC', decimals: 18 },
|
9374
|
+
infoURL: 'https://doric.network',
|
9375
|
+
shortName: 'DRC',
|
9376
|
+
chainId: 1717,
|
9377
|
+
networkId: 1717,
|
9378
|
+
explorers: [
|
9379
|
+
{
|
9380
|
+
name: 'Doric Explorer',
|
9381
|
+
url: 'https://explorer.doric.network',
|
9382
|
+
standard: 'EIP3091'
|
9383
|
+
}
|
9384
|
+
]
|
9385
|
+
},
|
9285
9386
|
{
|
9286
9387
|
name: 'Palette Chain Mainnet',
|
9287
9388
|
chain: 'PLT',
|
@@ -9303,6 +9404,24 @@ const chainArray = [
|
|
9303
9404
|
}
|
9304
9405
|
]
|
9305
9406
|
},
|
9407
|
+
{
|
9408
|
+
name: 'Reya Network',
|
9409
|
+
chain: 'Reya',
|
9410
|
+
rpc: [ 'https://rpc.reya.network', 'wss://ws.reya.network' ],
|
9411
|
+
faucets: [],
|
9412
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
9413
|
+
infoURL: 'https://reya.network',
|
9414
|
+
shortName: 'reya',
|
9415
|
+
chainId: 1729,
|
9416
|
+
networkId: 1729,
|
9417
|
+
explorers: [
|
9418
|
+
{
|
9419
|
+
name: 'Reya Network Explorer',
|
9420
|
+
url: 'https://explorer.reya.network',
|
9421
|
+
standard: 'EIP3091'
|
9422
|
+
}
|
9423
|
+
]
|
9424
|
+
},
|
9306
9425
|
{
|
9307
9426
|
name: 'PartyChain',
|
9308
9427
|
chain: 'mainnet',
|
@@ -10001,6 +10120,27 @@ const chainArray = [
|
|
10001
10120
|
networkId: 1987,
|
10002
10121
|
slip44: 1987
|
10003
10122
|
},
|
10123
|
+
{
|
10124
|
+
name: 'Hubble Exchange',
|
10125
|
+
chain: 'Hubblenet',
|
10126
|
+
icon: 'hubblenet',
|
10127
|
+
rpc: [ 'https://rpc.hubble.exchange', 'wss://ws-rpc.hubble.exchange' ],
|
10128
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10129
|
+
faucets: [],
|
10130
|
+
nativeCurrency: { name: 'USD Coin', symbol: 'USDC', decimals: 18 },
|
10131
|
+
infoURL: 'https://www.hubble.exchange',
|
10132
|
+
shortName: 'hubblenet',
|
10133
|
+
chainId: 1992,
|
10134
|
+
networkId: 1992,
|
10135
|
+
slip44: 60,
|
10136
|
+
explorers: [
|
10137
|
+
{
|
10138
|
+
name: 'routescan',
|
10139
|
+
url: 'https://explorer.hubble.exchange',
|
10140
|
+
standard: 'EIP3091'
|
10141
|
+
}
|
10142
|
+
]
|
10143
|
+
},
|
10004
10144
|
{
|
10005
10145
|
name: 'Ekta',
|
10006
10146
|
chain: 'EKTA',
|
@@ -10897,7 +11037,9 @@ const chainArray = [
|
|
10897
11037
|
rpc: [
|
10898
11038
|
'https://evm.testnet.kava.io',
|
10899
11039
|
'https://kava-evm-testnet.rpc.thirdweb.com',
|
10900
|
-
'wss://wevm.testnet.kava.io'
|
11040
|
+
'wss://wevm.testnet.kava.io',
|
11041
|
+
'https://kava-testnet.drpc.org',
|
11042
|
+
'wss://kava-testnet.drpc.org'
|
10901
11043
|
],
|
10902
11044
|
faucets: [ 'https://faucet.kava.io' ],
|
10903
11045
|
nativeCurrency: { name: 'TKava', symbol: 'TKAVA', decimals: 18 },
|
@@ -10927,7 +11069,9 @@ const chainArray = [
|
|
10927
11069
|
'wss://kava-evm-rpc.publicnode.com',
|
10928
11070
|
'https://evm.kava-rpc.com',
|
10929
11071
|
'https://rpc.ankr.com/kava_evm',
|
10930
|
-
'wss://wevm.kava-rpc.com'
|
11072
|
+
'wss://wevm.kava-rpc.com',
|
11073
|
+
'https://kava.drpc.org',
|
11074
|
+
'wss://kava.drpc.org'
|
10931
11075
|
],
|
10932
11076
|
faucets: [],
|
10933
11077
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
@@ -11108,6 +11252,27 @@ const chainArray = [
|
|
11108
11252
|
}
|
11109
11253
|
]
|
11110
11254
|
},
|
11255
|
+
{
|
11256
|
+
name: 'Atleta Testnet',
|
11257
|
+
chain: 'Atleta',
|
11258
|
+
rpc: [ 'https://atleta-testnet-rpc.quark.blue:9944' ],
|
11259
|
+
faucets: [ 'https://faucet.atleta.network' ],
|
11260
|
+
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
11261
|
+
infoURL: 'https://atleta.network',
|
11262
|
+
shortName: 'atla',
|
11263
|
+
chainId: 2340,
|
11264
|
+
networkId: 2340,
|
11265
|
+
slip44: 1,
|
11266
|
+
icon: 'atleta',
|
11267
|
+
explorers: [
|
11268
|
+
{
|
11269
|
+
name: 'Atleta Testnet Explorer',
|
11270
|
+
icon: 'atleta',
|
11271
|
+
url: 'http://185.234.69.18/?rpc=wss%3A%2F%2Fatleta-testnet-rpc.quark.blue%3A9944#/explorer',
|
11272
|
+
standard: 'none'
|
11273
|
+
}
|
11274
|
+
]
|
11275
|
+
},
|
11111
11276
|
{
|
11112
11277
|
name: '(deprecated) Kroma Sepolia',
|
11113
11278
|
title: '(deprecated) Kroma Testnet Sepolia',
|
@@ -11369,6 +11534,7 @@ const chainArray = [
|
|
11369
11534
|
chainId: 2522,
|
11370
11535
|
networkId: 2522,
|
11371
11536
|
slip44: 1,
|
11537
|
+
icon: 'fraxtal',
|
11372
11538
|
explorers: [
|
11373
11539
|
{
|
11374
11540
|
name: 'fraxscan',
|
@@ -11635,6 +11801,31 @@ const chainArray = [
|
|
11635
11801
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
11636
11802
|
}
|
11637
11803
|
},
|
11804
|
+
{
|
11805
|
+
name: 'HYCHAIN',
|
11806
|
+
chainId: 2911,
|
11807
|
+
shortName: 'hychain',
|
11808
|
+
chain: 'ETH',
|
11809
|
+
networkId: 2911,
|
11810
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
11811
|
+
rpc: [ 'https://rpc.hychain.com/http' ],
|
11812
|
+
faucets: [],
|
11813
|
+
infoURL: 'https://www.hychain.com',
|
11814
|
+
icon: 'hychain',
|
11815
|
+
explorers: [
|
11816
|
+
{
|
11817
|
+
name: 'blockscout',
|
11818
|
+
url: 'https://explorer.hychain.com',
|
11819
|
+
icon: 'hychain',
|
11820
|
+
standard: 'EIP3091'
|
11821
|
+
}
|
11822
|
+
],
|
11823
|
+
parent: {
|
11824
|
+
type: 'L2',
|
11825
|
+
chain: 'eip155-1',
|
11826
|
+
bridges: [ { url: 'https://bridge.hychain.com' } ]
|
11827
|
+
}
|
11828
|
+
},
|
11638
11829
|
{
|
11639
11830
|
name: 'Xenon Chain Testnet',
|
11640
11831
|
chain: 'XEN',
|
@@ -12540,7 +12731,9 @@ const chainArray = [
|
|
12540
12731
|
rpc: [
|
12541
12732
|
'https://rpc.testnet.fantom.network',
|
12542
12733
|
'https://fantom-testnet-rpc.publicnode.com',
|
12543
|
-
'wss://fantom-testnet-rpc.publicnode.com'
|
12734
|
+
'wss://fantom-testnet-rpc.publicnode.com',
|
12735
|
+
'https://fantom-testnet.drpc.org',
|
12736
|
+
'wss://fantom-testnet.drpc.org'
|
12544
12737
|
],
|
12545
12738
|
faucets: [ 'https://faucet.fantom.network' ],
|
12546
12739
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
@@ -13413,6 +13606,39 @@ const chainArray = [
|
|
13413
13606
|
}
|
13414
13607
|
]
|
13415
13608
|
},
|
13609
|
+
{
|
13610
|
+
name: 'Coordinape Testnet',
|
13611
|
+
chain: 'Coordinape Testnet',
|
13612
|
+
rpc: [ 'https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz' ],
|
13613
|
+
faucets: [],
|
13614
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13615
|
+
infoURL: 'https://coordinape.com/',
|
13616
|
+
shortName: 'coordinape-testnet',
|
13617
|
+
chainId: 5103,
|
13618
|
+
networkId: 5103
|
13619
|
+
},
|
13620
|
+
{
|
13621
|
+
name: 'Charmverse Testnet',
|
13622
|
+
chain: 'Charmverse Testnet',
|
13623
|
+
rpc: [ 'https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz' ],
|
13624
|
+
faucets: [],
|
13625
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13626
|
+
infoURL: 'https://charmverse.io/',
|
13627
|
+
shortName: 'charmverse-testnet',
|
13628
|
+
chainId: 5104,
|
13629
|
+
networkId: 5104
|
13630
|
+
},
|
13631
|
+
{
|
13632
|
+
name: 'Superloyalty Testnet',
|
13633
|
+
chain: 'Superloyalty Testnet',
|
13634
|
+
rpc: [ 'https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz' ],
|
13635
|
+
faucets: [],
|
13636
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13637
|
+
infoURL: 'https://www.superloyal.com/',
|
13638
|
+
shortName: 'superloyalty-testnet',
|
13639
|
+
chainId: 5105,
|
13640
|
+
networkId: 5105
|
13641
|
+
},
|
13416
13642
|
{
|
13417
13643
|
name: 'Bahamut',
|
13418
13644
|
title: 'Bahamut mainnet',
|
@@ -14686,6 +14912,31 @@ const chainArray = [
|
|
14686
14912
|
}
|
14687
14913
|
]
|
14688
14914
|
},
|
14915
|
+
{
|
14916
|
+
name: 'Orenium Mainnet Protocol',
|
14917
|
+
chain: 'ORE',
|
14918
|
+
rpc: [
|
14919
|
+
'https://validator-mainnet.orenium.org',
|
14920
|
+
'https://rpc-oracle-mainnet.orenium.org',
|
14921
|
+
'https://portalmainnet.orenium.org'
|
14922
|
+
],
|
14923
|
+
nativeCurrency: { name: 'ORENIUM', symbol: 'ORE', decimals: 18 },
|
14924
|
+
infoURL: 'https://orenium.org',
|
14925
|
+
shortName: 'ore',
|
14926
|
+
chainId: 7778,
|
14927
|
+
networkId: 7778,
|
14928
|
+
slip44: 1,
|
14929
|
+
icon: 'ore',
|
14930
|
+
faucets: [],
|
14931
|
+
explorers: [
|
14932
|
+
{
|
14933
|
+
name: 'ORE Mainnet Explorer',
|
14934
|
+
icon: 'ore',
|
14935
|
+
url: 'https://oreniumscan.org',
|
14936
|
+
standard: 'none'
|
14937
|
+
}
|
14938
|
+
]
|
14939
|
+
},
|
14689
14940
|
{
|
14690
14941
|
name: 'MaalChain Testnet',
|
14691
14942
|
chain: 'MaalChain Testnet',
|
@@ -15376,6 +15627,25 @@ const chainArray = [
|
|
15376
15627
|
}
|
15377
15628
|
]
|
15378
15629
|
},
|
15630
|
+
{
|
15631
|
+
name: 'SuperLumio',
|
15632
|
+
chain: 'SuperLumio',
|
15633
|
+
icon: 'superlumio',
|
15634
|
+
rpc: [ 'https://mainnet.lumio.io/' ],
|
15635
|
+
faucets: [],
|
15636
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15637
|
+
infoURL: 'https://lumio.io/',
|
15638
|
+
shortName: 'superlumio',
|
15639
|
+
chainId: 8866,
|
15640
|
+
networkId: 8866,
|
15641
|
+
explorers: [
|
15642
|
+
{
|
15643
|
+
name: 'Lumio explorer',
|
15644
|
+
url: 'https://explorer.lumio.io',
|
15645
|
+
standard: 'none'
|
15646
|
+
}
|
15647
|
+
]
|
15648
|
+
},
|
15379
15649
|
{
|
15380
15650
|
name: 'Unique',
|
15381
15651
|
icon: 'unique',
|
@@ -15510,7 +15780,10 @@ const chainArray = [
|
|
15510
15780
|
chain: 'ORE',
|
15511
15781
|
rpc: [
|
15512
15782
|
'https://rpc-dev-testnet.orenium.org/',
|
15513
|
-
'https://rpc-testnet.orenium.org/'
|
15783
|
+
'https://rpc-testnet.orenium.org/',
|
15784
|
+
'https://rpc-orc.oredex.finance',
|
15785
|
+
'https://testnet-rpc.oredex.finance',
|
15786
|
+
'https://oredex-node.oredex.finance'
|
15514
15787
|
],
|
15515
15788
|
nativeCurrency: { name: 'ORENIUM', symbol: 'tORE', decimals: 18 },
|
15516
15789
|
infoURL: 'https://orenium.org',
|
@@ -16067,6 +16340,28 @@ const chainArray = [
|
|
16067
16340
|
}
|
16068
16341
|
]
|
16069
16342
|
},
|
16343
|
+
{
|
16344
|
+
name: 'Larissa Chain',
|
16345
|
+
title: 'Larissa Chain',
|
16346
|
+
chain: 'Larissa',
|
16347
|
+
rpc: [ 'https://rpc.larissa.network' ],
|
16348
|
+
faucets: [],
|
16349
|
+
nativeCurrency: { name: 'Larissa', symbol: 'LRS', decimals: 18 },
|
16350
|
+
infoURL: 'https://larissa.network',
|
16351
|
+
shortName: 'lrs',
|
16352
|
+
chainId: 9898,
|
16353
|
+
networkId: 1,
|
16354
|
+
slip44: 9898,
|
16355
|
+
status: 'active',
|
16356
|
+
icon: 'larissa',
|
16357
|
+
explorers: [
|
16358
|
+
{
|
16359
|
+
name: 'Larissa Scan',
|
16360
|
+
url: 'https://scan.larissa.network',
|
16361
|
+
standard: 'EIP3091'
|
16362
|
+
}
|
16363
|
+
]
|
16364
|
+
},
|
16070
16365
|
{
|
16071
16366
|
name: 'Mind Smart Chain Testnet',
|
16072
16367
|
chain: 'tMIND',
|
@@ -16310,7 +16605,9 @@ const chainArray = [
|
|
16310
16605
|
'https://rpc.chiado.gnosis.gateway.fm',
|
16311
16606
|
'wss://rpc.chiadochain.net/wss',
|
16312
16607
|
'https://gnosis-chiado-rpc.publicnode.com',
|
16313
|
-
'wss://gnosis-chiado-rpc.publicnode.com'
|
16608
|
+
'wss://gnosis-chiado-rpc.publicnode.com',
|
16609
|
+
'https://gnosis-chiado.drpc.org',
|
16610
|
+
'wss://gnosis-chiado.drpc.org'
|
16314
16611
|
],
|
16315
16612
|
faucets: [ 'https://gnosisfaucet.com' ],
|
16316
16613
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
@@ -16642,7 +16939,9 @@ const chainArray = [
|
|
16642
16939
|
rpc: [
|
16643
16940
|
'https://rpc.eth.haqq.network',
|
16644
16941
|
'https://haqq-evm-rpc.publicnode.com',
|
16645
|
-
'wss://haqq-evm-rpc.publicnode.com'
|
16942
|
+
'wss://haqq-evm-rpc.publicnode.com',
|
16943
|
+
'https://haqq.drpc.org',
|
16944
|
+
'wss://haqq.drpc.org'
|
16646
16945
|
],
|
16647
16946
|
faucets: [],
|
16648
16947
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
@@ -16678,6 +16977,28 @@ const chainArray = [
|
|
16678
16977
|
}
|
16679
16978
|
]
|
16680
16979
|
},
|
16980
|
+
{
|
16981
|
+
name: 'BEVM Mainnet',
|
16982
|
+
chain: 'BEVM',
|
16983
|
+
rpc: [
|
16984
|
+
'https://rpc-mainnet-1.bevm.io/',
|
16985
|
+
'https://rpc-mainnet-2.bevm.io/'
|
16986
|
+
],
|
16987
|
+
faucets: [],
|
16988
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
16989
|
+
infoURL: 'https://bevm.io',
|
16990
|
+
shortName: 'bevm',
|
16991
|
+
chainId: 11501,
|
16992
|
+
networkId: 11501,
|
16993
|
+
icon: 'bevm',
|
16994
|
+
explorers: [
|
16995
|
+
{
|
16996
|
+
name: 'bevm mainnet scan',
|
16997
|
+
url: 'https://scan-mainnet.bevm.io',
|
16998
|
+
standard: 'none'
|
16999
|
+
}
|
17000
|
+
]
|
17001
|
+
},
|
16681
17002
|
{
|
16682
17003
|
name: 'BEVM Testnet',
|
16683
17004
|
chain: 'BEVM',
|
@@ -16685,10 +17006,10 @@ const chainArray = [
|
|
16685
17006
|
faucets: [],
|
16686
17007
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
16687
17008
|
infoURL: 'https://bevm.io',
|
16688
|
-
shortName: 'bevm',
|
17009
|
+
shortName: 'bevm-test',
|
16689
17010
|
chainId: 11503,
|
16690
17011
|
networkId: 11503,
|
16691
|
-
icon: '
|
17012
|
+
icon: 'bevm',
|
16692
17013
|
explorers: [
|
16693
17014
|
{
|
16694
17015
|
name: 'bevm testnet scan',
|
@@ -17042,7 +17363,11 @@ const chainArray = [
|
|
17042
17363
|
{
|
17043
17364
|
name: 'Immutable zkEVM',
|
17044
17365
|
chain: 'Immutable zkEVM',
|
17045
|
-
rpc: [
|
17366
|
+
rpc: [
|
17367
|
+
'https://rpc.immutable.com',
|
17368
|
+
'https://immutable-zkevm.drpc.org',
|
17369
|
+
'wss://immutable-zkevm.drpc.org'
|
17370
|
+
],
|
17046
17371
|
faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
|
17047
17372
|
nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 },
|
17048
17373
|
infoURL: 'https://www.immutable.com',
|
@@ -17081,7 +17406,11 @@ const chainArray = [
|
|
17081
17406
|
{
|
17082
17407
|
name: 'Immutable zkEVM Testnet',
|
17083
17408
|
chain: 'Immutable zkEVM',
|
17084
|
-
rpc: [
|
17409
|
+
rpc: [
|
17410
|
+
'https://rpc.testnet.immutable.com',
|
17411
|
+
'https://immutable-zkevm-testnet.drpc.org',
|
17412
|
+
'wss://immutable-zkevm-testnet.drpc.org'
|
17413
|
+
],
|
17085
17414
|
faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
|
17086
17415
|
nativeCurrency: { name: 'Test IMX', symbol: 'tIMX', decimals: 18 },
|
17087
17416
|
infoURL: 'https://www.immutable.com',
|
@@ -17366,7 +17695,9 @@ const chainArray = [
|
|
17366
17695
|
rpc: [
|
17367
17696
|
'https://rpc.holesky.ethpandaops.io',
|
17368
17697
|
'https://ethereum-holesky-rpc.publicnode.com',
|
17369
|
-
'wss://ethereum-holesky-rpc.publicnode.com'
|
17698
|
+
'wss://ethereum-holesky-rpc.publicnode.com',
|
17699
|
+
'https://holesky.drpc.org',
|
17700
|
+
'wss://holesky.drpc.org'
|
17370
17701
|
],
|
17371
17702
|
faucets: [
|
17372
17703
|
'https://faucet.holesky.ethpandaops.io',
|
@@ -18081,7 +18412,7 @@ const chainArray = [
|
|
18081
18412
|
explorers: [
|
18082
18413
|
{
|
18083
18414
|
name: 'Oasis Sapphire Explorer',
|
18084
|
-
url: 'https://explorer.
|
18415
|
+
url: 'https://explorer.oasis.io/mainnet/sapphire',
|
18085
18416
|
standard: 'EIP3091'
|
18086
18417
|
}
|
18087
18418
|
]
|
@@ -18091,8 +18422,8 @@ const chainArray = [
|
|
18091
18422
|
chain: 'Sapphire',
|
18092
18423
|
icon: 'oasis',
|
18093
18424
|
rpc: [
|
18094
|
-
'https://testnet.sapphire.oasis.
|
18095
|
-
'wss://testnet.sapphire.oasis.
|
18425
|
+
'https://testnet.sapphire.oasis.io',
|
18426
|
+
'wss://testnet.sapphire.oasis.io/ws'
|
18096
18427
|
],
|
18097
18428
|
faucets: [],
|
18098
18429
|
nativeCurrency: { name: 'Sapphire Test Rose', symbol: 'TEST', decimals: 18 },
|
@@ -18104,7 +18435,7 @@ const chainArray = [
|
|
18104
18435
|
explorers: [
|
18105
18436
|
{
|
18106
18437
|
name: 'Oasis Sapphire Testnet Explorer',
|
18107
|
-
url: 'https://
|
18438
|
+
url: 'https://explorer.oasis.io/testnet/sapphire',
|
18108
18439
|
standard: 'EIP3091'
|
18109
18440
|
}
|
18110
18441
|
]
|
@@ -18319,6 +18650,27 @@ const chainArray = [
|
|
18319
18650
|
}
|
18320
18651
|
]
|
18321
18652
|
},
|
18653
|
+
{
|
18654
|
+
name: 'HYCHAIN Testnet',
|
18655
|
+
chainId: 29112,
|
18656
|
+
shortName: 'hychain-testnet',
|
18657
|
+
chain: 'ETH',
|
18658
|
+
networkId: 29112,
|
18659
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
18660
|
+
rpc: [ 'https://testnet-rpc.hychain.com/http' ],
|
18661
|
+
faucets: [],
|
18662
|
+
infoURL: 'https://www.hychain.com',
|
18663
|
+
icon: 'hychain',
|
18664
|
+
explorers: [
|
18665
|
+
{
|
18666
|
+
name: 'blockscout',
|
18667
|
+
url: 'https://testnet.explorer.hychain.com',
|
18668
|
+
icon: 'hychain',
|
18669
|
+
standard: 'EIP3091'
|
18670
|
+
}
|
18671
|
+
],
|
18672
|
+
parent: { type: 'L2', chain: 'eip155-58008', bridges: [] }
|
18673
|
+
},
|
18322
18674
|
{
|
18323
18675
|
name: 'MCH Verse Mainnet',
|
18324
18676
|
chain: 'MCH Verse',
|
@@ -18692,7 +19044,11 @@ const chainArray = [
|
|
18692
19044
|
{
|
18693
19045
|
name: 'Mode',
|
18694
19046
|
chain: 'ETH',
|
18695
|
-
rpc: [
|
19047
|
+
rpc: [
|
19048
|
+
'https://mainnet.mode.network',
|
19049
|
+
'https://mode.drpc.org',
|
19050
|
+
'wss://mode.drpc.org'
|
19051
|
+
],
|
18696
19052
|
faucets: [],
|
18697
19053
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
18698
19054
|
infoURL: 'https://docs.mode.network/',
|
@@ -18970,10 +19326,10 @@ const chainArray = [
|
|
18970
19326
|
chain: 'Emerald',
|
18971
19327
|
icon: 'oasis',
|
18972
19328
|
rpc: [
|
18973
|
-
'https://testnet.emerald.oasis.
|
18974
|
-
'wss://testnet.emerald.oasis.
|
19329
|
+
'https://testnet.emerald.oasis.io/',
|
19330
|
+
'wss://testnet.emerald.oasis.io/ws'
|
18975
19331
|
],
|
18976
|
-
faucets: [ 'https://faucet.testnet.oasis.
|
19332
|
+
faucets: [ 'https://faucet.testnet.oasis.io/' ],
|
18977
19333
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
18978
19334
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
18979
19335
|
shortName: 'emerald-testnet',
|
@@ -18983,7 +19339,7 @@ const chainArray = [
|
|
18983
19339
|
explorers: [
|
18984
19340
|
{
|
18985
19341
|
name: 'Oasis Emerald Testnet Explorer',
|
18986
|
-
url: 'https://
|
19342
|
+
url: 'https://explorer.oasis.io/testnet/emerald',
|
18987
19343
|
standard: 'EIP3091'
|
18988
19344
|
}
|
18989
19345
|
]
|
@@ -18992,7 +19348,7 @@ const chainArray = [
|
|
18992
19348
|
name: 'Oasis Emerald',
|
18993
19349
|
chain: 'Emerald',
|
18994
19350
|
icon: 'oasis',
|
18995
|
-
rpc: [ 'https://emerald.oasis.
|
19351
|
+
rpc: [ 'https://emerald.oasis.io', 'wss://emerald.oasis.io/ws' ],
|
18996
19352
|
faucets: [],
|
18997
19353
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
18998
19354
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
@@ -19002,7 +19358,7 @@ const chainArray = [
|
|
19002
19358
|
explorers: [
|
19003
19359
|
{
|
19004
19360
|
name: 'Oasis Emerald Explorer',
|
19005
|
-
url: 'https://explorer.
|
19361
|
+
url: 'https://explorer.oasis.io/mainnet/emerald',
|
19006
19362
|
standard: 'EIP3091'
|
19007
19363
|
}
|
19008
19364
|
]
|
@@ -21569,24 +21925,24 @@ const chainArray = [
|
|
21569
21925
|
status: 'deprecated'
|
21570
21926
|
},
|
21571
21927
|
{
|
21572
|
-
name: '
|
21573
|
-
chain: '
|
21574
|
-
icon: '
|
21575
|
-
rpc: [ 'https://
|
21576
|
-
faucets: [
|
21577
|
-
nativeCurrency: { name: '
|
21578
|
-
infoURL: 'https://
|
21579
|
-
shortName: '
|
21928
|
+
name: 'Global Trust Network',
|
21929
|
+
chain: 'GTN',
|
21930
|
+
icon: 'gtn',
|
21931
|
+
rpc: [ 'https://gtn.stabilityprotocol.com' ],
|
21932
|
+
faucets: [],
|
21933
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
21934
|
+
infoURL: 'https://stabilityprotocol.com',
|
21935
|
+
shortName: 'stabilityprotocol',
|
21580
21936
|
chainId: 101010,
|
21581
21937
|
networkId: 101010,
|
21582
|
-
slip44: 1,
|
21583
21938
|
explorers: [
|
21584
21939
|
{
|
21585
|
-
name: '
|
21586
|
-
url: 'https://
|
21940
|
+
name: 'blockscout',
|
21941
|
+
url: 'https://stability.blockscout.com',
|
21587
21942
|
standard: 'EIP3091'
|
21588
21943
|
}
|
21589
|
-
]
|
21944
|
+
],
|
21945
|
+
redFlags: [ 'reusedChainId' ]
|
21590
21946
|
},
|
21591
21947
|
{
|
21592
21948
|
name: 'Crystaleum',
|
@@ -21630,6 +21986,25 @@ const chainArray = [
|
|
21630
21986
|
}
|
21631
21987
|
]
|
21632
21988
|
},
|
21989
|
+
{
|
21990
|
+
name: 'Stratis Mainnet',
|
21991
|
+
chain: 'Stratis',
|
21992
|
+
rpc: [ 'https://rpc.stratisevm.com' ],
|
21993
|
+
faucets: [],
|
21994
|
+
nativeCurrency: { name: 'Stratis', symbol: 'STRAX', decimals: 18 },
|
21995
|
+
infoURL: 'https://www.stratisplatform.com',
|
21996
|
+
shortName: 'stratis',
|
21997
|
+
chainId: 105105,
|
21998
|
+
networkId: 105105,
|
21999
|
+
icon: 'stratis',
|
22000
|
+
explorers: [
|
22001
|
+
{
|
22002
|
+
name: 'Stratis Explorer',
|
22003
|
+
url: 'https://explorer.stratisevm.com',
|
22004
|
+
standard: 'EIP3091'
|
22005
|
+
}
|
22006
|
+
]
|
22007
|
+
},
|
21633
22008
|
{
|
21634
22009
|
name: 'BROChain Mainnet',
|
21635
22010
|
chain: 'BRO',
|
@@ -22097,7 +22472,12 @@ const chainArray = [
|
|
22097
22472
|
chain: 'ETH',
|
22098
22473
|
status: 'active',
|
22099
22474
|
icon: 'taiko',
|
22100
|
-
rpc: [
|
22475
|
+
rpc: [
|
22476
|
+
'https://rpc.katla.taiko.xyz',
|
22477
|
+
'wss://rpc.katla.taiko.xyz',
|
22478
|
+
'https://taiko-katla.drpc.org',
|
22479
|
+
'wss://taiko-katla.drpc.org'
|
22480
|
+
],
|
22101
22481
|
faucets: [],
|
22102
22482
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
22103
22483
|
infoURL: 'https://taiko.xyz',
|
@@ -22744,7 +23124,9 @@ const chainArray = [
|
|
22744
23124
|
'https://rpc.ankr.com/filecoin_testnet',
|
22745
23125
|
'https://filecoin-calibration.chainstacklabs.com/rpc/v1',
|
22746
23126
|
'https://filecoin-calibration.chainup.net/rpc/v1',
|
22747
|
-
'https://calibration.filfox.info/rpc/v1'
|
23127
|
+
'https://calibration.filfox.info/rpc/v1',
|
23128
|
+
'https://filecoin-calibration.drpc.org',
|
23129
|
+
'wss://filecoin-calibration.drpc.org'
|
22748
23130
|
],
|
22749
23131
|
faucets: [ 'https://faucet.calibration.fildev.network/' ],
|
22750
23132
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
@@ -24167,7 +24549,9 @@ const chainArray = [
|
|
24167
24549
|
icon: 'astarzk',
|
24168
24550
|
rpc: [
|
24169
24551
|
'https://rpc.zkatana.gelato.digital',
|
24170
|
-
'https://rpc.startale.com/zkatana'
|
24552
|
+
'https://rpc.startale.com/zkatana',
|
24553
|
+
'https://astar-zkatana.drpc.org',
|
24554
|
+
'wss://astar-zkatana.drpc.org'
|
24171
24555
|
],
|
24172
24556
|
faucets: [],
|
24173
24557
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
@@ -24420,7 +24804,11 @@ const chainArray = [
|
|
24420
24804
|
{
|
24421
24805
|
name: 'Manta Pacific Testnet',
|
24422
24806
|
chain: 'Manta Pacific',
|
24423
|
-
rpc: [
|
24807
|
+
rpc: [
|
24808
|
+
'https://manta-testnet.calderachain.xyz/http',
|
24809
|
+
'https://manta-pacific-testnet.drpc.org',
|
24810
|
+
'wss://manta-pacific-testnet.drpc.org'
|
24811
|
+
],
|
24424
24812
|
faucets: [],
|
24425
24813
|
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
24426
24814
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -24438,6 +24826,27 @@ const chainArray = [
|
|
24438
24826
|
}
|
24439
24827
|
]
|
24440
24828
|
},
|
24829
|
+
{
|
24830
|
+
name: 'Manta Pacific Sepolia Testnet',
|
24831
|
+
chain: 'Manta Pacific',
|
24832
|
+
rpc: [ 'https://pacific-rpc.sepolia-testnet.manta.network/http' ],
|
24833
|
+
faucets: [],
|
24834
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
24835
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
24836
|
+
infoURL: 'https://manta-testnet.caldera.dev/',
|
24837
|
+
shortName: 'mantaSepoliaTestnet',
|
24838
|
+
chainId: 3441006,
|
24839
|
+
networkId: 3441006,
|
24840
|
+
slip44: 1,
|
24841
|
+
icon: 'manta',
|
24842
|
+
explorers: [
|
24843
|
+
{
|
24844
|
+
name: 'manta-testnet Explorer',
|
24845
|
+
url: 'https://pacific-explorer.sepolia-testnet.manta.network',
|
24846
|
+
standard: 'EIP3091'
|
24847
|
+
}
|
24848
|
+
]
|
24849
|
+
},
|
24441
24850
|
{
|
24442
24851
|
name: 'AltLayer Zero Gas Network',
|
24443
24852
|
chain: 'ETH',
|
@@ -24882,7 +25291,9 @@ const chainArray = [
|
|
24882
25291
|
'https://sepolia.gateway.tenderly.co',
|
24883
25292
|
'wss://sepolia.gateway.tenderly.co',
|
24884
25293
|
'https://ethereum-sepolia-rpc.publicnode.com',
|
24885
|
-
'wss://ethereum-sepolia-rpc.publicnode.com'
|
25294
|
+
'wss://ethereum-sepolia-rpc.publicnode.com',
|
25295
|
+
'https://sepolia.drpc.org',
|
25296
|
+
'wss://sepolia.drpc.org'
|
24886
25297
|
],
|
24887
25298
|
faucets: [
|
24888
25299
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|
@@ -24909,7 +25320,11 @@ const chainArray = [
|
|
24909
25320
|
{
|
24910
25321
|
name: 'OP Sepolia Testnet',
|
24911
25322
|
chain: 'ETH',
|
24912
|
-
rpc: [
|
25323
|
+
rpc: [
|
25324
|
+
'https://sepolia.optimism.io',
|
25325
|
+
'https://optimism-sepolia.drpc.org',
|
25326
|
+
'wss://optimism-sepolia.drpc.org'
|
25327
|
+
],
|
24913
25328
|
faucets: [ 'https://app.optimism.io/faucet' ],
|
24914
25329
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
24915
25330
|
infoURL: 'https://optimism.io',
|
@@ -24986,6 +25401,26 @@ const chainArray = [
|
|
24986
25401
|
chainId: 18289463,
|
24987
25402
|
networkId: 18289463
|
24988
25403
|
},
|
25404
|
+
{
|
25405
|
+
name: 'Stability Testnet',
|
25406
|
+
chain: 'stabilityTestnet',
|
25407
|
+
icon: 'stabilitytestnet',
|
25408
|
+
rpc: [ 'https://free.testnet.stabilityprotocol.com' ],
|
25409
|
+
faucets: [],
|
25410
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
25411
|
+
infoURL: 'https://stabilityprotocol.com',
|
25412
|
+
shortName: 'stabilitytestnet',
|
25413
|
+
chainId: 20180427,
|
25414
|
+
networkId: 20180427,
|
25415
|
+
slip44: 1,
|
25416
|
+
explorers: [
|
25417
|
+
{
|
25418
|
+
name: 'blockscout',
|
25419
|
+
url: 'https://stability-testnet.blockscout.com',
|
25420
|
+
standard: 'EIP3091'
|
25421
|
+
}
|
25422
|
+
]
|
25423
|
+
},
|
24989
25424
|
{
|
24990
25425
|
name: 'SmartMesh Mainnet',
|
24991
25426
|
chain: 'Spectrum',
|
@@ -25482,7 +25917,11 @@ const chainArray = [
|
|
25482
25917
|
{
|
25483
25918
|
name: 'Blast Sepolia Testnet',
|
25484
25919
|
chain: 'ETH',
|
25485
|
-
rpc: [
|
25920
|
+
rpc: [
|
25921
|
+
'https://sepolia.blast.io',
|
25922
|
+
'https://blast-sepolia.drpc.org',
|
25923
|
+
'wss://blast-sepolia.drpc.org'
|
25924
|
+
],
|
25486
25925
|
faucets: [ 'https://faucet.quicknode.com/blast/sepolia' ],
|
25487
25926
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
25488
25927
|
infoURL: 'https://blast.io/',
|
@@ -25552,7 +25991,11 @@ const chainArray = [
|
|
25552
25991
|
{
|
25553
25992
|
name: 'Neon EVM Devnet',
|
25554
25993
|
chain: 'Solana',
|
25555
|
-
rpc: [
|
25994
|
+
rpc: [
|
25995
|
+
'https://devnet.neonevm.org',
|
25996
|
+
'https://neon-evm-devnet.drpc.org',
|
25997
|
+
'wss://neon-evm-devnet.drpc.org'
|
25998
|
+
],
|
25556
25999
|
faucets: [ 'https://neonfaucet.org' ],
|
25557
26000
|
icon: 'neon',
|
25558
26001
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
@@ -25577,7 +26020,11 @@ const chainArray = [
|
|
25577
26020
|
{
|
25578
26021
|
name: 'Neon EVM Mainnet',
|
25579
26022
|
chain: 'Solana',
|
25580
|
-
rpc: [
|
26023
|
+
rpc: [
|
26024
|
+
'https://neon-proxy-mainnet.solana.p2p.org',
|
26025
|
+
'https://neon-evm.drpc.org',
|
26026
|
+
'wss://neon-evm.drpc.org'
|
26027
|
+
],
|
25581
26028
|
faucets: [],
|
25582
26029
|
icon: 'neon',
|
25583
26030
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
@@ -25954,7 +26401,11 @@ const chainArray = [
|
|
25954
26401
|
{
|
25955
26402
|
name: 'Aurora Mainnet',
|
25956
26403
|
chain: 'NEAR',
|
25957
|
-
rpc: [
|
26404
|
+
rpc: [
|
26405
|
+
'https://mainnet.aurora.dev',
|
26406
|
+
'https://aurora.drpc.org',
|
26407
|
+
'wss://aurora.drpc.org'
|
26408
|
+
],
|
25958
26409
|
faucets: [],
|
25959
26410
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25960
26411
|
infoURL: 'https://aurora.dev',
|
@@ -25972,7 +26423,11 @@ const chainArray = [
|
|
25972
26423
|
{
|
25973
26424
|
name: 'Aurora Testnet',
|
25974
26425
|
chain: 'NEAR',
|
25975
|
-
rpc: [
|
26426
|
+
rpc: [
|
26427
|
+
'https://testnet.aurora.dev/',
|
26428
|
+
'https://aurora-testnet.drpc.org',
|
26429
|
+
'wss://aurora-testnet.drpc.org'
|
26430
|
+
],
|
25976
26431
|
faucets: [],
|
25977
26432
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25978
26433
|
infoURL: 'https://aurora.dev',
|
@@ -26179,7 +26634,9 @@ const chainArray = [
|
|
26179
26634
|
'https://api.s0.t.hmny.io',
|
26180
26635
|
'https://rpc.ankr.com/harmony',
|
26181
26636
|
'https://harmony.api.onfinality.io/public',
|
26182
|
-
'https://1rpc.io/one'
|
26637
|
+
'https://1rpc.io/one',
|
26638
|
+
'https://harmony-0.drpc.org',
|
26639
|
+
'wss://harmony-0.drpc.org'
|
26183
26640
|
],
|
26184
26641
|
faucets: [],
|
26185
26642
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
@@ -26200,7 +26657,11 @@ const chainArray = [
|
|
26200
26657
|
{
|
26201
26658
|
name: 'Harmony Mainnet Shard 1',
|
26202
26659
|
chain: 'Harmony',
|
26203
|
-
rpc: [
|
26660
|
+
rpc: [
|
26661
|
+
'https://api.s1.t.hmny.io',
|
26662
|
+
'https://harmony-1.drpc.org',
|
26663
|
+
'wss://harmony-1.drpc.org'
|
26664
|
+
],
|
26204
26665
|
faucets: [],
|
26205
26666
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
26206
26667
|
infoURL: 'https://www.harmony.one/',
|