eth-chainlist 0.0.373 → 0.0.374
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 +495 -28
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.374 (2024-04-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.373 ([4ee56d4](https://github.com/poowf/eth-chainlist/commit/4ee56d49cdf54f9cae44eaa31f79e637fce0ac70))
|
9
|
+
* update chain data ([6644e76](https://github.com/poowf/eth-chainlist/commit/6644e76ec33c1880f3832f5af365eab7c46aaf92))
|
10
|
+
|
3
11
|
### 0.0.373 (2024-04-09)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3429,17 +3429,17 @@ const chainArray = [
|
|
3429
3429
|
]
|
3430
3430
|
},
|
3431
3431
|
{
|
3432
|
-
name: '
|
3433
|
-
chain: '
|
3434
|
-
rpc: [ 'https://testrpc.
|
3435
|
-
faucets: [ 'https://www.okx.com/
|
3432
|
+
name: 'X Layer Testnet',
|
3433
|
+
chain: 'X Layer',
|
3434
|
+
rpc: [ 'https://testrpc.xlayer.tech', 'https://xlayertestrpc.okx.com' ],
|
3435
|
+
faucets: [ 'https://www.okx.com/xlayer/faucet' ],
|
3436
3436
|
nativeCurrency: {
|
3437
|
-
name: '
|
3437
|
+
name: 'X Layer Global Utility Token in testnet',
|
3438
3438
|
symbol: 'OKB',
|
3439
3439
|
decimals: 18
|
3440
3440
|
},
|
3441
3441
|
features: [],
|
3442
|
-
infoURL: 'https://www.okx.com/
|
3442
|
+
infoURL: 'https://www.okx.com/xlayer',
|
3443
3443
|
shortName: 'tokb',
|
3444
3444
|
chainId: 195,
|
3445
3445
|
networkId: 195,
|
@@ -3447,24 +3447,34 @@ const chainArray = [
|
|
3447
3447
|
explorers: [
|
3448
3448
|
{
|
3449
3449
|
name: 'OKLink',
|
3450
|
-
url: 'https://www.oklink.com/
|
3450
|
+
url: 'https://www.oklink.com/xlayer-test',
|
3451
3451
|
standard: 'EIP3091'
|
3452
3452
|
}
|
3453
3453
|
],
|
3454
3454
|
status: 'active'
|
3455
3455
|
},
|
3456
3456
|
{
|
3457
|
-
name: '
|
3458
|
-
chain: '
|
3459
|
-
rpc: [],
|
3457
|
+
name: 'X Layer Mainnet',
|
3458
|
+
chain: 'X Layer',
|
3459
|
+
rpc: [ 'https://rpc.xlayer.tech', 'https://xlayerrpc.okx.com' ],
|
3460
3460
|
faucets: [],
|
3461
|
-
nativeCurrency: {
|
3461
|
+
nativeCurrency: {
|
3462
|
+
name: 'X Layer Global Utility Token',
|
3463
|
+
symbol: 'OKB',
|
3464
|
+
decimals: 18
|
3465
|
+
},
|
3462
3466
|
features: [],
|
3463
|
-
infoURL: 'https://www.okx.com/
|
3467
|
+
infoURL: 'https://www.okx.com/xlayer',
|
3464
3468
|
shortName: 'okb',
|
3465
3469
|
chainId: 196,
|
3466
3470
|
networkId: 196,
|
3467
|
-
explorers: [
|
3471
|
+
explorers: [
|
3472
|
+
{
|
3473
|
+
name: 'OKLink',
|
3474
|
+
url: 'https://www.oklink.com/xlayer',
|
3475
|
+
standard: 'EIP3091'
|
3476
|
+
}
|
3477
|
+
],
|
3468
3478
|
status: 'incubating'
|
3469
3479
|
},
|
3470
3480
|
{
|
@@ -3564,6 +3574,25 @@ const chainArray = [
|
|
3564
3574
|
}
|
3565
3575
|
]
|
3566
3576
|
},
|
3577
|
+
{
|
3578
|
+
name: 'Edgeless Testnet',
|
3579
|
+
chain: 'EdgelessTestnet',
|
3580
|
+
rpc: [ 'https://testnet.rpc.edgeless.network/http' ],
|
3581
|
+
features: [ { name: 'EIP155' } ],
|
3582
|
+
faucets: [],
|
3583
|
+
nativeCurrency: { name: 'Edgeless Wrapped Eth', symbol: 'EwEth', decimals: 18 },
|
3584
|
+
infoURL: 'https://edgeless.network',
|
3585
|
+
shortName: 'edgeless-testnet',
|
3586
|
+
chainId: 202,
|
3587
|
+
networkId: 202,
|
3588
|
+
explorers: [
|
3589
|
+
{
|
3590
|
+
name: 'Edgeless Explorer',
|
3591
|
+
url: 'https://testnet.explorer.edgeless.network',
|
3592
|
+
standard: 'EIP3091'
|
3593
|
+
}
|
3594
|
+
]
|
3595
|
+
},
|
3567
3596
|
{
|
3568
3597
|
name: 'opBNB Mainnet',
|
3569
3598
|
icon: 'bnbchain',
|
@@ -5223,6 +5252,31 @@ const chainArray = [
|
|
5223
5252
|
}
|
5224
5253
|
]
|
5225
5254
|
},
|
5255
|
+
{
|
5256
|
+
name: 'Syndr L3',
|
5257
|
+
chainId: 404,
|
5258
|
+
shortName: 'syndr-l3',
|
5259
|
+
title: 'Syndr L3 Rollup',
|
5260
|
+
chain: 'SYNDR',
|
5261
|
+
networkId: 404,
|
5262
|
+
icon: 'syndr',
|
5263
|
+
rpc: [ 'https://rpc.syndr.com', 'wss://rpc.syndr.com/ws' ],
|
5264
|
+
faucets: [],
|
5265
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5266
|
+
infoURL: 'https://syndr.com',
|
5267
|
+
explorers: [
|
5268
|
+
{
|
5269
|
+
name: 'Syndr L3 Explorer',
|
5270
|
+
url: 'https://explorer.syndr.com',
|
5271
|
+
standard: 'EIP3091'
|
5272
|
+
}
|
5273
|
+
],
|
5274
|
+
parent: {
|
5275
|
+
type: 'L2',
|
5276
|
+
chain: 'eip155-42161',
|
5277
|
+
bridges: [ { url: 'https://bridge.syndr.com' } ]
|
5278
|
+
}
|
5279
|
+
},
|
5226
5280
|
{
|
5227
5281
|
name: 'Pepe Chain Mainnet',
|
5228
5282
|
chain: 'PC',
|
@@ -5395,6 +5449,25 @@ const chainArray = [
|
|
5395
5449
|
}
|
5396
5450
|
]
|
5397
5451
|
},
|
5452
|
+
{
|
5453
|
+
name: 'Boyaa Mainnet',
|
5454
|
+
chain: 'BYC',
|
5455
|
+
rpc: [ 'https://evm-rpc.mainnet.boyaa.network' ],
|
5456
|
+
faucets: [],
|
5457
|
+
nativeCurrency: { name: 'Boyaa mainnet native coin', symbol: 'BYC', decimals: 18 },
|
5458
|
+
infoURL: 'https://boyaa.network',
|
5459
|
+
shortName: 'BYC',
|
5460
|
+
chainId: 434,
|
5461
|
+
networkId: 434,
|
5462
|
+
icon: 'boyaanetwork',
|
5463
|
+
explorers: [
|
5464
|
+
{
|
5465
|
+
name: 'Boyaa explorer',
|
5466
|
+
url: 'https://explorer.mainnet.boyaa.network',
|
5467
|
+
standard: 'EIP3091'
|
5468
|
+
}
|
5469
|
+
]
|
5470
|
+
},
|
5398
5471
|
{
|
5399
5472
|
name: 'Ten Testnet',
|
5400
5473
|
title: 'Ten Sepolia Rollup Testnet',
|
@@ -5756,6 +5829,25 @@ const chainArray = [
|
|
5756
5829
|
}
|
5757
5830
|
]
|
5758
5831
|
},
|
5832
|
+
{
|
5833
|
+
name: 'Testnet',
|
5834
|
+
chain: 'Flow',
|
5835
|
+
rpc: [ 'https://testnet.evm.nodes.onflow.org' ],
|
5836
|
+
faucets: [ 'https://testnet-faucet.onflow.org' ],
|
5837
|
+
nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
|
5838
|
+
infoURL: 'https://developers.flow.com/evm/about',
|
5839
|
+
shortName: 'flow-testnet',
|
5840
|
+
chainId: 545,
|
5841
|
+
networkId: 545,
|
5842
|
+
icon: 'flowevm',
|
5843
|
+
explorers: [
|
5844
|
+
{
|
5845
|
+
name: 'Flow Diver',
|
5846
|
+
url: 'https://testnet.flowdiver.io',
|
5847
|
+
standard: 'none'
|
5848
|
+
}
|
5849
|
+
]
|
5850
|
+
},
|
5759
5851
|
{
|
5760
5852
|
name: 'Vela1 Chain Mainnet',
|
5761
5853
|
chain: 'VELA1',
|
@@ -6090,13 +6182,13 @@ const chainArray = [
|
|
6090
6182
|
]
|
6091
6183
|
},
|
6092
6184
|
{
|
6093
|
-
name: '
|
6094
|
-
chain: '
|
6185
|
+
name: 'Previewnet',
|
6186
|
+
chain: 'Flow',
|
6095
6187
|
rpc: [ 'https://previewnet.evm.nodes.onflow.org' ],
|
6096
6188
|
faucets: [ 'https://previewnet-faucet.onflow.org' ],
|
6097
6189
|
nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
|
6098
6190
|
infoURL: 'https://developers.flow.com/evm/about',
|
6099
|
-
shortName: '
|
6191
|
+
shortName: 'flow-previewnet',
|
6100
6192
|
chainId: 646,
|
6101
6193
|
networkId: 646,
|
6102
6194
|
icon: 'flowevm',
|
@@ -6538,13 +6630,13 @@ const chainArray = [
|
|
6538
6630
|
]
|
6539
6631
|
},
|
6540
6632
|
{
|
6541
|
-
name: '
|
6542
|
-
chain: '
|
6633
|
+
name: 'Mainnet',
|
6634
|
+
chain: 'Flow',
|
6543
6635
|
rpc: [ 'https://mainnet.evm.nodes.onflow.org' ],
|
6544
6636
|
faucets: [],
|
6545
6637
|
nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
|
6546
6638
|
infoURL: 'https://developers.flow.com/evm/about',
|
6547
|
-
shortName: '
|
6639
|
+
shortName: 'flow-mainnet',
|
6548
6640
|
chainId: 747,
|
6549
6641
|
networkId: 747,
|
6550
6642
|
icon: 'flowevm',
|
@@ -10902,6 +10994,25 @@ const chainArray = [
|
|
10902
10994
|
}
|
10903
10995
|
]
|
10904
10996
|
},
|
10997
|
+
{
|
10998
|
+
name: 'Edgeless Network',
|
10999
|
+
chain: 'Edgeless',
|
11000
|
+
rpc: [ 'https://rpc.edgeless.network/http' ],
|
11001
|
+
features: [ { name: 'EIP155' } ],
|
11002
|
+
faucets: [],
|
11003
|
+
nativeCurrency: { name: 'Edgeless Wrapped Eth', symbol: 'EwEth', decimals: 18 },
|
11004
|
+
infoURL: 'https://edgeless.network',
|
11005
|
+
shortName: 'edgeless',
|
11006
|
+
chainId: 2026,
|
11007
|
+
networkId: 2026,
|
11008
|
+
explorers: [
|
11009
|
+
{
|
11010
|
+
name: 'Edgeless Explorer',
|
11011
|
+
url: 'https://explorer.edgeless.network',
|
11012
|
+
standard: 'EIP3091'
|
11013
|
+
}
|
11014
|
+
]
|
11015
|
+
},
|
10905
11016
|
{
|
10906
11017
|
name: 'Centrifuge',
|
10907
11018
|
chain: 'CFG',
|
@@ -11698,6 +11809,25 @@ const chainArray = [
|
|
11698
11809
|
}
|
11699
11810
|
]
|
11700
11811
|
},
|
11812
|
+
{
|
11813
|
+
name: 'Omnia Chain',
|
11814
|
+
chain: 'OMNIA',
|
11815
|
+
icon: 'omnia',
|
11816
|
+
rpc: [ 'https://rpc.omniaverse.io' ],
|
11817
|
+
faucets: [ 'https://www.omniaverse.io' ],
|
11818
|
+
nativeCurrency: { name: 'Omnia', symbol: 'OMNIA', decimals: 18 },
|
11819
|
+
infoURL: 'https://www.omniaverse.io',
|
11820
|
+
shortName: 'omnia',
|
11821
|
+
chainId: 2342,
|
11822
|
+
networkId: 2342,
|
11823
|
+
explorers: [
|
11824
|
+
{
|
11825
|
+
name: 'OmniaVerse Explorer',
|
11826
|
+
url: 'https://scan.omniaverse.io',
|
11827
|
+
standard: 'EIP3091'
|
11828
|
+
}
|
11829
|
+
]
|
11830
|
+
},
|
11701
11831
|
{
|
11702
11832
|
name: '(deprecated) Kroma Sepolia',
|
11703
11833
|
title: '(deprecated) Kroma Testnet Sepolia',
|
@@ -11834,6 +11964,28 @@ const chainArray = [
|
|
11834
11964
|
}
|
11835
11965
|
]
|
11836
11966
|
},
|
11967
|
+
{
|
11968
|
+
name: 'King Of Legends Devnet',
|
11969
|
+
title: 'King Of Legends Devnet',
|
11970
|
+
chain: 'KOL',
|
11971
|
+
icon: 'kol',
|
11972
|
+
rpc: [ 'https://rpc-devnet.kinggamer.org/' ],
|
11973
|
+
faucets: [],
|
11974
|
+
nativeCurrency: { name: 'King Of Legends', symbol: 'KOL', decimals: 18 },
|
11975
|
+
infoURL: 'https://kingoflegends.net/',
|
11976
|
+
shortName: 'kol',
|
11977
|
+
chainId: 2425,
|
11978
|
+
networkId: 2425,
|
11979
|
+
slip44: 1,
|
11980
|
+
explorers: [
|
11981
|
+
{
|
11982
|
+
name: 'King Of Legends Devnet Explorer',
|
11983
|
+
url: 'https://devnet.kingscan.org',
|
11984
|
+
icon: 'kol',
|
11985
|
+
standard: 'EIP3091'
|
11986
|
+
}
|
11987
|
+
]
|
11988
|
+
},
|
11837
11989
|
{
|
11838
11990
|
name: 'Polygon zkEVM Cardona Testnet',
|
11839
11991
|
title: 'Polygon zkEVM Cardona Testnet',
|
@@ -12457,6 +12609,30 @@ const chainArray = [
|
|
12457
12609
|
networkId: 3102,
|
12458
12610
|
explorers: []
|
12459
12611
|
},
|
12612
|
+
{
|
12613
|
+
name: 'SatoshiVM Alpha Mainnet',
|
12614
|
+
chain: 'SatoshiVM',
|
12615
|
+
rpc: [ 'https://alpha-rpc-node-http.svmscan.io' ],
|
12616
|
+
faucets: [],
|
12617
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
12618
|
+
infoURL: 'https://www.satoshivm.io/',
|
12619
|
+
shortName: 'SAVM',
|
12620
|
+
chainId: 3109,
|
12621
|
+
networkId: 3109,
|
12622
|
+
icon: 'satoshivm'
|
12623
|
+
},
|
12624
|
+
{
|
12625
|
+
name: 'SatoshiVM Testnet',
|
12626
|
+
chain: 'SatoshiVM',
|
12627
|
+
rpc: [ 'https://test-rpc-node-http.svmscan.io' ],
|
12628
|
+
faucets: [],
|
12629
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
12630
|
+
infoURL: 'https://www.satoshivm.io/',
|
12631
|
+
shortName: 'tSAVM',
|
12632
|
+
chainId: 3110,
|
12633
|
+
networkId: 3110,
|
12634
|
+
icon: 'satoshivm'
|
12635
|
+
},
|
12460
12636
|
{
|
12461
12637
|
name: 'Filecoin - Hyperspace testnet',
|
12462
12638
|
status: 'deprecated',
|
@@ -14483,6 +14659,28 @@ const chainArray = [
|
|
14483
14659
|
networkId: 5616,
|
14484
14660
|
slip44: 1
|
14485
14661
|
},
|
14662
|
+
{
|
14663
|
+
name: 'QIE Blockchain',
|
14664
|
+
chain: 'QIE',
|
14665
|
+
icon: 'qie',
|
14666
|
+
rpc: [
|
14667
|
+
'https://rpc-main1.qiblockchain.online/',
|
14668
|
+
'https://rpc-main2.qiblockchain.online/'
|
14669
|
+
],
|
14670
|
+
faucets: [],
|
14671
|
+
nativeCurrency: { name: 'QIE Blockchain', symbol: 'QIE', decimals: 18 },
|
14672
|
+
infoURL: 'https://qiblockchain.online/',
|
14673
|
+
shortName: 'QIE',
|
14674
|
+
chainId: 5656,
|
14675
|
+
networkId: 5656,
|
14676
|
+
explorers: [
|
14677
|
+
{
|
14678
|
+
name: 'QIE Explorer',
|
14679
|
+
url: 'https://mainnet.qiblockchain.online',
|
14680
|
+
standard: 'EIP3091'
|
14681
|
+
}
|
14682
|
+
]
|
14683
|
+
},
|
14486
14684
|
{
|
14487
14685
|
name: 'Tanssi EVM ContainerChain',
|
14488
14686
|
chain: 'EVMCC',
|
@@ -14577,6 +14775,26 @@ const chainArray = [
|
|
14577
14775
|
slip44: 1,
|
14578
14776
|
explorers: []
|
14579
14777
|
},
|
14778
|
+
{
|
14779
|
+
name: 'Tangle',
|
14780
|
+
chain: 'Tangle',
|
14781
|
+
rpc: [ 'https://rpc.tangle.tools', 'wss://rpc.tangle.tools' ],
|
14782
|
+
faucets: [],
|
14783
|
+
nativeCurrency: { name: 'Tangle', symbol: 'TNT', decimals: 18 },
|
14784
|
+
infoURL: 'https://docs.tangle.tools',
|
14785
|
+
shortName: 'tangle',
|
14786
|
+
chainId: 5845,
|
14787
|
+
networkId: 5845,
|
14788
|
+
icon: 'tangle',
|
14789
|
+
explorers: [
|
14790
|
+
{
|
14791
|
+
name: 'Tangle EVM Explorer',
|
14792
|
+
url: 'https://explorer.tangle.tools',
|
14793
|
+
standard: 'EIP3091',
|
14794
|
+
icon: 'tangle'
|
14795
|
+
}
|
14796
|
+
]
|
14797
|
+
},
|
14580
14798
|
{
|
14581
14799
|
name: 'Ontology Testnet',
|
14582
14800
|
chain: 'Ontology',
|
@@ -17198,6 +17416,17 @@ const chainArray = [
|
|
17198
17416
|
}
|
17199
17417
|
]
|
17200
17418
|
},
|
17419
|
+
{
|
17420
|
+
name: 'Ztc Mainnet',
|
17421
|
+
chain: 'ZTC',
|
17422
|
+
rpc: [ 'https://zitcoin.us' ],
|
17423
|
+
faucets: [],
|
17424
|
+
nativeCurrency: { name: 'Ztcer', symbol: 'ZTC', decimals: 5 },
|
17425
|
+
infoURL: 'https://ztc.best',
|
17426
|
+
shortName: 'ZTC',
|
17427
|
+
chainId: 9998,
|
17428
|
+
networkId: 9998
|
17429
|
+
},
|
17201
17430
|
{
|
17202
17431
|
name: 'myOwn Testnet',
|
17203
17432
|
chain: 'myOwn',
|
@@ -18214,6 +18443,27 @@ const chainArray = [
|
|
18214
18443
|
}
|
18215
18444
|
]
|
18216
18445
|
},
|
18446
|
+
{
|
18447
|
+
name: 'Kronobit Mainnet',
|
18448
|
+
title: 'Kronobit Mainnet',
|
18449
|
+
chain: 'KNB',
|
18450
|
+
rpc: [ 'https://mainnet-rpc.qbitscan.com' ],
|
18451
|
+
faucets: [],
|
18452
|
+
nativeCurrency: { name: 'Kronobit', symbol: 'KNB', decimals: 18 },
|
18453
|
+
infoURL: 'https://kronobit.org',
|
18454
|
+
shortName: 'KNB',
|
18455
|
+
chainId: 13600,
|
18456
|
+
networkId: 13600,
|
18457
|
+
icon: 'kronobit',
|
18458
|
+
explorers: [
|
18459
|
+
{
|
18460
|
+
name: 'qbitscan',
|
18461
|
+
url: 'https://explorer.qbitscan.com',
|
18462
|
+
icon: 'kronobit',
|
18463
|
+
standard: 'EIP3091'
|
18464
|
+
}
|
18465
|
+
]
|
18466
|
+
},
|
18217
18467
|
{
|
18218
18468
|
name: 'Susono',
|
18219
18469
|
chain: 'SUS',
|
@@ -18825,6 +19075,27 @@ const chainArray = [
|
|
18825
19075
|
}
|
18826
19076
|
]
|
18827
19077
|
},
|
19078
|
+
{
|
19079
|
+
name: 'Titan (TKX)',
|
19080
|
+
chain: 'Titan (TKX)',
|
19081
|
+
rpc: [ 'https://titan-json-rpc.titanlab.io' ],
|
19082
|
+
faucets: [],
|
19083
|
+
nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
|
19084
|
+
infoURL: 'https://titanlab.io',
|
19085
|
+
shortName: 'titan_tkx',
|
19086
|
+
chainId: 18888,
|
19087
|
+
networkId: 18888,
|
19088
|
+
slip44: 1,
|
19089
|
+
icon: 'titan_tkx',
|
19090
|
+
explorers: [
|
19091
|
+
{
|
19092
|
+
name: 'Titan Explorer',
|
19093
|
+
url: 'https://titan-explorer-light.titanlab.io/Titan',
|
19094
|
+
standard: 'none',
|
19095
|
+
icon: 'titan_tkx'
|
19096
|
+
}
|
19097
|
+
]
|
19098
|
+
},
|
18828
19099
|
{
|
18829
19100
|
name: 'Titan (TKX) Testnet',
|
18830
19101
|
chain: 'Titan (TKX)',
|
@@ -19856,10 +20127,10 @@ const chainArray = [
|
|
19856
20127
|
]
|
19857
20128
|
},
|
19858
20129
|
{
|
19859
|
-
name: 'Zilliqa
|
20130
|
+
name: 'Zilliqa-2 EVM Devnet',
|
19860
20131
|
chain: 'ZIL',
|
19861
|
-
rpc: [ 'https://api.zq2-devnet.
|
19862
|
-
faucets: [ 'https://faucet.zq2-devnet.
|
20132
|
+
rpc: [ 'https://api.zq2-devnet.zilliqa.com' ],
|
20133
|
+
faucets: [ 'https://faucet.zq2-devnet.zilliqa.com' ],
|
19863
20134
|
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
19864
20135
|
infoURL: 'https://www.zilliqa.com/',
|
19865
20136
|
shortName: 'zq2-devnet',
|
@@ -19868,8 +20139,8 @@ const chainArray = [
|
|
19868
20139
|
icon: 'zilliqa',
|
19869
20140
|
explorers: [
|
19870
20141
|
{
|
19871
|
-
name: 'Zilliqa
|
19872
|
-
url: 'https://explorer.zq2-devnet.
|
20142
|
+
name: 'Zilliqa-2 EVM Devnet Explorer',
|
20143
|
+
url: 'https://explorer.zq2-devnet.zilliqa.com',
|
19873
20144
|
standard: 'EIP3091'
|
19874
20145
|
}
|
19875
20146
|
]
|
@@ -21051,7 +21322,7 @@ const chainArray = [
|
|
21051
21322
|
}
|
21052
21323
|
},
|
21053
21324
|
{
|
21054
|
-
name: 'Linea
|
21325
|
+
name: 'Linea Goerli',
|
21055
21326
|
title: 'Linea Goerli Testnet',
|
21056
21327
|
chain: 'ETH',
|
21057
21328
|
rpc: [
|
@@ -21063,7 +21334,7 @@ const chainArray = [
|
|
21063
21334
|
faucets: [ 'https://faucetlink.to/goerli' ],
|
21064
21335
|
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
21065
21336
|
infoURL: 'https://linea.build',
|
21066
|
-
shortName: 'linea-
|
21337
|
+
shortName: 'linea-goerli',
|
21067
21338
|
chainId: 59140,
|
21068
21339
|
networkId: 59140,
|
21069
21340
|
slip44: 1,
|
@@ -21093,6 +21364,45 @@ const chainArray = [
|
|
21093
21364
|
],
|
21094
21365
|
status: 'active'
|
21095
21366
|
},
|
21367
|
+
{
|
21368
|
+
name: 'Linea Sepolia',
|
21369
|
+
title: 'Linea Sepolia Testnet',
|
21370
|
+
chain: 'ETH',
|
21371
|
+
rpc: [
|
21372
|
+
'https://rpc.sepolia.linea.build',
|
21373
|
+
'wss://rpc.sepolia.linea.build',
|
21374
|
+
'https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}',
|
21375
|
+
'wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}'
|
21376
|
+
],
|
21377
|
+
faucets: [],
|
21378
|
+
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
21379
|
+
infoURL: 'https://linea.build',
|
21380
|
+
shortName: 'linea-sepolia',
|
21381
|
+
chainId: 59141,
|
21382
|
+
networkId: 59141,
|
21383
|
+
slip44: 1,
|
21384
|
+
icon: 'linea',
|
21385
|
+
parent: {
|
21386
|
+
type: 'L2',
|
21387
|
+
chain: 'eip155-5',
|
21388
|
+
bridges: [ { url: 'https://bridge.linea.build/' } ]
|
21389
|
+
},
|
21390
|
+
explorers: [
|
21391
|
+
{
|
21392
|
+
name: 'Etherscan',
|
21393
|
+
url: 'https://sepolia.lineascan.build',
|
21394
|
+
standard: 'EIP3091',
|
21395
|
+
icon: 'linea'
|
21396
|
+
},
|
21397
|
+
{
|
21398
|
+
name: 'Blockscout',
|
21399
|
+
url: 'https://explorer.sepolia.linea.build',
|
21400
|
+
standard: 'EIP3091',
|
21401
|
+
icon: 'linea'
|
21402
|
+
}
|
21403
|
+
],
|
21404
|
+
status: 'active'
|
21405
|
+
},
|
21096
21406
|
{
|
21097
21407
|
name: 'Linea',
|
21098
21408
|
title: 'Linea Mainnet',
|
@@ -22088,7 +22398,11 @@ const chainArray = [
|
|
22088
22398
|
title: 'Polygon Amoy Testnet',
|
22089
22399
|
chain: 'Polygon',
|
22090
22400
|
icon: 'polygon',
|
22091
|
-
rpc: [
|
22401
|
+
rpc: [
|
22402
|
+
'https://https://rpc-amoy.polygon.technology',
|
22403
|
+
'https://polygon-amoy-bor-rpc.publicnode.com',
|
22404
|
+
'wss://polygon-amoy-bor-rpc.publicnode.com'
|
22405
|
+
],
|
22092
22406
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
22093
22407
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
22094
22408
|
infoURL: 'https://polygon.technology/',
|
@@ -22566,6 +22880,18 @@ const chainArray = [
|
|
22566
22880
|
}
|
22567
22881
|
]
|
22568
22882
|
},
|
22883
|
+
{
|
22884
|
+
name: 'F(x)Core Testnet Network',
|
22885
|
+
chain: 'Fxcore',
|
22886
|
+
rpc: [ 'https://testnet-fx-json-web3.functionx.io:8545' ],
|
22887
|
+
faucets: [],
|
22888
|
+
nativeCurrency: { name: 'Function X', symbol: 'FX', decimals: 18 },
|
22889
|
+
infoURL: 'https://functionx.io/',
|
22890
|
+
shortName: 'dhobyghaut',
|
22891
|
+
chainId: 90001,
|
22892
|
+
networkId: 90001,
|
22893
|
+
icon: 'fxcore'
|
22894
|
+
},
|
22569
22895
|
{
|
22570
22896
|
name: 'Beverly Hills',
|
22571
22897
|
title: 'Ethereum multi-client Verkle Testnet Beverly Hills',
|
@@ -23648,6 +23974,26 @@ const chainArray = [
|
|
23648
23974
|
}
|
23649
23975
|
]
|
23650
23976
|
},
|
23977
|
+
{
|
23978
|
+
name: 'Taiko Hekla L2',
|
23979
|
+
chain: 'ETH',
|
23980
|
+
status: 'active',
|
23981
|
+
icon: 'taiko',
|
23982
|
+
rpc: [ 'https://rpc.hekla.taiko.xyz', 'wss://ws.hekla.taiko.xyz' ],
|
23983
|
+
faucets: [],
|
23984
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
23985
|
+
infoURL: 'https://taiko.xyz',
|
23986
|
+
shortName: 'tko-hekla',
|
23987
|
+
chainId: 167009,
|
23988
|
+
networkId: 167009,
|
23989
|
+
explorers: [
|
23990
|
+
{
|
23991
|
+
name: 'blockscout',
|
23992
|
+
url: 'https://blockscoutapi.hekla.taiko.xyz',
|
23993
|
+
standard: 'EIP3091'
|
23994
|
+
}
|
23995
|
+
]
|
23996
|
+
},
|
23651
23997
|
{
|
23652
23998
|
name: 'Bitica Chain Mainnet',
|
23653
23999
|
chain: 'BDCC',
|
@@ -23754,7 +24100,7 @@ const chainArray = [
|
|
23754
24100
|
faucets: [ 'https://www.bitlayer.org/faucet' ],
|
23755
24101
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
23756
24102
|
infoURL: 'https://docs.bitlayer.org/',
|
23757
|
-
shortName: '
|
24103
|
+
shortName: 'btrt',
|
23758
24104
|
chainId: 200810,
|
23759
24105
|
networkId: 200810,
|
23760
24106
|
slip44: 1,
|
@@ -23767,6 +24113,32 @@ const chainArray = [
|
|
23767
24113
|
}
|
23768
24114
|
]
|
23769
24115
|
},
|
24116
|
+
{
|
24117
|
+
name: 'Bitlayer Mainnet',
|
24118
|
+
chain: 'Bitlayer',
|
24119
|
+
rpc: [
|
24120
|
+
'https://rpc.bitlayer.org',
|
24121
|
+
'https://rpc.bitlayer-rpc.com',
|
24122
|
+
'https://rpc.ankr.com/bitlayer',
|
24123
|
+
'wss://ws.bitlayer.org',
|
24124
|
+
'wss://ws.bitlayer-rpc.com'
|
24125
|
+
],
|
24126
|
+
faucets: [],
|
24127
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
24128
|
+
infoURL: 'https://docs.bitlayer.org/',
|
24129
|
+
shortName: 'btr',
|
24130
|
+
chainId: 200901,
|
24131
|
+
networkId: 200901,
|
24132
|
+
slip44: 1,
|
24133
|
+
icon: 'bitlayer',
|
24134
|
+
explorers: [
|
24135
|
+
{
|
24136
|
+
name: 'bitlayer mainnet scan',
|
24137
|
+
url: 'https://www.btrscan.com',
|
24138
|
+
standard: 'EIP3091'
|
24139
|
+
}
|
24140
|
+
]
|
24141
|
+
},
|
23770
24142
|
{
|
23771
24143
|
name: 'Alaya Mainnet',
|
23772
24144
|
chain: 'Alaya',
|
@@ -24043,6 +24415,25 @@ const chainArray = [
|
|
24043
24415
|
}
|
24044
24416
|
]
|
24045
24417
|
},
|
24418
|
+
{
|
24419
|
+
name: 'HydraDX',
|
24420
|
+
chain: 'HDX',
|
24421
|
+
rpc: [ 'https://rpc.hydradx.cloud', 'wss://rpc.hydradx.cloud' ],
|
24422
|
+
faucets: [],
|
24423
|
+
nativeCurrency: { name: 'Wrapped ETH', symbol: 'WETH', decimals: 18 },
|
24424
|
+
infoURL: 'https://hydradx.io',
|
24425
|
+
shortName: 'hdx',
|
24426
|
+
chainId: 222222,
|
24427
|
+
networkId: 222222,
|
24428
|
+
icon: 'hydradx',
|
24429
|
+
explorers: [
|
24430
|
+
{
|
24431
|
+
name: 'blockscout',
|
24432
|
+
url: 'https://explorer.evm.hydration.cloud',
|
24433
|
+
standard: 'EIP3091'
|
24434
|
+
}
|
24435
|
+
]
|
24436
|
+
},
|
24046
24437
|
{
|
24047
24438
|
name: 'DeepL Mainnet',
|
24048
24439
|
chain: 'DEEPL',
|
@@ -25263,6 +25654,25 @@ const chainArray = [
|
|
25263
25654
|
}
|
25264
25655
|
]
|
25265
25656
|
},
|
25657
|
+
{
|
25658
|
+
name: 'Won Network',
|
25659
|
+
chainId: 686868,
|
25660
|
+
shortName: 'WonChain',
|
25661
|
+
chain: 'WON',
|
25662
|
+
icon: 'won',
|
25663
|
+
networkId: 686868,
|
25664
|
+
nativeCurrency: { name: 'Won', symbol: 'WON', decimals: 18 },
|
25665
|
+
rpc: [ 'https://rpc.wonnetwork.org' ],
|
25666
|
+
faucets: [ 'https://faucet.wondollars.org' ],
|
25667
|
+
explorers: [
|
25668
|
+
{
|
25669
|
+
name: 'Won Explorer',
|
25670
|
+
url: 'https://scan.wonnetwork.org',
|
25671
|
+
standard: 'EIP3091'
|
25672
|
+
}
|
25673
|
+
],
|
25674
|
+
infoURL: 'https://wonnetwork.org'
|
25675
|
+
},
|
25266
25676
|
{
|
25267
25677
|
name: 'Galadriel Devnet',
|
25268
25678
|
chain: 'Galadriel',
|
@@ -25432,6 +25842,27 @@ const chainArray = [
|
|
25432
25842
|
}
|
25433
25843
|
]
|
25434
25844
|
},
|
25845
|
+
{
|
25846
|
+
name: 'BIZ Smart Chain Testnet',
|
25847
|
+
chain: 'BIZT Testnet',
|
25848
|
+
rpc: [ 'https://rpc-testnet.bizex.io/' ],
|
25849
|
+
faucets: [],
|
25850
|
+
nativeCurrency: { name: 'tBIZT', symbol: 'tBIZT', decimals: 18 },
|
25851
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
25852
|
+
infoURL: 'https://www.biztoken.io/',
|
25853
|
+
shortName: 'bizt-testnet',
|
25854
|
+
chainId: 808080,
|
25855
|
+
networkId: 808080,
|
25856
|
+
slip44: 1,
|
25857
|
+
icon: 'biz',
|
25858
|
+
explorers: [
|
25859
|
+
{
|
25860
|
+
name: 'BIZ Smart Chain Testnet Explorer',
|
25861
|
+
url: 'https://testnet.btscan.io',
|
25862
|
+
standard: 'EIP3091'
|
25863
|
+
}
|
25864
|
+
]
|
25865
|
+
},
|
25435
25866
|
{
|
25436
25867
|
name: 'zkLink Nova Mainnet',
|
25437
25868
|
chain: 'ETH',
|
@@ -27945,6 +28376,24 @@ const chainArray = [
|
|
27945
28376
|
}
|
27946
28377
|
]
|
27947
28378
|
},
|
28379
|
+
{
|
28380
|
+
name: 'RARI Chain Mainnet',
|
28381
|
+
chain: 'RARI',
|
28382
|
+
rpc: [ 'https://rari.calderachain.xyz/http' ],
|
28383
|
+
faucets: [],
|
28384
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
28385
|
+
infoURL: 'https://rarichain.org/',
|
28386
|
+
shortName: 'rari-mainnet',
|
28387
|
+
chainId: 1380012617,
|
28388
|
+
networkId: 1380012617,
|
28389
|
+
explorers: [
|
28390
|
+
{
|
28391
|
+
name: 'rarichain-explorer',
|
28392
|
+
url: 'https://mainnet.explorer.rarichain.org',
|
28393
|
+
standard: 'EIP3091'
|
28394
|
+
}
|
28395
|
+
]
|
28396
|
+
},
|
27948
28397
|
{
|
27949
28398
|
name: 'RaptorChain',
|
27950
28399
|
chain: 'RPTR',
|
@@ -28204,6 +28653,24 @@ const chainArray = [
|
|
28204
28653
|
networkId: 1666900001,
|
28205
28654
|
explorers: []
|
28206
28655
|
},
|
28656
|
+
{
|
28657
|
+
name: 'RARI Chain Testnet',
|
28658
|
+
chain: 'RARI',
|
28659
|
+
rpc: [ 'https://testnet.rpc.rarichain.org/http' ],
|
28660
|
+
faucets: [],
|
28661
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
28662
|
+
infoURL: 'https://rarichain.org/',
|
28663
|
+
shortName: 'rari-testnet',
|
28664
|
+
chainId: 1918988905,
|
28665
|
+
networkId: 1918988905,
|
28666
|
+
explorers: [
|
28667
|
+
{
|
28668
|
+
name: 'rarichain-testnet-explorer',
|
28669
|
+
url: 'https://explorer.rarichain.org',
|
28670
|
+
standard: 'EIP3091'
|
28671
|
+
}
|
28672
|
+
]
|
28673
|
+
},
|
28207
28674
|
{
|
28208
28675
|
name: 'DataHopper',
|
28209
28676
|
chain: 'HOP',
|