eth-chainlist 0.0.359 → 0.0.361
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 +655 -85
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.361 (2024-03-19)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.360 ([b5626d0](https://github.com/poowf/eth-chainlist/commit/b5626d05687395bc86f3373fc1e3d7a6308417e0))
|
9
|
+
* update chain data ([7a990a7](https://github.com/poowf/eth-chainlist/commit/7a990a7fd2e62f81e41a2d771af6f258667cff22))
|
10
|
+
|
11
|
+
### 0.0.360 (2024-03-15)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.359 ([b4e88bb](https://github.com/poowf/eth-chainlist/commit/b4e88bb2f6fa49efdc08d310f43323c5a89f89c7))
|
17
|
+
* update chain data ([08bdf1b](https://github.com/poowf/eth-chainlist/commit/08bdf1b27d332f55199b314d565e06c49d18e68b))
|
18
|
+
|
3
19
|
### 0.0.359 (2024-03-14)
|
4
20
|
|
5
21
|
|
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 },
|
@@ -6755,6 +6810,26 @@ const chainArray = [
|
|
6755
6810
|
networkId: 888,
|
6756
6811
|
slip44: 5718350
|
6757
6812
|
},
|
6813
|
+
{
|
6814
|
+
name: 'MAXI Chain Testnet',
|
6815
|
+
chain: 'MAXI',
|
6816
|
+
rpc: [ 'https://rpc-testnet.maxi.network' ],
|
6817
|
+
faucets: [ 'https://faucet.maxi.network' ],
|
6818
|
+
nativeCurrency: { name: 'MAXICOIN', symbol: 'MAXI', decimals: 18 },
|
6819
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6820
|
+
infoURL: 'https://maxi.network',
|
6821
|
+
shortName: 'maxi-testnet',
|
6822
|
+
chainId: 898,
|
6823
|
+
networkId: 898,
|
6824
|
+
icon: 'maxi',
|
6825
|
+
explorers: [
|
6826
|
+
{
|
6827
|
+
name: 'Maxi Chain Testnet Explorer',
|
6828
|
+
url: 'https://testnet.maxi.network',
|
6829
|
+
standard: 'EIP3091'
|
6830
|
+
}
|
6831
|
+
]
|
6832
|
+
},
|
6758
6833
|
{
|
6759
6834
|
name: 'Garizon Testnet Stage0',
|
6760
6835
|
chain: 'GAR',
|
@@ -7301,7 +7376,11 @@ const chainArray = [
|
|
7301
7376
|
{
|
7302
7377
|
name: 'Klaytn Testnet Baobab',
|
7303
7378
|
chain: 'KLAY',
|
7304
|
-
rpc: [
|
7379
|
+
rpc: [
|
7380
|
+
'https://api.baobab.klaytn.net:8651',
|
7381
|
+
'https://klaytn-baobab.drpc.org',
|
7382
|
+
'wss://klaytn-baobab.drpc.org'
|
7383
|
+
],
|
7305
7384
|
faucets: [ 'https://baobab.wallet.klaytn.com/access?next=faucet' ],
|
7306
7385
|
nativeCurrency: { name: 'KLAY', symbol: 'KLAY', decimals: 18 },
|
7307
7386
|
infoURL: 'https://www.klaytn.com/',
|
@@ -7662,7 +7741,11 @@ const chainArray = [
|
|
7662
7741
|
{
|
7663
7742
|
name: 'Metis Andromeda Mainnet',
|
7664
7743
|
chain: 'ETH',
|
7665
|
-
rpc: [
|
7744
|
+
rpc: [
|
7745
|
+
'https://andromeda.metis.io/?owner=1088',
|
7746
|
+
'https://metis.drpc.org',
|
7747
|
+
'wss://metis.drpc.org'
|
7748
|
+
],
|
7666
7749
|
faucets: [],
|
7667
7750
|
nativeCurrency: { name: 'Metis', symbol: 'METIS', decimals: 18 },
|
7668
7751
|
infoURL: 'https://www.metis.io',
|
@@ -7753,7 +7836,11 @@ const chainArray = [
|
|
7753
7836
|
name: 'Polygon zkEVM',
|
7754
7837
|
title: 'Polygon zkEVM',
|
7755
7838
|
chain: 'Polygon',
|
7756
|
-
rpc: [
|
7839
|
+
rpc: [
|
7840
|
+
'https://zkevm-rpc.com',
|
7841
|
+
'https://polygon-zkevm.drpc.org',
|
7842
|
+
'wss://polygon-zkevm.drpc.org'
|
7843
|
+
],
|
7757
7844
|
faucets: [],
|
7758
7845
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
7759
7846
|
infoURL: 'https://polygon.technology/polygon-zkevm',
|
@@ -7882,7 +7969,12 @@ const chainArray = [
|
|
7882
7969
|
name: 'Core Blockchain Mainnet',
|
7883
7970
|
chain: 'Core',
|
7884
7971
|
icon: 'core',
|
7885
|
-
rpc: [
|
7972
|
+
rpc: [
|
7973
|
+
'https://rpc.coredao.org/',
|
7974
|
+
'https://rpc-core.icecreamswap.com',
|
7975
|
+
'https://core.drpc.org',
|
7976
|
+
'wss://core.drpc.org'
|
7977
|
+
],
|
7886
7978
|
faucets: [],
|
7887
7979
|
nativeCurrency: {
|
7888
7980
|
name: 'Core Blockchain Native Token',
|
@@ -8399,7 +8491,9 @@ const chainArray = [
|
|
8399
8491
|
'https://rpc.api.moonbeam.network',
|
8400
8492
|
'wss://wss.api.moonbeam.network',
|
8401
8493
|
'https://moonbeam-rpc.publicnode.com',
|
8402
|
-
'wss://moonbeam-rpc.publicnode.com'
|
8494
|
+
'wss://moonbeam-rpc.publicnode.com',
|
8495
|
+
'https://moonbeam.drpc.org',
|
8496
|
+
'wss://moonbeam.drpc.org'
|
8403
8497
|
],
|
8404
8498
|
faucets: [],
|
8405
8499
|
nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
|
@@ -8422,7 +8516,9 @@ const chainArray = [
|
|
8422
8516
|
'https://rpc.api.moonriver.moonbeam.network',
|
8423
8517
|
'wss://wss.api.moonriver.moonbeam.network',
|
8424
8518
|
'https://moonriver-rpc.publicnode.com',
|
8425
|
-
'wss://moonriver-rpc.publicnode.com'
|
8519
|
+
'wss://moonriver-rpc.publicnode.com',
|
8520
|
+
'https://moonriver.drpc.org',
|
8521
|
+
'wss://moonriver.drpc.org'
|
8426
8522
|
],
|
8427
8523
|
faucets: [],
|
8428
8524
|
nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
|
@@ -8455,7 +8551,9 @@ const chainArray = [
|
|
8455
8551
|
chain: 'MOON',
|
8456
8552
|
rpc: [
|
8457
8553
|
'https://rpc.api.moonbase.moonbeam.network',
|
8458
|
-
'wss://wss.api.moonbase.moonbeam.network'
|
8554
|
+
'wss://wss.api.moonbase.moonbeam.network',
|
8555
|
+
'https://moonbase-alpha.drpc.org',
|
8556
|
+
'wss://moonbase-alpha.drpc.org'
|
8459
8557
|
],
|
8460
8558
|
faucets: [],
|
8461
8559
|
nativeCurrency: { name: 'Dev', symbol: 'DEV', decimals: 18 },
|
@@ -8889,7 +8987,11 @@ const chainArray = [
|
|
8889
8987
|
name: 'Polygon zkEVM Testnet',
|
8890
8988
|
title: 'Polygon zkEVM Testnet',
|
8891
8989
|
chain: 'Polygon',
|
8892
|
-
rpc: [
|
8990
|
+
rpc: [
|
8991
|
+
'https://rpc.public.zkevm-test.net',
|
8992
|
+
'https://polygon-zkevm-testnet.drpc.org',
|
8993
|
+
'wss://polygon-zkevm-testnet.drpc.org'
|
8994
|
+
],
|
8893
8995
|
faucets: [],
|
8894
8996
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
8895
8997
|
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
@@ -9282,6 +9384,25 @@ const chainArray = [
|
|
9282
9384
|
}
|
9283
9385
|
]
|
9284
9386
|
},
|
9387
|
+
{
|
9388
|
+
name: 'Doric Network',
|
9389
|
+
chain: 'DRC',
|
9390
|
+
icon: 'doric',
|
9391
|
+
rpc: [ 'https://mainnet.doric.network' ],
|
9392
|
+
faucets: [],
|
9393
|
+
nativeCurrency: { name: 'Doric Native Token', symbol: 'DRC', decimals: 18 },
|
9394
|
+
infoURL: 'https://doric.network',
|
9395
|
+
shortName: 'DRC',
|
9396
|
+
chainId: 1717,
|
9397
|
+
networkId: 1717,
|
9398
|
+
explorers: [
|
9399
|
+
{
|
9400
|
+
name: 'Doric Explorer',
|
9401
|
+
url: 'https://explorer.doric.network',
|
9402
|
+
standard: 'EIP3091'
|
9403
|
+
}
|
9404
|
+
]
|
9405
|
+
},
|
9285
9406
|
{
|
9286
9407
|
name: 'Palette Chain Mainnet',
|
9287
9408
|
chain: 'PLT',
|
@@ -9303,6 +9424,24 @@ const chainArray = [
|
|
9303
9424
|
}
|
9304
9425
|
]
|
9305
9426
|
},
|
9427
|
+
{
|
9428
|
+
name: 'Reya Network',
|
9429
|
+
chain: 'Reya',
|
9430
|
+
rpc: [ 'https://rpc.reya.network', 'wss://ws.reya.network' ],
|
9431
|
+
faucets: [],
|
9432
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
9433
|
+
infoURL: 'https://reya.network',
|
9434
|
+
shortName: 'reya',
|
9435
|
+
chainId: 1729,
|
9436
|
+
networkId: 1729,
|
9437
|
+
explorers: [
|
9438
|
+
{
|
9439
|
+
name: 'Reya Network Explorer',
|
9440
|
+
url: 'https://explorer.reya.network',
|
9441
|
+
standard: 'EIP3091'
|
9442
|
+
}
|
9443
|
+
]
|
9444
|
+
},
|
9306
9445
|
{
|
9307
9446
|
name: 'PartyChain',
|
9308
9447
|
chain: 'mainnet',
|
@@ -10001,6 +10140,27 @@ const chainArray = [
|
|
10001
10140
|
networkId: 1987,
|
10002
10141
|
slip44: 1987
|
10003
10142
|
},
|
10143
|
+
{
|
10144
|
+
name: 'Hubble Exchange',
|
10145
|
+
chain: 'Hubblenet',
|
10146
|
+
icon: 'hubblenet',
|
10147
|
+
rpc: [ 'https://rpc.hubble.exchange', 'wss://ws-rpc.hubble.exchange' ],
|
10148
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10149
|
+
faucets: [],
|
10150
|
+
nativeCurrency: { name: 'USD Coin', symbol: 'USDC', decimals: 18 },
|
10151
|
+
infoURL: 'https://www.hubble.exchange',
|
10152
|
+
shortName: 'hubblenet',
|
10153
|
+
chainId: 1992,
|
10154
|
+
networkId: 1992,
|
10155
|
+
slip44: 60,
|
10156
|
+
explorers: [
|
10157
|
+
{
|
10158
|
+
name: 'routescan',
|
10159
|
+
url: 'https://explorer.hubble.exchange',
|
10160
|
+
standard: 'EIP3091'
|
10161
|
+
}
|
10162
|
+
]
|
10163
|
+
},
|
10004
10164
|
{
|
10005
10165
|
name: 'Ekta',
|
10006
10166
|
chain: 'EKTA',
|
@@ -10897,7 +11057,9 @@ const chainArray = [
|
|
10897
11057
|
rpc: [
|
10898
11058
|
'https://evm.testnet.kava.io',
|
10899
11059
|
'https://kava-evm-testnet.rpc.thirdweb.com',
|
10900
|
-
'wss://wevm.testnet.kava.io'
|
11060
|
+
'wss://wevm.testnet.kava.io',
|
11061
|
+
'https://kava-testnet.drpc.org',
|
11062
|
+
'wss://kava-testnet.drpc.org'
|
10901
11063
|
],
|
10902
11064
|
faucets: [ 'https://faucet.kava.io' ],
|
10903
11065
|
nativeCurrency: { name: 'TKava', symbol: 'TKAVA', decimals: 18 },
|
@@ -10927,7 +11089,9 @@ const chainArray = [
|
|
10927
11089
|
'wss://kava-evm-rpc.publicnode.com',
|
10928
11090
|
'https://evm.kava-rpc.com',
|
10929
11091
|
'https://rpc.ankr.com/kava_evm',
|
10930
|
-
'wss://wevm.kava-rpc.com'
|
11092
|
+
'wss://wevm.kava-rpc.com',
|
11093
|
+
'https://kava.drpc.org',
|
11094
|
+
'wss://kava.drpc.org'
|
10931
11095
|
],
|
10932
11096
|
faucets: [],
|
10933
11097
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
@@ -11108,6 +11272,27 @@ const chainArray = [
|
|
11108
11272
|
}
|
11109
11273
|
]
|
11110
11274
|
},
|
11275
|
+
{
|
11276
|
+
name: 'Atleta Testnet',
|
11277
|
+
chain: 'Atleta',
|
11278
|
+
rpc: [ 'https://atleta-testnet-rpc.quark.blue:9944' ],
|
11279
|
+
faucets: [ 'https://faucet.atleta.network' ],
|
11280
|
+
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
11281
|
+
infoURL: 'https://atleta.network',
|
11282
|
+
shortName: 'atla',
|
11283
|
+
chainId: 2340,
|
11284
|
+
networkId: 2340,
|
11285
|
+
slip44: 1,
|
11286
|
+
icon: 'atleta',
|
11287
|
+
explorers: [
|
11288
|
+
{
|
11289
|
+
name: 'Atleta Testnet Explorer',
|
11290
|
+
icon: 'atleta',
|
11291
|
+
url: 'http://185.234.69.18/?rpc=wss%3A%2F%2Fatleta-testnet-rpc.quark.blue%3A9944#/explorer',
|
11292
|
+
standard: 'none'
|
11293
|
+
}
|
11294
|
+
]
|
11295
|
+
},
|
11111
11296
|
{
|
11112
11297
|
name: '(deprecated) Kroma Sepolia',
|
11113
11298
|
title: '(deprecated) Kroma Testnet Sepolia',
|
@@ -11369,6 +11554,7 @@ const chainArray = [
|
|
11369
11554
|
chainId: 2522,
|
11370
11555
|
networkId: 2522,
|
11371
11556
|
slip44: 1,
|
11557
|
+
icon: 'fraxtal',
|
11372
11558
|
explorers: [
|
11373
11559
|
{
|
11374
11560
|
name: 'fraxscan',
|
@@ -11635,6 +11821,31 @@ const chainArray = [
|
|
11635
11821
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
11636
11822
|
}
|
11637
11823
|
},
|
11824
|
+
{
|
11825
|
+
name: 'HYCHAIN',
|
11826
|
+
chainId: 2911,
|
11827
|
+
shortName: 'hychain',
|
11828
|
+
chain: 'ETH',
|
11829
|
+
networkId: 2911,
|
11830
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
11831
|
+
rpc: [ 'https://rpc.hychain.com/http' ],
|
11832
|
+
faucets: [],
|
11833
|
+
infoURL: 'https://www.hychain.com',
|
11834
|
+
icon: 'hychain',
|
11835
|
+
explorers: [
|
11836
|
+
{
|
11837
|
+
name: 'blockscout',
|
11838
|
+
url: 'https://explorer.hychain.com',
|
11839
|
+
icon: 'hychain',
|
11840
|
+
standard: 'EIP3091'
|
11841
|
+
}
|
11842
|
+
],
|
11843
|
+
parent: {
|
11844
|
+
type: 'L2',
|
11845
|
+
chain: 'eip155-1',
|
11846
|
+
bridges: [ { url: 'https://bridge.hychain.com' } ]
|
11847
|
+
}
|
11848
|
+
},
|
11638
11849
|
{
|
11639
11850
|
name: 'Xenon Chain Testnet',
|
11640
11851
|
chain: 'XEN',
|
@@ -12540,7 +12751,9 @@ const chainArray = [
|
|
12540
12751
|
rpc: [
|
12541
12752
|
'https://rpc.testnet.fantom.network',
|
12542
12753
|
'https://fantom-testnet-rpc.publicnode.com',
|
12543
|
-
'wss://fantom-testnet-rpc.publicnode.com'
|
12754
|
+
'wss://fantom-testnet-rpc.publicnode.com',
|
12755
|
+
'https://fantom-testnet.drpc.org',
|
12756
|
+
'wss://fantom-testnet.drpc.org'
|
12544
12757
|
],
|
12545
12758
|
faucets: [ 'https://faucet.fantom.network' ],
|
12546
12759
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
@@ -13413,6 +13626,39 @@ const chainArray = [
|
|
13413
13626
|
}
|
13414
13627
|
]
|
13415
13628
|
},
|
13629
|
+
{
|
13630
|
+
name: 'Coordinape Testnet',
|
13631
|
+
chain: 'Coordinape Testnet',
|
13632
|
+
rpc: [ 'https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz' ],
|
13633
|
+
faucets: [],
|
13634
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13635
|
+
infoURL: 'https://coordinape.com/',
|
13636
|
+
shortName: 'coordinape-testnet',
|
13637
|
+
chainId: 5103,
|
13638
|
+
networkId: 5103
|
13639
|
+
},
|
13640
|
+
{
|
13641
|
+
name: 'Charmverse Testnet',
|
13642
|
+
chain: 'Charmverse Testnet',
|
13643
|
+
rpc: [ 'https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz' ],
|
13644
|
+
faucets: [],
|
13645
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13646
|
+
infoURL: 'https://charmverse.io/',
|
13647
|
+
shortName: 'charmverse-testnet',
|
13648
|
+
chainId: 5104,
|
13649
|
+
networkId: 5104
|
13650
|
+
},
|
13651
|
+
{
|
13652
|
+
name: 'Superloyalty Testnet',
|
13653
|
+
chain: 'Superloyalty Testnet',
|
13654
|
+
rpc: [ 'https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz' ],
|
13655
|
+
faucets: [],
|
13656
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
13657
|
+
infoURL: 'https://www.superloyal.com/',
|
13658
|
+
shortName: 'superloyalty-testnet',
|
13659
|
+
chainId: 5105,
|
13660
|
+
networkId: 5105
|
13661
|
+
},
|
13416
13662
|
{
|
13417
13663
|
name: 'Bahamut',
|
13418
13664
|
title: 'Bahamut mainnet',
|
@@ -14686,6 +14932,31 @@ const chainArray = [
|
|
14686
14932
|
}
|
14687
14933
|
]
|
14688
14934
|
},
|
14935
|
+
{
|
14936
|
+
name: 'Orenium Mainnet Protocol',
|
14937
|
+
chain: 'ORE',
|
14938
|
+
rpc: [
|
14939
|
+
'https://validator-mainnet.orenium.org',
|
14940
|
+
'https://rpc-oracle-mainnet.orenium.org',
|
14941
|
+
'https://portalmainnet.orenium.org'
|
14942
|
+
],
|
14943
|
+
nativeCurrency: { name: 'ORENIUM', symbol: 'ORE', decimals: 18 },
|
14944
|
+
infoURL: 'https://orenium.org',
|
14945
|
+
shortName: 'ore',
|
14946
|
+
chainId: 7778,
|
14947
|
+
networkId: 7778,
|
14948
|
+
slip44: 1,
|
14949
|
+
icon: 'ore',
|
14950
|
+
faucets: [],
|
14951
|
+
explorers: [
|
14952
|
+
{
|
14953
|
+
name: 'ORE Mainnet Explorer',
|
14954
|
+
icon: 'ore',
|
14955
|
+
url: 'https://oreniumscan.org',
|
14956
|
+
standard: 'none'
|
14957
|
+
}
|
14958
|
+
]
|
14959
|
+
},
|
14689
14960
|
{
|
14690
14961
|
name: 'MaalChain Testnet',
|
14691
14962
|
chain: 'MaalChain Testnet',
|
@@ -15357,6 +15628,27 @@ const chainArray = [
|
|
15357
15628
|
chainId: 8768,
|
15358
15629
|
networkId: 8768
|
15359
15630
|
},
|
15631
|
+
{
|
15632
|
+
name: 'IOTA EVM',
|
15633
|
+
title: 'IOTA EVM',
|
15634
|
+
chain: 'IOTA EVM',
|
15635
|
+
rpc: [ 'https://json-rpc.evm.iotaledger.net' ],
|
15636
|
+
faucets: [],
|
15637
|
+
nativeCurrency: { name: 'IOTA', symbol: 'IOTA', decimals: 18 },
|
15638
|
+
infoURL: 'https://www.iota.org',
|
15639
|
+
shortName: 'iotaevm',
|
15640
|
+
chainId: 8822,
|
15641
|
+
networkId: 8822,
|
15642
|
+
icon: 'iotaevm',
|
15643
|
+
explorers: [
|
15644
|
+
{
|
15645
|
+
name: 'explorer',
|
15646
|
+
url: 'https://iota-evm.blockscout.com',
|
15647
|
+
icon: 'iotaevm',
|
15648
|
+
standard: 'EIP3091'
|
15649
|
+
}
|
15650
|
+
]
|
15651
|
+
},
|
15360
15652
|
{
|
15361
15653
|
name: 'MARO Blockchain Mainnet',
|
15362
15654
|
chain: 'MARO Blockchain',
|
@@ -15376,6 +15668,25 @@ const chainArray = [
|
|
15376
15668
|
}
|
15377
15669
|
]
|
15378
15670
|
},
|
15671
|
+
{
|
15672
|
+
name: 'SuperLumio',
|
15673
|
+
chain: 'SuperLumio',
|
15674
|
+
icon: 'superlumio',
|
15675
|
+
rpc: [ 'https://mainnet.lumio.io/' ],
|
15676
|
+
faucets: [],
|
15677
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15678
|
+
infoURL: 'https://lumio.io/',
|
15679
|
+
shortName: 'superlumio',
|
15680
|
+
chainId: 8866,
|
15681
|
+
networkId: 8866,
|
15682
|
+
explorers: [
|
15683
|
+
{
|
15684
|
+
name: 'Lumio explorer',
|
15685
|
+
url: 'https://explorer.lumio.io',
|
15686
|
+
standard: 'none'
|
15687
|
+
}
|
15688
|
+
]
|
15689
|
+
},
|
15379
15690
|
{
|
15380
15691
|
name: 'Unique',
|
15381
15692
|
icon: 'unique',
|
@@ -15510,7 +15821,10 @@ const chainArray = [
|
|
15510
15821
|
chain: 'ORE',
|
15511
15822
|
rpc: [
|
15512
15823
|
'https://rpc-dev-testnet.orenium.org/',
|
15513
|
-
'https://rpc-testnet.orenium.org/'
|
15824
|
+
'https://rpc-testnet.orenium.org/',
|
15825
|
+
'https://rpc-orc.oredex.finance',
|
15826
|
+
'https://testnet-rpc.oredex.finance',
|
15827
|
+
'https://oredex-node.oredex.finance'
|
15514
15828
|
],
|
15515
15829
|
nativeCurrency: { name: 'ORENIUM', symbol: 'tORE', decimals: 18 },
|
15516
15830
|
infoURL: 'https://orenium.org',
|
@@ -16067,6 +16381,28 @@ const chainArray = [
|
|
16067
16381
|
}
|
16068
16382
|
]
|
16069
16383
|
},
|
16384
|
+
{
|
16385
|
+
name: 'Larissa Chain',
|
16386
|
+
title: 'Larissa Chain',
|
16387
|
+
chain: 'Larissa',
|
16388
|
+
rpc: [ 'https://rpc.larissa.network' ],
|
16389
|
+
faucets: [],
|
16390
|
+
nativeCurrency: { name: 'Larissa', symbol: 'LRS', decimals: 18 },
|
16391
|
+
infoURL: 'https://larissa.network',
|
16392
|
+
shortName: 'lrs',
|
16393
|
+
chainId: 9898,
|
16394
|
+
networkId: 1,
|
16395
|
+
slip44: 9898,
|
16396
|
+
status: 'active',
|
16397
|
+
icon: 'larissa',
|
16398
|
+
explorers: [
|
16399
|
+
{
|
16400
|
+
name: 'Larissa Scan',
|
16401
|
+
url: 'https://scan.larissa.network',
|
16402
|
+
standard: 'EIP3091'
|
16403
|
+
}
|
16404
|
+
]
|
16405
|
+
},
|
16070
16406
|
{
|
16071
16407
|
name: 'Mind Smart Chain Testnet',
|
16072
16408
|
chain: 'tMIND',
|
@@ -16310,7 +16646,9 @@ const chainArray = [
|
|
16310
16646
|
'https://rpc.chiado.gnosis.gateway.fm',
|
16311
16647
|
'wss://rpc.chiadochain.net/wss',
|
16312
16648
|
'https://gnosis-chiado-rpc.publicnode.com',
|
16313
|
-
'wss://gnosis-chiado-rpc.publicnode.com'
|
16649
|
+
'wss://gnosis-chiado-rpc.publicnode.com',
|
16650
|
+
'https://gnosis-chiado.drpc.org',
|
16651
|
+
'wss://gnosis-chiado.drpc.org'
|
16314
16652
|
],
|
16315
16653
|
faucets: [ 'https://gnosisfaucet.com' ],
|
16316
16654
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
@@ -16642,7 +16980,9 @@ const chainArray = [
|
|
16642
16980
|
rpc: [
|
16643
16981
|
'https://rpc.eth.haqq.network',
|
16644
16982
|
'https://haqq-evm-rpc.publicnode.com',
|
16645
|
-
'wss://haqq-evm-rpc.publicnode.com'
|
16983
|
+
'wss://haqq-evm-rpc.publicnode.com',
|
16984
|
+
'https://haqq.drpc.org',
|
16985
|
+
'wss://haqq.drpc.org'
|
16646
16986
|
],
|
16647
16987
|
faucets: [],
|
16648
16988
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
@@ -16678,6 +17018,28 @@ const chainArray = [
|
|
16678
17018
|
}
|
16679
17019
|
]
|
16680
17020
|
},
|
17021
|
+
{
|
17022
|
+
name: 'BEVM Mainnet',
|
17023
|
+
chain: 'BEVM',
|
17024
|
+
rpc: [
|
17025
|
+
'https://rpc-mainnet-1.bevm.io/',
|
17026
|
+
'https://rpc-mainnet-2.bevm.io/'
|
17027
|
+
],
|
17028
|
+
faucets: [],
|
17029
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
17030
|
+
infoURL: 'https://bevm.io',
|
17031
|
+
shortName: 'bevm',
|
17032
|
+
chainId: 11501,
|
17033
|
+
networkId: 11501,
|
17034
|
+
icon: 'bevm',
|
17035
|
+
explorers: [
|
17036
|
+
{
|
17037
|
+
name: 'bevm mainnet scan',
|
17038
|
+
url: 'https://scan-mainnet.bevm.io',
|
17039
|
+
standard: 'none'
|
17040
|
+
}
|
17041
|
+
]
|
17042
|
+
},
|
16681
17043
|
{
|
16682
17044
|
name: 'BEVM Testnet',
|
16683
17045
|
chain: 'BEVM',
|
@@ -16685,10 +17047,10 @@ const chainArray = [
|
|
16685
17047
|
faucets: [],
|
16686
17048
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
16687
17049
|
infoURL: 'https://bevm.io',
|
16688
|
-
shortName: 'bevm',
|
17050
|
+
shortName: 'bevm-test',
|
16689
17051
|
chainId: 11503,
|
16690
17052
|
networkId: 11503,
|
16691
|
-
icon: '
|
17053
|
+
icon: 'bevm',
|
16692
17054
|
explorers: [
|
16693
17055
|
{
|
16694
17056
|
name: 'bevm testnet scan',
|
@@ -17042,7 +17404,11 @@ const chainArray = [
|
|
17042
17404
|
{
|
17043
17405
|
name: 'Immutable zkEVM',
|
17044
17406
|
chain: 'Immutable zkEVM',
|
17045
|
-
rpc: [
|
17407
|
+
rpc: [
|
17408
|
+
'https://rpc.immutable.com',
|
17409
|
+
'https://immutable-zkevm.drpc.org',
|
17410
|
+
'wss://immutable-zkevm.drpc.org'
|
17411
|
+
],
|
17046
17412
|
faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
|
17047
17413
|
nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 },
|
17048
17414
|
infoURL: 'https://www.immutable.com',
|
@@ -17081,7 +17447,11 @@ const chainArray = [
|
|
17081
17447
|
{
|
17082
17448
|
name: 'Immutable zkEVM Testnet',
|
17083
17449
|
chain: 'Immutable zkEVM',
|
17084
|
-
rpc: [
|
17450
|
+
rpc: [
|
17451
|
+
'https://rpc.testnet.immutable.com',
|
17452
|
+
'https://immutable-zkevm-testnet.drpc.org',
|
17453
|
+
'wss://immutable-zkevm-testnet.drpc.org'
|
17454
|
+
],
|
17085
17455
|
faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
|
17086
17456
|
nativeCurrency: { name: 'Test IMX', symbol: 'tIMX', decimals: 18 },
|
17087
17457
|
infoURL: 'https://www.immutable.com',
|
@@ -17366,7 +17736,9 @@ const chainArray = [
|
|
17366
17736
|
rpc: [
|
17367
17737
|
'https://rpc.holesky.ethpandaops.io',
|
17368
17738
|
'https://ethereum-holesky-rpc.publicnode.com',
|
17369
|
-
'wss://ethereum-holesky-rpc.publicnode.com'
|
17739
|
+
'wss://ethereum-holesky-rpc.publicnode.com',
|
17740
|
+
'https://holesky.drpc.org',
|
17741
|
+
'wss://holesky.drpc.org'
|
17370
17742
|
],
|
17371
17743
|
faucets: [
|
17372
17744
|
'https://faucet.holesky.ethpandaops.io',
|
@@ -18081,7 +18453,7 @@ const chainArray = [
|
|
18081
18453
|
explorers: [
|
18082
18454
|
{
|
18083
18455
|
name: 'Oasis Sapphire Explorer',
|
18084
|
-
url: 'https://explorer.
|
18456
|
+
url: 'https://explorer.oasis.io/mainnet/sapphire',
|
18085
18457
|
standard: 'EIP3091'
|
18086
18458
|
}
|
18087
18459
|
]
|
@@ -18091,8 +18463,8 @@ const chainArray = [
|
|
18091
18463
|
chain: 'Sapphire',
|
18092
18464
|
icon: 'oasis',
|
18093
18465
|
rpc: [
|
18094
|
-
'https://testnet.sapphire.oasis.
|
18095
|
-
'wss://testnet.sapphire.oasis.
|
18466
|
+
'https://testnet.sapphire.oasis.io',
|
18467
|
+
'wss://testnet.sapphire.oasis.io/ws'
|
18096
18468
|
],
|
18097
18469
|
faucets: [],
|
18098
18470
|
nativeCurrency: { name: 'Sapphire Test Rose', symbol: 'TEST', decimals: 18 },
|
@@ -18104,7 +18476,7 @@ const chainArray = [
|
|
18104
18476
|
explorers: [
|
18105
18477
|
{
|
18106
18478
|
name: 'Oasis Sapphire Testnet Explorer',
|
18107
|
-
url: 'https://
|
18479
|
+
url: 'https://explorer.oasis.io/testnet/sapphire',
|
18108
18480
|
standard: 'EIP3091'
|
18109
18481
|
}
|
18110
18482
|
]
|
@@ -18319,6 +18691,27 @@ const chainArray = [
|
|
18319
18691
|
}
|
18320
18692
|
]
|
18321
18693
|
},
|
18694
|
+
{
|
18695
|
+
name: 'HYCHAIN Testnet',
|
18696
|
+
chainId: 29112,
|
18697
|
+
shortName: 'hychain-testnet',
|
18698
|
+
chain: 'ETH',
|
18699
|
+
networkId: 29112,
|
18700
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
18701
|
+
rpc: [ 'https://testnet-rpc.hychain.com/http' ],
|
18702
|
+
faucets: [],
|
18703
|
+
infoURL: 'https://www.hychain.com',
|
18704
|
+
icon: 'hychain',
|
18705
|
+
explorers: [
|
18706
|
+
{
|
18707
|
+
name: 'blockscout',
|
18708
|
+
url: 'https://testnet.explorer.hychain.com',
|
18709
|
+
icon: 'hychain',
|
18710
|
+
standard: 'EIP3091'
|
18711
|
+
}
|
18712
|
+
],
|
18713
|
+
parent: { type: 'L2', chain: 'eip155-58008', bridges: [] }
|
18714
|
+
},
|
18322
18715
|
{
|
18323
18716
|
name: 'MCH Verse Mainnet',
|
18324
18717
|
chain: 'MCH Verse',
|
@@ -18692,7 +19085,11 @@ const chainArray = [
|
|
18692
19085
|
{
|
18693
19086
|
name: 'Mode',
|
18694
19087
|
chain: 'ETH',
|
18695
|
-
rpc: [
|
19088
|
+
rpc: [
|
19089
|
+
'https://mainnet.mode.network',
|
19090
|
+
'https://mode.drpc.org',
|
19091
|
+
'wss://mode.drpc.org'
|
19092
|
+
],
|
18696
19093
|
faucets: [],
|
18697
19094
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
18698
19095
|
infoURL: 'https://docs.mode.network/',
|
@@ -18970,10 +19367,10 @@ const chainArray = [
|
|
18970
19367
|
chain: 'Emerald',
|
18971
19368
|
icon: 'oasis',
|
18972
19369
|
rpc: [
|
18973
|
-
'https://testnet.emerald.oasis.
|
18974
|
-
'wss://testnet.emerald.oasis.
|
19370
|
+
'https://testnet.emerald.oasis.io/',
|
19371
|
+
'wss://testnet.emerald.oasis.io/ws'
|
18975
19372
|
],
|
18976
|
-
faucets: [ 'https://faucet.testnet.oasis.
|
19373
|
+
faucets: [ 'https://faucet.testnet.oasis.io/' ],
|
18977
19374
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
18978
19375
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
18979
19376
|
shortName: 'emerald-testnet',
|
@@ -18983,7 +19380,7 @@ const chainArray = [
|
|
18983
19380
|
explorers: [
|
18984
19381
|
{
|
18985
19382
|
name: 'Oasis Emerald Testnet Explorer',
|
18986
|
-
url: 'https://
|
19383
|
+
url: 'https://explorer.oasis.io/testnet/emerald',
|
18987
19384
|
standard: 'EIP3091'
|
18988
19385
|
}
|
18989
19386
|
]
|
@@ -18992,7 +19389,7 @@ const chainArray = [
|
|
18992
19389
|
name: 'Oasis Emerald',
|
18993
19390
|
chain: 'Emerald',
|
18994
19391
|
icon: 'oasis',
|
18995
|
-
rpc: [ 'https://emerald.oasis.
|
19392
|
+
rpc: [ 'https://emerald.oasis.io', 'wss://emerald.oasis.io/ws' ],
|
18996
19393
|
faucets: [],
|
18997
19394
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
18998
19395
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
@@ -19002,7 +19399,7 @@ const chainArray = [
|
|
19002
19399
|
explorers: [
|
19003
19400
|
{
|
19004
19401
|
name: 'Oasis Emerald Explorer',
|
19005
|
-
url: 'https://explorer.
|
19402
|
+
url: 'https://explorer.oasis.io/mainnet/emerald',
|
19006
19403
|
standard: 'EIP3091'
|
19007
19404
|
}
|
19008
19405
|
]
|
@@ -19262,6 +19659,26 @@ const chainArray = [
|
|
19262
19659
|
}
|
19263
19660
|
]
|
19264
19661
|
},
|
19662
|
+
{
|
19663
|
+
name: 'Swamps L2',
|
19664
|
+
chain: 'SWP',
|
19665
|
+
icon: 'swamps',
|
19666
|
+
rpc: [ 'https://swamps.tc.l2aas.com' ],
|
19667
|
+
faucets: [],
|
19668
|
+
nativeCurrency: { name: 'SWP', symbol: 'SWP', decimals: 18 },
|
19669
|
+
infoURL: 'https://www.swamps.fi',
|
19670
|
+
shortName: 'SWP',
|
19671
|
+
chainId: 45454,
|
19672
|
+
networkId: 45454,
|
19673
|
+
explorers: [
|
19674
|
+
{
|
19675
|
+
name: 'blockscout',
|
19676
|
+
url: 'https://swamps-explorer.tc.l2aas.com',
|
19677
|
+
icon: 'blockscout',
|
19678
|
+
standard: 'EIP3091'
|
19679
|
+
}
|
19680
|
+
]
|
19681
|
+
},
|
19265
19682
|
{
|
19266
19683
|
name: 'Deelance Mainnet',
|
19267
19684
|
title: 'Deelance Network Mainnet',
|
@@ -20700,6 +21117,27 @@ const chainArray = [
|
|
20700
21117
|
}
|
20701
21118
|
]
|
20702
21119
|
},
|
21120
|
+
{
|
21121
|
+
name: 'Amoy',
|
21122
|
+
title: 'Polygon Amoy Testnet',
|
21123
|
+
chain: 'Polygon',
|
21124
|
+
icon: 'polygon',
|
21125
|
+
rpc: [ 'https://rpc-amoy.polygon.technology' ],
|
21126
|
+
faucets: [ 'https://faucet.polygon.technology/' ],
|
21127
|
+
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
21128
|
+
infoURL: 'https://polygon.technology/',
|
21129
|
+
shortName: 'polygonamoy',
|
21130
|
+
chainId: 80002,
|
21131
|
+
networkId: 80002,
|
21132
|
+
slip44: 1,
|
21133
|
+
explorers: [
|
21134
|
+
{
|
21135
|
+
name: 'polygonamoy',
|
21136
|
+
url: 'https://www.oklink.com/amoy',
|
21137
|
+
standard: 'EIP3091'
|
21138
|
+
}
|
21139
|
+
]
|
21140
|
+
},
|
20703
21141
|
{
|
20704
21142
|
name: 'Berachain Artio',
|
20705
21143
|
chain: 'Berachain Artio',
|
@@ -21569,24 +22007,24 @@ const chainArray = [
|
|
21569
22007
|
status: 'deprecated'
|
21570
22008
|
},
|
21571
22009
|
{
|
21572
|
-
name: '
|
21573
|
-
chain: '
|
21574
|
-
icon: '
|
21575
|
-
rpc: [ 'https://
|
21576
|
-
faucets: [
|
21577
|
-
nativeCurrency: { name: '
|
21578
|
-
infoURL: 'https://
|
21579
|
-
shortName: '
|
22010
|
+
name: 'Global Trust Network',
|
22011
|
+
chain: 'GTN',
|
22012
|
+
icon: 'gtn',
|
22013
|
+
rpc: [ 'https://gtn.stabilityprotocol.com' ],
|
22014
|
+
faucets: [],
|
22015
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
22016
|
+
infoURL: 'https://stabilityprotocol.com',
|
22017
|
+
shortName: 'stabilityprotocol',
|
21580
22018
|
chainId: 101010,
|
21581
22019
|
networkId: 101010,
|
21582
|
-
slip44: 1,
|
21583
22020
|
explorers: [
|
21584
22021
|
{
|
21585
|
-
name: '
|
21586
|
-
url: 'https://
|
22022
|
+
name: 'blockscout',
|
22023
|
+
url: 'https://stability.blockscout.com',
|
21587
22024
|
standard: 'EIP3091'
|
21588
22025
|
}
|
21589
|
-
]
|
22026
|
+
],
|
22027
|
+
redFlags: [ 'reusedChainId' ]
|
21590
22028
|
},
|
21591
22029
|
{
|
21592
22030
|
name: 'Crystaleum',
|
@@ -21630,6 +22068,25 @@ const chainArray = [
|
|
21630
22068
|
}
|
21631
22069
|
]
|
21632
22070
|
},
|
22071
|
+
{
|
22072
|
+
name: 'Stratis Mainnet',
|
22073
|
+
chain: 'Stratis',
|
22074
|
+
rpc: [ 'https://rpc.stratisevm.com' ],
|
22075
|
+
faucets: [],
|
22076
|
+
nativeCurrency: { name: 'Stratis', symbol: 'STRAX', decimals: 18 },
|
22077
|
+
infoURL: 'https://www.stratisplatform.com',
|
22078
|
+
shortName: 'stratis',
|
22079
|
+
chainId: 105105,
|
22080
|
+
networkId: 105105,
|
22081
|
+
icon: 'stratis',
|
22082
|
+
explorers: [
|
22083
|
+
{
|
22084
|
+
name: 'Stratis Explorer',
|
22085
|
+
url: 'https://explorer.stratisevm.com',
|
22086
|
+
standard: 'EIP3091'
|
22087
|
+
}
|
22088
|
+
]
|
22089
|
+
},
|
21633
22090
|
{
|
21634
22091
|
name: 'BROChain Mainnet',
|
21635
22092
|
chain: 'BRO',
|
@@ -22097,7 +22554,12 @@ const chainArray = [
|
|
22097
22554
|
chain: 'ETH',
|
22098
22555
|
status: 'active',
|
22099
22556
|
icon: 'taiko',
|
22100
|
-
rpc: [
|
22557
|
+
rpc: [
|
22558
|
+
'https://rpc.katla.taiko.xyz',
|
22559
|
+
'wss://rpc.katla.taiko.xyz',
|
22560
|
+
'https://taiko-katla.drpc.org',
|
22561
|
+
'wss://taiko-katla.drpc.org'
|
22562
|
+
],
|
22101
22563
|
faucets: [],
|
22102
22564
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
22103
22565
|
infoURL: 'https://taiko.xyz',
|
@@ -22744,7 +23206,9 @@ const chainArray = [
|
|
22744
23206
|
'https://rpc.ankr.com/filecoin_testnet',
|
22745
23207
|
'https://filecoin-calibration.chainstacklabs.com/rpc/v1',
|
22746
23208
|
'https://filecoin-calibration.chainup.net/rpc/v1',
|
22747
|
-
'https://calibration.filfox.info/rpc/v1'
|
23209
|
+
'https://calibration.filfox.info/rpc/v1',
|
23210
|
+
'https://filecoin-calibration.drpc.org',
|
23211
|
+
'wss://filecoin-calibration.drpc.org'
|
22748
23212
|
],
|
22749
23213
|
faucets: [ 'https://faucet.calibration.fildev.network/' ],
|
22750
23214
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
@@ -24167,7 +24631,9 @@ const chainArray = [
|
|
24167
24631
|
icon: 'astarzk',
|
24168
24632
|
rpc: [
|
24169
24633
|
'https://rpc.zkatana.gelato.digital',
|
24170
|
-
'https://rpc.startale.com/zkatana'
|
24634
|
+
'https://rpc.startale.com/zkatana',
|
24635
|
+
'https://astar-zkatana.drpc.org',
|
24636
|
+
'wss://astar-zkatana.drpc.org'
|
24171
24637
|
],
|
24172
24638
|
faucets: [],
|
24173
24639
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
@@ -24420,7 +24886,11 @@ const chainArray = [
|
|
24420
24886
|
{
|
24421
24887
|
name: 'Manta Pacific Testnet',
|
24422
24888
|
chain: 'Manta Pacific',
|
24423
|
-
rpc: [
|
24889
|
+
rpc: [
|
24890
|
+
'https://manta-testnet.calderachain.xyz/http',
|
24891
|
+
'https://manta-pacific-testnet.drpc.org',
|
24892
|
+
'wss://manta-pacific-testnet.drpc.org'
|
24893
|
+
],
|
24424
24894
|
faucets: [],
|
24425
24895
|
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
24426
24896
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -24438,6 +24908,27 @@ const chainArray = [
|
|
24438
24908
|
}
|
24439
24909
|
]
|
24440
24910
|
},
|
24911
|
+
{
|
24912
|
+
name: 'Manta Pacific Sepolia Testnet',
|
24913
|
+
chain: 'Manta Pacific',
|
24914
|
+
rpc: [ 'https://pacific-rpc.sepolia-testnet.manta.network/http' ],
|
24915
|
+
faucets: [],
|
24916
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
24917
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
24918
|
+
infoURL: 'https://manta-testnet.caldera.dev/',
|
24919
|
+
shortName: 'mantaSepoliaTestnet',
|
24920
|
+
chainId: 3441006,
|
24921
|
+
networkId: 3441006,
|
24922
|
+
slip44: 1,
|
24923
|
+
icon: 'manta',
|
24924
|
+
explorers: [
|
24925
|
+
{
|
24926
|
+
name: 'manta-testnet Explorer',
|
24927
|
+
url: 'https://pacific-explorer.sepolia-testnet.manta.network',
|
24928
|
+
standard: 'EIP3091'
|
24929
|
+
}
|
24930
|
+
]
|
24931
|
+
},
|
24441
24932
|
{
|
24442
24933
|
name: 'AltLayer Zero Gas Network',
|
24443
24934
|
chain: 'ETH',
|
@@ -24882,7 +25373,9 @@ const chainArray = [
|
|
24882
25373
|
'https://sepolia.gateway.tenderly.co',
|
24883
25374
|
'wss://sepolia.gateway.tenderly.co',
|
24884
25375
|
'https://ethereum-sepolia-rpc.publicnode.com',
|
24885
|
-
'wss://ethereum-sepolia-rpc.publicnode.com'
|
25376
|
+
'wss://ethereum-sepolia-rpc.publicnode.com',
|
25377
|
+
'https://sepolia.drpc.org',
|
25378
|
+
'wss://sepolia.drpc.org'
|
24886
25379
|
],
|
24887
25380
|
faucets: [
|
24888
25381
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|
@@ -24909,7 +25402,11 @@ const chainArray = [
|
|
24909
25402
|
{
|
24910
25403
|
name: 'OP Sepolia Testnet',
|
24911
25404
|
chain: 'ETH',
|
24912
|
-
rpc: [
|
25405
|
+
rpc: [
|
25406
|
+
'https://sepolia.optimism.io',
|
25407
|
+
'https://optimism-sepolia.drpc.org',
|
25408
|
+
'wss://optimism-sepolia.drpc.org'
|
25409
|
+
],
|
24913
25410
|
faucets: [ 'https://app.optimism.io/faucet' ],
|
24914
25411
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
24915
25412
|
infoURL: 'https://optimism.io',
|
@@ -24986,6 +25483,26 @@ const chainArray = [
|
|
24986
25483
|
chainId: 18289463,
|
24987
25484
|
networkId: 18289463
|
24988
25485
|
},
|
25486
|
+
{
|
25487
|
+
name: 'Stability Testnet',
|
25488
|
+
chain: 'stabilityTestnet',
|
25489
|
+
icon: 'stabilitytestnet',
|
25490
|
+
rpc: [ 'https://free.testnet.stabilityprotocol.com' ],
|
25491
|
+
faucets: [],
|
25492
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
25493
|
+
infoURL: 'https://stabilityprotocol.com',
|
25494
|
+
shortName: 'stabilitytestnet',
|
25495
|
+
chainId: 20180427,
|
25496
|
+
networkId: 20180427,
|
25497
|
+
slip44: 1,
|
25498
|
+
explorers: [
|
25499
|
+
{
|
25500
|
+
name: 'blockscout',
|
25501
|
+
url: 'https://stability-testnet.blockscout.com',
|
25502
|
+
standard: 'EIP3091'
|
25503
|
+
}
|
25504
|
+
]
|
25505
|
+
},
|
24989
25506
|
{
|
24990
25507
|
name: 'SmartMesh Mainnet',
|
24991
25508
|
chain: 'Spectrum',
|
@@ -25420,6 +25937,33 @@ const chainArray = [
|
|
25420
25937
|
}
|
25421
25938
|
]
|
25422
25939
|
},
|
25940
|
+
{
|
25941
|
+
name: '0xHash Testnet',
|
25942
|
+
chain: 'HETH',
|
25943
|
+
icon: 'ethereum',
|
25944
|
+
rpc: [ 'https://rpc-test.0xhash.io' ],
|
25945
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
25946
|
+
faucets: [],
|
25947
|
+
nativeCurrency: { name: '0xHash', symbol: 'HETH', decimals: 18 },
|
25948
|
+
infoURL: 'https://0xhash.io',
|
25949
|
+
shortName: 'HETH',
|
25950
|
+
chainId: 77787778,
|
25951
|
+
networkId: 77787778,
|
25952
|
+
slip44: 1,
|
25953
|
+
explorers: [
|
25954
|
+
{
|
25955
|
+
name: 'blockscout',
|
25956
|
+
url: 'https://test.0xhashscan.io',
|
25957
|
+
icon: 'blockscout',
|
25958
|
+
standard: 'EIP3091'
|
25959
|
+
}
|
25960
|
+
],
|
25961
|
+
parent: {
|
25962
|
+
type: 'L2',
|
25963
|
+
chain: 'eip155-1',
|
25964
|
+
bridges: [ { url: 'https://app.optimism.io/bridge/deposit' } ]
|
25965
|
+
}
|
25966
|
+
},
|
25423
25967
|
{
|
25424
25968
|
name: 'T.E.A.M Blockchain',
|
25425
25969
|
chain: 'TEAM',
|
@@ -25482,7 +26026,11 @@ const chainArray = [
|
|
25482
26026
|
{
|
25483
26027
|
name: 'Blast Sepolia Testnet',
|
25484
26028
|
chain: 'ETH',
|
25485
|
-
rpc: [
|
26029
|
+
rpc: [
|
26030
|
+
'https://sepolia.blast.io',
|
26031
|
+
'https://blast-sepolia.drpc.org',
|
26032
|
+
'wss://blast-sepolia.drpc.org'
|
26033
|
+
],
|
25486
26034
|
faucets: [ 'https://faucet.quicknode.com/blast/sepolia' ],
|
25487
26035
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
25488
26036
|
infoURL: 'https://blast.io/',
|
@@ -25552,7 +26100,11 @@ const chainArray = [
|
|
25552
26100
|
{
|
25553
26101
|
name: 'Neon EVM Devnet',
|
25554
26102
|
chain: 'Solana',
|
25555
|
-
rpc: [
|
26103
|
+
rpc: [
|
26104
|
+
'https://devnet.neonevm.org',
|
26105
|
+
'https://neon-evm-devnet.drpc.org',
|
26106
|
+
'wss://neon-evm-devnet.drpc.org'
|
26107
|
+
],
|
25556
26108
|
faucets: [ 'https://neonfaucet.org' ],
|
25557
26109
|
icon: 'neon',
|
25558
26110
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
@@ -25577,7 +26129,11 @@ const chainArray = [
|
|
25577
26129
|
{
|
25578
26130
|
name: 'Neon EVM Mainnet',
|
25579
26131
|
chain: 'Solana',
|
25580
|
-
rpc: [
|
26132
|
+
rpc: [
|
26133
|
+
'https://neon-proxy-mainnet.solana.p2p.org',
|
26134
|
+
'https://neon-evm.drpc.org',
|
26135
|
+
'wss://neon-evm.drpc.org'
|
26136
|
+
],
|
25581
26137
|
faucets: [],
|
25582
26138
|
icon: 'neon',
|
25583
26139
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
@@ -25954,7 +26510,11 @@ const chainArray = [
|
|
25954
26510
|
{
|
25955
26511
|
name: 'Aurora Mainnet',
|
25956
26512
|
chain: 'NEAR',
|
25957
|
-
rpc: [
|
26513
|
+
rpc: [
|
26514
|
+
'https://mainnet.aurora.dev',
|
26515
|
+
'https://aurora.drpc.org',
|
26516
|
+
'wss://aurora.drpc.org'
|
26517
|
+
],
|
25958
26518
|
faucets: [],
|
25959
26519
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25960
26520
|
infoURL: 'https://aurora.dev',
|
@@ -25972,7 +26532,11 @@ const chainArray = [
|
|
25972
26532
|
{
|
25973
26533
|
name: 'Aurora Testnet',
|
25974
26534
|
chain: 'NEAR',
|
25975
|
-
rpc: [
|
26535
|
+
rpc: [
|
26536
|
+
'https://testnet.aurora.dev/',
|
26537
|
+
'https://aurora-testnet.drpc.org',
|
26538
|
+
'wss://aurora-testnet.drpc.org'
|
26539
|
+
],
|
25976
26540
|
faucets: [],
|
25977
26541
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25978
26542
|
infoURL: 'https://aurora.dev',
|
@@ -26179,7 +26743,9 @@ const chainArray = [
|
|
26179
26743
|
'https://api.s0.t.hmny.io',
|
26180
26744
|
'https://rpc.ankr.com/harmony',
|
26181
26745
|
'https://harmony.api.onfinality.io/public',
|
26182
|
-
'https://1rpc.io/one'
|
26746
|
+
'https://1rpc.io/one',
|
26747
|
+
'https://harmony-0.drpc.org',
|
26748
|
+
'wss://harmony-0.drpc.org'
|
26183
26749
|
],
|
26184
26750
|
faucets: [],
|
26185
26751
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
@@ -26200,7 +26766,11 @@ const chainArray = [
|
|
26200
26766
|
{
|
26201
26767
|
name: 'Harmony Mainnet Shard 1',
|
26202
26768
|
chain: 'Harmony',
|
26203
|
-
rpc: [
|
26769
|
+
rpc: [
|
26770
|
+
'https://api.s1.t.hmny.io',
|
26771
|
+
'https://harmony-1.drpc.org',
|
26772
|
+
'wss://harmony-1.drpc.org'
|
26773
|
+
],
|
26204
26774
|
faucets: [],
|
26205
26775
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
26206
26776
|
infoURL: 'https://www.harmony.one/',
|