@revoke.cash/chains 1.1.0 → 3.0.0
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/dist/src/chains.js +562 -48
- package/dist/src/enums.d.ts +54 -6
- package/dist/src/enums.js +54 -6
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -105,7 +105,8 @@ exports.chains = {
|
|
|
105
105
|
rpc: [
|
|
106
106
|
'https://goerli.infura.io/v3/${INFURA_API_KEY}',
|
|
107
107
|
'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
|
|
108
|
-
'https://rpc.goerli.mudit.blog/'
|
|
108
|
+
'https://rpc.goerli.mudit.blog/',
|
|
109
|
+
'https://ethereum-goerli.publicnode.com'
|
|
109
110
|
],
|
|
110
111
|
faucets: [
|
|
111
112
|
'http://fauceth.komputing.org?chain=5&address=${ADDRESS}',
|
|
@@ -470,17 +471,17 @@ exports.chains = {
|
|
|
470
471
|
27: {
|
|
471
472
|
name: 'ShibaChain',
|
|
472
473
|
chain: 'SHIB',
|
|
473
|
-
rpc: ['https://rpc.
|
|
474
|
+
rpc: ['https://rpc.shibchain.org'],
|
|
474
475
|
faucets: [],
|
|
475
476
|
nativeCurrency: { name: 'SHIBA INU COIN', symbol: 'SHIB', decimals: 18 },
|
|
476
|
-
infoURL: 'https://
|
|
477
|
+
infoURL: 'https://shibchain.org',
|
|
477
478
|
shortName: 'shib',
|
|
478
479
|
chainId: 27,
|
|
479
480
|
networkId: 27,
|
|
480
481
|
explorers: [
|
|
481
482
|
{
|
|
482
483
|
name: 'Shiba Explorer',
|
|
483
|
-
url: 'https://exp.
|
|
484
|
+
url: 'https://exp.shibchain.org',
|
|
484
485
|
standard: 'none'
|
|
485
486
|
}
|
|
486
487
|
]
|
|
@@ -709,7 +710,14 @@ exports.chains = {
|
|
|
709
710
|
infoURL: 'https://telos.net',
|
|
710
711
|
shortName: 'TelosEVMTestnet',
|
|
711
712
|
chainId: 41,
|
|
712
|
-
networkId: 41
|
|
713
|
+
networkId: 41,
|
|
714
|
+
explorers: [
|
|
715
|
+
{
|
|
716
|
+
name: 'teloscan',
|
|
717
|
+
url: 'https://testnet.teloscan.io',
|
|
718
|
+
standard: 'EIP3091'
|
|
719
|
+
}
|
|
720
|
+
]
|
|
713
721
|
},
|
|
714
722
|
42: {
|
|
715
723
|
name: 'Kovan',
|
|
@@ -1747,6 +1755,27 @@ exports.chains = {
|
|
|
1747
1755
|
],
|
|
1748
1756
|
parent: { chain: 'eip155-90', type: 'shard' }
|
|
1749
1757
|
},
|
|
1758
|
+
94: {
|
|
1759
|
+
name: 'SwissDLT',
|
|
1760
|
+
chain: 'SDLT',
|
|
1761
|
+
rpc: ['https://rpc.swissdlt.ch'],
|
|
1762
|
+
faucets: [],
|
|
1763
|
+
nativeCurrency: { name: 'BCTS', symbol: 'BCTS', decimals: 18 },
|
|
1764
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
1765
|
+
infoURL: 'https://bcts.ch',
|
|
1766
|
+
shortName: 'sdlt',
|
|
1767
|
+
chainId: 94,
|
|
1768
|
+
networkId: 94,
|
|
1769
|
+
icon: 'bcts',
|
|
1770
|
+
explorers: [
|
|
1771
|
+
{
|
|
1772
|
+
name: 'SwissDLT Explorer',
|
|
1773
|
+
url: 'https://explorer.swissdlt.ch',
|
|
1774
|
+
icon: 'bcts',
|
|
1775
|
+
standard: 'EIP3091'
|
|
1776
|
+
}
|
|
1777
|
+
]
|
|
1778
|
+
},
|
|
1750
1779
|
95: {
|
|
1751
1780
|
name: 'CryptoKylin Testnet',
|
|
1752
1781
|
chain: 'EOS',
|
|
@@ -1790,7 +1819,8 @@ exports.chains = {
|
|
|
1790
1819
|
'https://data-seed-prebsc-1-s2.binance.org:8545',
|
|
1791
1820
|
'https://data-seed-prebsc-2-s2.binance.org:8545',
|
|
1792
1821
|
'https://data-seed-prebsc-1-s3.binance.org:8545',
|
|
1793
|
-
'https://data-seed-prebsc-2-s3.binance.org:8545'
|
|
1822
|
+
'https://data-seed-prebsc-2-s3.binance.org:8545',
|
|
1823
|
+
'https://bsc-testnet.publicnode.com'
|
|
1794
1824
|
],
|
|
1795
1825
|
faucets: ['https://testnet.binance.org/faucet-smart'],
|
|
1796
1826
|
nativeCurrency: {
|
|
@@ -2943,6 +2973,17 @@ exports.chains = {
|
|
|
2943
2973
|
}
|
|
2944
2974
|
]
|
|
2945
2975
|
},
|
|
2976
|
+
208: {
|
|
2977
|
+
name: 'Structx Mainnet',
|
|
2978
|
+
chain: 'utx',
|
|
2979
|
+
rpc: ['https://mainnet.structx.io'],
|
|
2980
|
+
faucets: [],
|
|
2981
|
+
nativeCurrency: { name: 'Notes', symbol: 'utx', decimals: 18 },
|
|
2982
|
+
infoURL: 'https://structx.io',
|
|
2983
|
+
shortName: 'utx',
|
|
2984
|
+
chainId: 208,
|
|
2985
|
+
networkId: 208
|
|
2986
|
+
},
|
|
2946
2987
|
211: {
|
|
2947
2988
|
name: 'Freight Trust Network',
|
|
2948
2989
|
chain: 'EDI',
|
|
@@ -3261,6 +3302,29 @@ exports.chains = {
|
|
|
3261
3302
|
{ name: 'hscan', url: 'https://hscan.org', standard: 'EIP3091' }
|
|
3262
3303
|
]
|
|
3263
3304
|
},
|
|
3305
|
+
274: {
|
|
3306
|
+
name: 'LaChain',
|
|
3307
|
+
chain: 'LaChain',
|
|
3308
|
+
icon: 'LaChain',
|
|
3309
|
+
rpc: [
|
|
3310
|
+
'https://rpc1.mainnet.lachain.network',
|
|
3311
|
+
'https://rpc2.mainnet.lachain.network'
|
|
3312
|
+
],
|
|
3313
|
+
faucets: [],
|
|
3314
|
+
nativeCurrency: { name: 'LaCoin', symbol: 'LAC', decimals: 18 },
|
|
3315
|
+
features: [{ name: 'EIP155' }],
|
|
3316
|
+
infoURL: '',
|
|
3317
|
+
shortName: 'lachain',
|
|
3318
|
+
chainId: 274,
|
|
3319
|
+
networkId: 274,
|
|
3320
|
+
explorers: [
|
|
3321
|
+
{
|
|
3322
|
+
name: 'LaChain Explorer',
|
|
3323
|
+
url: 'https://explorer.lachain.network',
|
|
3324
|
+
standard: 'EIP3091'
|
|
3325
|
+
}
|
|
3326
|
+
]
|
|
3327
|
+
},
|
|
3264
3328
|
280: {
|
|
3265
3329
|
name: 'zkSync Era Testnet',
|
|
3266
3330
|
chain: 'ETH',
|
|
@@ -3473,6 +3537,27 @@ exports.chains = {
|
|
|
3473
3537
|
}
|
|
3474
3538
|
]
|
|
3475
3539
|
},
|
|
3540
|
+
303: {
|
|
3541
|
+
name: 'Neurochain Testnet',
|
|
3542
|
+
chain: 'NCN',
|
|
3543
|
+
rpc: ['https://nc-rpc-test1.neurochain.io'],
|
|
3544
|
+
faucets: [],
|
|
3545
|
+
nativeCurrency: { name: 'Neurochain', symbol: 'tNCN', decimals: 18 },
|
|
3546
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3547
|
+
infoURL: 'https://www.neurochain.ai',
|
|
3548
|
+
shortName: 'ncnt',
|
|
3549
|
+
chainId: 303,
|
|
3550
|
+
networkId: 303,
|
|
3551
|
+
icon: 'neurochain',
|
|
3552
|
+
explorers: [
|
|
3553
|
+
{
|
|
3554
|
+
name: 'neuroscan',
|
|
3555
|
+
url: 'https://testnet.ncnscan.com',
|
|
3556
|
+
icon: 'neurochain',
|
|
3557
|
+
standard: 'EIP3091'
|
|
3558
|
+
}
|
|
3559
|
+
]
|
|
3560
|
+
},
|
|
3476
3561
|
311: {
|
|
3477
3562
|
name: 'Omax Mainnet',
|
|
3478
3563
|
chain: 'OMAX Chain',
|
|
@@ -3493,6 +3578,30 @@ exports.chains = {
|
|
|
3493
3578
|
}
|
|
3494
3579
|
]
|
|
3495
3580
|
},
|
|
3581
|
+
313: {
|
|
3582
|
+
name: 'Neurochain Mainnet',
|
|
3583
|
+
chain: 'NCN',
|
|
3584
|
+
rpc: [
|
|
3585
|
+
'https://nc-rpc-prd1.neurochain.io',
|
|
3586
|
+
'https://nc-rpc-prd2.neurochain.io'
|
|
3587
|
+
],
|
|
3588
|
+
faucets: [],
|
|
3589
|
+
nativeCurrency: { name: 'Neurochain', symbol: 'NCN', decimals: 18 },
|
|
3590
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3591
|
+
infoURL: 'https://www.neurochain.ai',
|
|
3592
|
+
shortName: 'ncn',
|
|
3593
|
+
chainId: 313,
|
|
3594
|
+
networkId: 313,
|
|
3595
|
+
icon: 'neurochain',
|
|
3596
|
+
explorers: [
|
|
3597
|
+
{
|
|
3598
|
+
name: 'neuroscan',
|
|
3599
|
+
url: 'https://ncnscan.com',
|
|
3600
|
+
icon: 'neurochain',
|
|
3601
|
+
standard: 'EIP3091'
|
|
3602
|
+
}
|
|
3603
|
+
]
|
|
3604
|
+
},
|
|
3496
3605
|
314: {
|
|
3497
3606
|
name: 'Filecoin - Mainnet',
|
|
3498
3607
|
chain: 'FIL',
|
|
@@ -3759,17 +3868,17 @@ exports.chains = {
|
|
|
3759
3868
|
]
|
|
3760
3869
|
},
|
|
3761
3870
|
369: {
|
|
3762
|
-
name: 'PulseChain
|
|
3871
|
+
name: 'PulseChain',
|
|
3763
3872
|
shortName: 'pls',
|
|
3764
3873
|
chain: 'PLS',
|
|
3765
3874
|
chainId: 369,
|
|
3766
3875
|
networkId: 369,
|
|
3767
3876
|
infoURL: 'https://pulsechain.com/',
|
|
3768
|
-
rpc: [
|
|
3769
|
-
|
|
3770
|
-
'wss://rpc.mainnet.pulsechain.com/'
|
|
3771
|
-
],
|
|
3877
|
+
rpc: ['https://rpc.pulsechain.com/', 'wss://rpc.pulsechain.com/'],
|
|
3878
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3772
3879
|
faucets: [],
|
|
3880
|
+
ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
|
|
3881
|
+
status: 'incubating',
|
|
3773
3882
|
nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 }
|
|
3774
3883
|
},
|
|
3775
3884
|
371: {
|
|
@@ -3842,11 +3951,12 @@ exports.chains = {
|
|
|
3842
3951
|
]
|
|
3843
3952
|
},
|
|
3844
3953
|
418: {
|
|
3845
|
-
name: '
|
|
3846
|
-
chain: '
|
|
3954
|
+
name: 'LaTestnet',
|
|
3955
|
+
chain: 'LaTestnet',
|
|
3956
|
+
icon: 'LaChain',
|
|
3847
3957
|
rpc: ['https://rpc.testnet.lachain.network'],
|
|
3848
3958
|
faucets: ['https://faucet.lachain.network'],
|
|
3849
|
-
nativeCurrency: { name: 'Test
|
|
3959
|
+
nativeCurrency: { name: 'Test LaCoin', symbol: 'TLA', decimals: 18 },
|
|
3850
3960
|
features: [{ name: 'EIP155' }],
|
|
3851
3961
|
infoURL: '',
|
|
3852
3962
|
shortName: 'latestnet',
|
|
@@ -3854,7 +3964,7 @@ exports.chains = {
|
|
|
3854
3964
|
networkId: 418,
|
|
3855
3965
|
explorers: [
|
|
3856
3966
|
{
|
|
3857
|
-
name: '
|
|
3967
|
+
name: 'LaTestnet Explorer',
|
|
3858
3968
|
url: 'https://testexplorer.lachain.network',
|
|
3859
3969
|
standard: 'EIP3091'
|
|
3860
3970
|
}
|
|
@@ -3909,6 +4019,25 @@ exports.chains = {
|
|
|
3909
4019
|
}
|
|
3910
4020
|
]
|
|
3911
4021
|
},
|
|
4022
|
+
456: {
|
|
4023
|
+
name: 'ARZIO Chain',
|
|
4024
|
+
chain: 'ARZIO',
|
|
4025
|
+
icon: 'arzio',
|
|
4026
|
+
rpc: ['https://chain-rpc.arzio.co'],
|
|
4027
|
+
faucets: [],
|
|
4028
|
+
nativeCurrency: { name: 'ARZIO', symbol: 'AZO', decimals: 18 },
|
|
4029
|
+
infoURL: 'https://chain.arzio.co',
|
|
4030
|
+
shortName: 'arzio',
|
|
4031
|
+
chainId: 456,
|
|
4032
|
+
networkId: 456,
|
|
4033
|
+
explorers: [
|
|
4034
|
+
{
|
|
4035
|
+
name: 'ARZIO Scan',
|
|
4036
|
+
url: 'https://scan.arzio.co',
|
|
4037
|
+
standard: 'EIP3091'
|
|
4038
|
+
}
|
|
4039
|
+
]
|
|
4040
|
+
},
|
|
3912
4041
|
499: {
|
|
3913
4042
|
name: 'Rupaya',
|
|
3914
4043
|
chain: 'RUPX',
|
|
@@ -3924,7 +4053,7 @@ exports.chains = {
|
|
|
3924
4053
|
500: {
|
|
3925
4054
|
name: 'Camino C-Chain',
|
|
3926
4055
|
chain: 'CAM',
|
|
3927
|
-
rpc: [],
|
|
4056
|
+
rpc: ['https://api.camino.network/ext/bc/C/rpc'],
|
|
3928
4057
|
faucets: [],
|
|
3929
4058
|
nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 },
|
|
3930
4059
|
infoURL: 'https://camino.network/',
|
|
@@ -3935,7 +4064,7 @@ exports.chains = {
|
|
|
3935
4064
|
explorers: [
|
|
3936
4065
|
{
|
|
3937
4066
|
name: 'blockexplorer',
|
|
3938
|
-
url: 'https://
|
|
4067
|
+
url: 'https://suite.camino.network/explorer',
|
|
3939
4068
|
standard: 'none'
|
|
3940
4069
|
}
|
|
3941
4070
|
]
|
|
@@ -3954,7 +4083,7 @@ exports.chains = {
|
|
|
3954
4083
|
explorers: [
|
|
3955
4084
|
{
|
|
3956
4085
|
name: 'blockexplorer',
|
|
3957
|
-
url: 'https://
|
|
4086
|
+
url: 'https://suite.camino.network/explorer',
|
|
3958
4087
|
standard: 'none'
|
|
3959
4088
|
}
|
|
3960
4089
|
]
|
|
@@ -5924,6 +6053,44 @@ exports.chains = {
|
|
|
5924
6053
|
bridges: [{ url: 'https://bridge.step.network' }]
|
|
5925
6054
|
}
|
|
5926
6055
|
},
|
|
6056
|
+
1243: {
|
|
6057
|
+
name: 'ARC Mainnet',
|
|
6058
|
+
chain: 'ARC',
|
|
6059
|
+
icon: 'arc',
|
|
6060
|
+
rpc: ['https://rpc-main-1.archiechain.io'],
|
|
6061
|
+
faucets: [],
|
|
6062
|
+
nativeCurrency: { name: 'ARC', symbol: 'ARC', decimals: 18 },
|
|
6063
|
+
infoURL: 'https://archiechain.io/',
|
|
6064
|
+
shortName: 'ARC',
|
|
6065
|
+
chainId: 1243,
|
|
6066
|
+
networkId: 1243,
|
|
6067
|
+
explorers: [
|
|
6068
|
+
{
|
|
6069
|
+
name: 'archiescan',
|
|
6070
|
+
url: 'https://app.archiescan.io',
|
|
6071
|
+
standard: 'none'
|
|
6072
|
+
}
|
|
6073
|
+
]
|
|
6074
|
+
},
|
|
6075
|
+
1244: {
|
|
6076
|
+
name: 'ARC Testnet',
|
|
6077
|
+
chain: 'ARC',
|
|
6078
|
+
icon: 'arc',
|
|
6079
|
+
rpc: ['https://rpc-test-1.archiechain.io'],
|
|
6080
|
+
faucets: ['https://faucet.archiechain.io'],
|
|
6081
|
+
nativeCurrency: { name: 'ARC', symbol: 'ARC', decimals: 18 },
|
|
6082
|
+
infoURL: 'https://archiechain.io/',
|
|
6083
|
+
shortName: 'TARC',
|
|
6084
|
+
chainId: 1244,
|
|
6085
|
+
networkId: 1244,
|
|
6086
|
+
explorers: [
|
|
6087
|
+
{
|
|
6088
|
+
name: 'archiescan',
|
|
6089
|
+
url: 'https://testnet.archiescan.io',
|
|
6090
|
+
standard: 'none'
|
|
6091
|
+
}
|
|
6092
|
+
]
|
|
6093
|
+
},
|
|
5927
6094
|
1246: {
|
|
5928
6095
|
name: 'OM Platform Mainnet',
|
|
5929
6096
|
chain: 'omplatform',
|
|
@@ -6311,6 +6478,25 @@ exports.chains = {
|
|
|
6311
6478
|
}
|
|
6312
6479
|
]
|
|
6313
6480
|
},
|
|
6481
|
+
1392: {
|
|
6482
|
+
name: 'Joseon Mainnet',
|
|
6483
|
+
chain: 'Joseon',
|
|
6484
|
+
icon: 'joseon',
|
|
6485
|
+
rpc: ['https://rpc.modchain.net/blockchain.joseon.com/rpc'],
|
|
6486
|
+
faucets: [],
|
|
6487
|
+
nativeCurrency: { name: 'Joseon Mun', symbol: 'JSM', decimals: 18 },
|
|
6488
|
+
infoURL: 'https://www.joseon.com/',
|
|
6489
|
+
shortName: 'mun',
|
|
6490
|
+
chainId: 1392,
|
|
6491
|
+
networkId: 1392,
|
|
6492
|
+
explorers: [
|
|
6493
|
+
{
|
|
6494
|
+
name: 'BlockExplorer',
|
|
6495
|
+
url: 'https://www.blockexplorer.com',
|
|
6496
|
+
standard: 'EIP3091'
|
|
6497
|
+
}
|
|
6498
|
+
]
|
|
6499
|
+
},
|
|
6314
6500
|
1402: {
|
|
6315
6501
|
name: 'Polygon zkEVM Testnet old',
|
|
6316
6502
|
title: 'Polygon zkEVM Testnet',
|
|
@@ -6390,6 +6576,25 @@ exports.chains = {
|
|
|
6390
6576
|
}
|
|
6391
6577
|
]
|
|
6392
6578
|
},
|
|
6579
|
+
1452: {
|
|
6580
|
+
name: 'GIL Testnet',
|
|
6581
|
+
chain: 'GIL',
|
|
6582
|
+
icon: 'gauss',
|
|
6583
|
+
rpc: ['https://rpc.giltestnet.com'],
|
|
6584
|
+
faucets: [],
|
|
6585
|
+
nativeCurrency: { name: 'GANG', symbol: 'GANG', decimals: 18 },
|
|
6586
|
+
infoURL: 'https://gaussgang.com/',
|
|
6587
|
+
shortName: 'gil',
|
|
6588
|
+
chainId: 1452,
|
|
6589
|
+
networkId: 1452,
|
|
6590
|
+
explorers: [
|
|
6591
|
+
{
|
|
6592
|
+
name: 'GIL Explorer',
|
|
6593
|
+
url: 'https://explorer.giltestnet.com',
|
|
6594
|
+
standard: 'EIP3091'
|
|
6595
|
+
}
|
|
6596
|
+
]
|
|
6597
|
+
},
|
|
6393
6598
|
1455: {
|
|
6394
6599
|
name: 'Ctex Scan Blockchain',
|
|
6395
6600
|
chain: 'Ctex Scan Blockchain',
|
|
@@ -6660,9 +6865,28 @@ exports.chains = {
|
|
|
6660
6865
|
}
|
|
6661
6866
|
]
|
|
6662
6867
|
},
|
|
6868
|
+
1777: {
|
|
6869
|
+
name: 'Gauss Mainnet',
|
|
6870
|
+
chain: 'Gauss',
|
|
6871
|
+
icon: 'gauss',
|
|
6872
|
+
rpc: ['https://rpc.gaussgang.com'],
|
|
6873
|
+
faucets: [],
|
|
6874
|
+
nativeCurrency: { name: 'GANG', symbol: 'GANG', decimals: 18 },
|
|
6875
|
+
infoURL: 'https://gaussgang.com/',
|
|
6876
|
+
shortName: 'gauss',
|
|
6877
|
+
chainId: 1777,
|
|
6878
|
+
networkId: 1777,
|
|
6879
|
+
explorers: [
|
|
6880
|
+
{
|
|
6881
|
+
name: 'Gauss Explorer',
|
|
6882
|
+
url: 'https://explorer.gaussgang.com',
|
|
6883
|
+
standard: 'EIP3091'
|
|
6884
|
+
}
|
|
6885
|
+
]
|
|
6886
|
+
},
|
|
6663
6887
|
1804: {
|
|
6664
6888
|
name: 'Kerleano',
|
|
6665
|
-
title: 'Proof of
|
|
6889
|
+
title: 'Proof of Climate awaReness testnet',
|
|
6666
6890
|
chain: 'CRC',
|
|
6667
6891
|
status: 'active',
|
|
6668
6892
|
rpc: [
|
|
@@ -6673,7 +6897,7 @@ exports.chains = {
|
|
|
6673
6897
|
'https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md'
|
|
6674
6898
|
],
|
|
6675
6899
|
nativeCurrency: {
|
|
6676
|
-
name: '
|
|
6900
|
+
name: 'Climate awaReness Coin',
|
|
6677
6901
|
symbol: 'CRC',
|
|
6678
6902
|
decimals: 18
|
|
6679
6903
|
},
|
|
@@ -6681,10 +6905,12 @@ exports.chains = {
|
|
|
6681
6905
|
shortName: 'kerleano',
|
|
6682
6906
|
chainId: 1804,
|
|
6683
6907
|
networkId: 1804,
|
|
6908
|
+
icon: 'pocr',
|
|
6684
6909
|
explorers: [
|
|
6685
6910
|
{
|
|
6686
6911
|
name: 'Lite Explorer',
|
|
6687
6912
|
url: 'https://ethereum-pocr.github.io/explorer/kerleano',
|
|
6913
|
+
icon: 'pocr',
|
|
6688
6914
|
standard: 'EIP3091'
|
|
6689
6915
|
}
|
|
6690
6916
|
]
|
|
@@ -7151,8 +7377,8 @@ exports.chains = {
|
|
|
7151
7377
|
icon: 'dogechain',
|
|
7152
7378
|
rpc: [
|
|
7153
7379
|
'https://rpc.dogechain.dog',
|
|
7154
|
-
'https://
|
|
7155
|
-
'https://
|
|
7380
|
+
'https://rpc01-sg.dogechain.dog',
|
|
7381
|
+
'https://rpc.ankr.com/dogechain'
|
|
7156
7382
|
],
|
|
7157
7383
|
faucets: [],
|
|
7158
7384
|
nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 },
|
|
@@ -7593,7 +7819,7 @@ exports.chains = {
|
|
|
7593
7819
|
]
|
|
7594
7820
|
},
|
|
7595
7821
|
2124: {
|
|
7596
|
-
name: 'Metaplayerone
|
|
7822
|
+
name: 'Metaplayerone Dubai Testnet',
|
|
7597
7823
|
chain: 'MP1 Dubai-Testnet',
|
|
7598
7824
|
icon: 'meu',
|
|
7599
7825
|
rpc: ['https://rpc-dubai.mp1network.com/'],
|
|
@@ -7846,6 +8072,26 @@ exports.chains = {
|
|
|
7846
8072
|
explorers: [],
|
|
7847
8073
|
status: 'incubating'
|
|
7848
8074
|
},
|
|
8075
|
+
2323: {
|
|
8076
|
+
name: 'SOMA Network Testnet',
|
|
8077
|
+
chain: 'SOMA',
|
|
8078
|
+
rpc: ['https://data-testnet-v1.somanetwork.io/'],
|
|
8079
|
+
faucets: ['https://faucet.somanetwork.io'],
|
|
8080
|
+
nativeCurrency: { name: 'SMA', symbol: 'tSMA', decimals: 18 },
|
|
8081
|
+
infoURL: 'https://somanetwork.io',
|
|
8082
|
+
shortName: 'sma',
|
|
8083
|
+
chainId: 2323,
|
|
8084
|
+
networkId: 2323,
|
|
8085
|
+
icon: 'soma',
|
|
8086
|
+
explorers: [
|
|
8087
|
+
{
|
|
8088
|
+
name: 'SOMA Testnet Explorer',
|
|
8089
|
+
icon: 'soma',
|
|
8090
|
+
url: 'https://testnet.somascan.io',
|
|
8091
|
+
standard: 'none'
|
|
8092
|
+
}
|
|
8093
|
+
]
|
|
8094
|
+
},
|
|
7849
8095
|
2330: {
|
|
7850
8096
|
name: 'Altcoinchain',
|
|
7851
8097
|
chain: 'mainnet',
|
|
@@ -7867,6 +8113,27 @@ exports.chains = {
|
|
|
7867
8113
|
}
|
|
7868
8114
|
]
|
|
7869
8115
|
},
|
|
8116
|
+
2332: {
|
|
8117
|
+
name: 'SOMA Network Mainnet',
|
|
8118
|
+
chain: 'SOMA',
|
|
8119
|
+
rpc: ['https://data-mainnet-v1.somanetwork.io/'],
|
|
8120
|
+
faucets: ['https://airdrop.somanetwork.io'],
|
|
8121
|
+
nativeCurrency: { name: 'Soma Native Token', symbol: 'SMA', decimals: 18 },
|
|
8122
|
+
infoURL: 'https://somanetwork.io',
|
|
8123
|
+
shortName: 'smam',
|
|
8124
|
+
chainId: 2332,
|
|
8125
|
+
networkId: 2332,
|
|
8126
|
+
icon: 'soma',
|
|
8127
|
+
status: 'incubating',
|
|
8128
|
+
explorers: [
|
|
8129
|
+
{
|
|
8130
|
+
name: 'SOMA Explorer Mainnet',
|
|
8131
|
+
icon: 'soma',
|
|
8132
|
+
url: 'https://somascan.io',
|
|
8133
|
+
standard: 'none'
|
|
8134
|
+
}
|
|
8135
|
+
]
|
|
8136
|
+
},
|
|
7870
8137
|
2357: {
|
|
7871
8138
|
name: 'Kroma Sepolia',
|
|
7872
8139
|
title: 'Kroma Testnet Sepolia',
|
|
@@ -7990,7 +8257,7 @@ exports.chains = {
|
|
|
7990
8257
|
},
|
|
7991
8258
|
2606: {
|
|
7992
8259
|
name: 'PoCRNet',
|
|
7993
|
-
title: 'Proof of
|
|
8260
|
+
title: 'Proof of Climate awaReness mainnet',
|
|
7994
8261
|
chain: 'CRC',
|
|
7995
8262
|
status: 'active',
|
|
7996
8263
|
rpc: [
|
|
@@ -7999,7 +8266,7 @@ exports.chains = {
|
|
|
7999
8266
|
],
|
|
8000
8267
|
faucets: [],
|
|
8001
8268
|
nativeCurrency: {
|
|
8002
|
-
name: '
|
|
8269
|
+
name: 'Climate awaReness Coin',
|
|
8003
8270
|
symbol: 'CRC',
|
|
8004
8271
|
decimals: 18
|
|
8005
8272
|
},
|
|
@@ -8007,10 +8274,12 @@ exports.chains = {
|
|
|
8007
8274
|
shortName: 'pocrnet',
|
|
8008
8275
|
chainId: 2606,
|
|
8009
8276
|
networkId: 2606,
|
|
8277
|
+
icon: 'pocr',
|
|
8010
8278
|
explorers: [
|
|
8011
8279
|
{
|
|
8012
8280
|
name: 'Lite Explorer',
|
|
8013
8281
|
url: 'https://ethereum-pocr.github.io/explorer/pocrnet',
|
|
8282
|
+
icon: 'pocr',
|
|
8014
8283
|
standard: 'EIP3091'
|
|
8015
8284
|
}
|
|
8016
8285
|
]
|
|
@@ -8578,7 +8847,10 @@ exports.chains = {
|
|
|
8578
8847
|
4002: {
|
|
8579
8848
|
name: 'Fantom Testnet',
|
|
8580
8849
|
chain: 'FTM',
|
|
8581
|
-
rpc: [
|
|
8850
|
+
rpc: [
|
|
8851
|
+
'https://rpc.testnet.fantom.network',
|
|
8852
|
+
'https://fantom-testnet.publicnode.com'
|
|
8853
|
+
],
|
|
8582
8854
|
faucets: ['https://faucet.fantom.network'],
|
|
8583
8855
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
|
8584
8856
|
infoURL: 'https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet',
|
|
@@ -8661,6 +8933,27 @@ exports.chains = {
|
|
|
8661
8933
|
bridges: [{ url: 'https://bridge.testnet.n3.nahmii.io' }]
|
|
8662
8934
|
}
|
|
8663
8935
|
},
|
|
8936
|
+
4090: {
|
|
8937
|
+
name: 'Fastex Chain (Bahamut) Oasis Testnet',
|
|
8938
|
+
title: 'Bahamut testnet Oasis',
|
|
8939
|
+
icon: 'bahamut',
|
|
8940
|
+
chain: 'Fastex Chain (Bahamut)',
|
|
8941
|
+
rpc: ['https://rpc1.oasis.bahamutchain.com'],
|
|
8942
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
8943
|
+
faucets: ['https://faucet.oasis.fastexchain.com'],
|
|
8944
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
|
8945
|
+
infoURL: 'https://fastexchain.com',
|
|
8946
|
+
shortName: 'Oasis',
|
|
8947
|
+
chainId: 4090,
|
|
8948
|
+
networkId: 4090,
|
|
8949
|
+
explorers: [
|
|
8950
|
+
{
|
|
8951
|
+
name: 'blockscout',
|
|
8952
|
+
url: 'https://oasis.ftnscan.com',
|
|
8953
|
+
standard: 'none'
|
|
8954
|
+
}
|
|
8955
|
+
]
|
|
8956
|
+
},
|
|
8664
8957
|
4096: {
|
|
8665
8958
|
name: 'Bitindi Testnet',
|
|
8666
8959
|
chain: 'BNI',
|
|
@@ -8986,6 +9279,30 @@ exports.chains = {
|
|
|
8986
9279
|
}
|
|
8987
9280
|
]
|
|
8988
9281
|
},
|
|
9282
|
+
5165: {
|
|
9283
|
+
name: 'Fastex Chain (Bahamut)',
|
|
9284
|
+
title: 'Bahamut mainnet Sahara',
|
|
9285
|
+
chain: 'Fastex Chain (Bahamut)',
|
|
9286
|
+
icon: 'bahamut',
|
|
9287
|
+
rpc: [
|
|
9288
|
+
'https://rpc1.sahara.bahamutchain.com',
|
|
9289
|
+
'https://rpc2.sahara.bahamutchain.com'
|
|
9290
|
+
],
|
|
9291
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
9292
|
+
faucets: [],
|
|
9293
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
|
9294
|
+
shortName: 'ftn',
|
|
9295
|
+
infoURL: 'https://fastexchain.com',
|
|
9296
|
+
chainId: 5165,
|
|
9297
|
+
networkId: 5165,
|
|
9298
|
+
explorers: [
|
|
9299
|
+
{
|
|
9300
|
+
name: 'blockscout',
|
|
9301
|
+
url: 'https://ftnscan.com',
|
|
9302
|
+
standard: 'none'
|
|
9303
|
+
}
|
|
9304
|
+
]
|
|
9305
|
+
},
|
|
8989
9306
|
5177: {
|
|
8990
9307
|
name: 'TLChain Network Mainnet',
|
|
8991
9308
|
chain: 'TLC',
|
|
@@ -9534,6 +9851,25 @@ exports.chains = {
|
|
|
9534
9851
|
}
|
|
9535
9852
|
]
|
|
9536
9853
|
},
|
|
9854
|
+
7484: {
|
|
9855
|
+
name: 'Raba Network Mainnet',
|
|
9856
|
+
chain: 'Raba',
|
|
9857
|
+
icon: 'raba',
|
|
9858
|
+
rpc: ['https://rpc.x.raba.app/', 'wss://rpc.x.raba.app/ws/'],
|
|
9859
|
+
faucets: [],
|
|
9860
|
+
nativeCurrency: { name: 'Raba', symbol: 'RABA', decimals: 18 },
|
|
9861
|
+
infoURL: 'https://x.raba.app/',
|
|
9862
|
+
shortName: 'raba',
|
|
9863
|
+
chainId: 7484,
|
|
9864
|
+
networkId: 7484,
|
|
9865
|
+
explorers: [
|
|
9866
|
+
{
|
|
9867
|
+
name: 'raba',
|
|
9868
|
+
url: 'https://x.raba.app/explorer',
|
|
9869
|
+
standard: 'none'
|
|
9870
|
+
}
|
|
9871
|
+
]
|
|
9872
|
+
},
|
|
9537
9873
|
7575: {
|
|
9538
9874
|
name: 'ADIL Testnet',
|
|
9539
9875
|
chain: 'ADIL',
|
|
@@ -9852,6 +10188,18 @@ exports.chains = {
|
|
|
9852
10188
|
],
|
|
9853
10189
|
redFlags: ['reusedChainId']
|
|
9854
10190
|
},
|
|
10191
|
+
8086: {
|
|
10192
|
+
name: 'BitEth',
|
|
10193
|
+
chain: 'BTE',
|
|
10194
|
+
rpc: ['https://rpc.biteth.org'],
|
|
10195
|
+
faucets: [],
|
|
10196
|
+
nativeCurrency: { name: 'BitEth', symbol: 'BTE', decimals: 18 },
|
|
10197
|
+
infoURL: 'https://biteth.org',
|
|
10198
|
+
shortName: 'BitEth',
|
|
10199
|
+
chainId: 8086,
|
|
10200
|
+
networkId: 8086,
|
|
10201
|
+
explorers: []
|
|
10202
|
+
},
|
|
9855
10203
|
8098: {
|
|
9856
10204
|
name: 'StreamuX Blockchain',
|
|
9857
10205
|
chain: 'StreamuX',
|
|
@@ -10636,6 +10984,27 @@ exports.chains = {
|
|
|
10636
10984
|
networkId: 9792,
|
|
10637
10985
|
explorers: []
|
|
10638
10986
|
},
|
|
10987
|
+
9997: {
|
|
10988
|
+
name: 'AltLayer Testnet',
|
|
10989
|
+
chain: 'ETH',
|
|
10990
|
+
rpc: ['https://testnet-rollup-api.altlayer.io'],
|
|
10991
|
+
faucets: [],
|
|
10992
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
10993
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
10994
|
+
infoURL: 'https://altlayer.io',
|
|
10995
|
+
shortName: 'alt-testnet',
|
|
10996
|
+
chainId: 9997,
|
|
10997
|
+
networkId: 9997,
|
|
10998
|
+
icon: 'altlayer',
|
|
10999
|
+
explorers: [
|
|
11000
|
+
{
|
|
11001
|
+
name: 'blockscout',
|
|
11002
|
+
url: 'https://testnet-rollup-explorer.altlayer.io',
|
|
11003
|
+
icon: 'blockscout',
|
|
11004
|
+
standard: 'EIP3091'
|
|
11005
|
+
}
|
|
11006
|
+
]
|
|
11007
|
+
},
|
|
10639
11008
|
9999: {
|
|
10640
11009
|
name: 'myOwn Testnet',
|
|
10641
11010
|
chain: 'myOwn',
|
|
@@ -11099,8 +11468,23 @@ exports.chains = {
|
|
|
11099
11468
|
name: 'Fibonacci Mainnet',
|
|
11100
11469
|
chain: 'FIBO',
|
|
11101
11470
|
icon: 'fibonacci',
|
|
11102
|
-
rpc: [
|
|
11103
|
-
|
|
11471
|
+
rpc: [
|
|
11472
|
+
'https://node1.fibo-api.asia',
|
|
11473
|
+
'https://node2.fibo-api.asia',
|
|
11474
|
+
'https://node3.fibo-api.asia',
|
|
11475
|
+
'https://node4.fibo-api.asia',
|
|
11476
|
+
'https://node5.fibo-api.asia',
|
|
11477
|
+
'https://node6.fibo-api.asia',
|
|
11478
|
+
'https://node7.fibo-api.asia',
|
|
11479
|
+
'https://node1.fibo-rpc.asia',
|
|
11480
|
+
'https://node2.fibo-rpc.asia',
|
|
11481
|
+
'https://node3.fibo-rpc.asia',
|
|
11482
|
+
'https://node4.fibo-rpc.asia',
|
|
11483
|
+
'https://node5.fibo-rpc.asia',
|
|
11484
|
+
'https://node6.fibo-rpc.asia',
|
|
11485
|
+
'https://node7.fibo-rpc.asia'
|
|
11486
|
+
],
|
|
11487
|
+
faucets: ['https://test.fibochain.org/faucets'],
|
|
11104
11488
|
nativeCurrency: {
|
|
11105
11489
|
name: 'FIBONACCI UTILITY TOKEN',
|
|
11106
11490
|
symbol: 'FIBO',
|
|
@@ -11354,10 +11738,29 @@ exports.chains = {
|
|
|
11354
11738
|
chainId: 16001,
|
|
11355
11739
|
networkId: 16001
|
|
11356
11740
|
},
|
|
11741
|
+
16507: {
|
|
11742
|
+
name: 'Genesys Mainnet',
|
|
11743
|
+
chain: 'Genesys',
|
|
11744
|
+
icon: 'genesys',
|
|
11745
|
+
rpc: ['https://rpc.genesys.network'],
|
|
11746
|
+
faucets: [],
|
|
11747
|
+
nativeCurrency: { name: 'Genesys', symbol: 'GSYS', decimals: 18 },
|
|
11748
|
+
infoURL: 'https://www.genesys.network/',
|
|
11749
|
+
shortName: 'Genesys',
|
|
11750
|
+
chainId: 16507,
|
|
11751
|
+
networkId: 16507,
|
|
11752
|
+
explorers: [
|
|
11753
|
+
{
|
|
11754
|
+
name: 'GchainExplorer',
|
|
11755
|
+
url: 'https://gchainexplorer.genesys.network',
|
|
11756
|
+
standard: 'EIP3091'
|
|
11757
|
+
}
|
|
11758
|
+
]
|
|
11759
|
+
},
|
|
11357
11760
|
16688: {
|
|
11358
11761
|
name: 'IRIShub Testnet',
|
|
11359
11762
|
chain: 'IRIShub',
|
|
11360
|
-
rpc: ['
|
|
11763
|
+
rpc: ['https://evmrpc.nyancat.irisnet.org'],
|
|
11361
11764
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
11362
11765
|
faucets: [],
|
|
11363
11766
|
nativeCurrency: { name: 'Eris', symbol: 'ERIS', decimals: 18 },
|
|
@@ -12371,7 +12774,10 @@ exports.chains = {
|
|
|
12371
12774
|
name: 'Avalanche Fuji Testnet',
|
|
12372
12775
|
chain: 'AVAX',
|
|
12373
12776
|
icon: 'avax',
|
|
12374
|
-
rpc: [
|
|
12777
|
+
rpc: [
|
|
12778
|
+
'https://api.avax-test.network/ext/bc/C/rpc',
|
|
12779
|
+
'https://avalanche-fuji-c-chain.publicnode.com'
|
|
12780
|
+
],
|
|
12375
12781
|
faucets: ['https://faucet.avax-test.network/'],
|
|
12376
12782
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
|
12377
12783
|
infoURL: 'https://cchain.explorer.avax-test.network',
|
|
@@ -12622,6 +13028,30 @@ exports.chains = {
|
|
|
12622
13028
|
],
|
|
12623
13029
|
parent: { type: 'L2', chain: 'eip155-3' }
|
|
12624
13030
|
},
|
|
13031
|
+
51178: {
|
|
13032
|
+
name: 'Opside Testnet Pre-Alpha',
|
|
13033
|
+
chain: 'ETH',
|
|
13034
|
+
rpc: [
|
|
13035
|
+
'https://pre-alpha-us-http-geth.opside.network',
|
|
13036
|
+
'https://pre-alpha-hk-http-geth.opside.network'
|
|
13037
|
+
],
|
|
13038
|
+
faucets: [],
|
|
13039
|
+
nativeCurrency: { name: 'IDE Test Token', symbol: 'IDE', decimals: 18 },
|
|
13040
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
13041
|
+
infoURL: 'https://opsi.de/',
|
|
13042
|
+
shortName: 'Opside-Testnet',
|
|
13043
|
+
chainId: 51178,
|
|
13044
|
+
networkId: 51178,
|
|
13045
|
+
icon: 'opside-new',
|
|
13046
|
+
explorers: [
|
|
13047
|
+
{
|
|
13048
|
+
name: 'OpsideTestnetInfo',
|
|
13049
|
+
url: 'https://pre-alpha.opside.info',
|
|
13050
|
+
icon: 'opside-new',
|
|
13051
|
+
standard: 'EIP3091'
|
|
13052
|
+
}
|
|
13053
|
+
]
|
|
13054
|
+
},
|
|
12625
13055
|
51712: {
|
|
12626
13056
|
name: 'Sardis Mainnet',
|
|
12627
13057
|
chain: 'SRDX',
|
|
@@ -13143,6 +13573,30 @@ exports.chains = {
|
|
|
13143
13573
|
}
|
|
13144
13574
|
]
|
|
13145
13575
|
},
|
|
13576
|
+
71111: {
|
|
13577
|
+
name: 'GuapcoinX',
|
|
13578
|
+
chain: 'GuapcoinX',
|
|
13579
|
+
rpc: [
|
|
13580
|
+
'https://rpc-mainnet.guapcoinx.com/',
|
|
13581
|
+
'https://rpc-mainnet-1.guapcoinx.com/',
|
|
13582
|
+
'https://rpc-mainnet-2.guapcoinx.com/'
|
|
13583
|
+
],
|
|
13584
|
+
faucets: [],
|
|
13585
|
+
nativeCurrency: { name: 'GuapcoinX', symbol: 'GuapX', decimals: 18 },
|
|
13586
|
+
infoURL: 'https://guapcoin.org/',
|
|
13587
|
+
shortName: 'GuapX',
|
|
13588
|
+
chainId: 71111,
|
|
13589
|
+
networkId: 71111,
|
|
13590
|
+
icon: 'guapcoinx',
|
|
13591
|
+
explorers: [
|
|
13592
|
+
{
|
|
13593
|
+
name: 'GuapcoinX Explorer',
|
|
13594
|
+
url: 'http://explorer.guapcoinx.com',
|
|
13595
|
+
standard: 'none',
|
|
13596
|
+
icon: 'guapcoinx'
|
|
13597
|
+
}
|
|
13598
|
+
]
|
|
13599
|
+
},
|
|
13146
13600
|
71393: {
|
|
13147
13601
|
name: 'Polyjuice Testnet',
|
|
13148
13602
|
chain: 'CKB',
|
|
@@ -13172,11 +13626,6 @@ exports.chains = {
|
|
|
13172
13626
|
chainId: 71401,
|
|
13173
13627
|
networkId: 71401,
|
|
13174
13628
|
explorers: [
|
|
13175
|
-
{
|
|
13176
|
-
name: 'GWScout Explorer',
|
|
13177
|
-
url: 'https://gw-testnet-explorer.nervosdao.community',
|
|
13178
|
-
standard: 'none'
|
|
13179
|
-
},
|
|
13180
13629
|
{
|
|
13181
13630
|
name: 'GWScan Block Explorer',
|
|
13182
13631
|
url: 'https://v1.testnet.gwscan.com',
|
|
@@ -13195,11 +13644,6 @@ exports.chains = {
|
|
|
13195
13644
|
chainId: 71402,
|
|
13196
13645
|
networkId: 71402,
|
|
13197
13646
|
explorers: [
|
|
13198
|
-
{
|
|
13199
|
-
name: 'GWScout Explorer',
|
|
13200
|
-
url: 'https://gw-mainnet-explorer.nervosdao.community',
|
|
13201
|
-
standard: 'none'
|
|
13202
|
-
},
|
|
13203
13647
|
{
|
|
13204
13648
|
name: 'GWScan Block Explorer',
|
|
13205
13649
|
url: 'https://v1.gwscan.com',
|
|
@@ -13317,7 +13761,8 @@ exports.chains = {
|
|
|
13317
13761
|
rpc: [
|
|
13318
13762
|
'https://matic-mumbai.chainstacklabs.com',
|
|
13319
13763
|
'https://rpc-mumbai.maticvigil.com',
|
|
13320
|
-
'https://matic-testnet-archive-rpc.bwarelabs.com'
|
|
13764
|
+
'https://matic-testnet-archive-rpc.bwarelabs.com',
|
|
13765
|
+
'https://polygon-mumbai-bor.publicnode.com'
|
|
13321
13766
|
],
|
|
13322
13767
|
faucets: ['https://faucet.polygon.technology/'],
|
|
13323
13768
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
|
@@ -14859,7 +15304,7 @@ exports.chains = {
|
|
|
14859
15304
|
faucets: [],
|
|
14860
15305
|
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
|
14861
15306
|
infoURL: 'https://fastex.com',
|
|
14862
|
-
shortName: '
|
|
15307
|
+
shortName: 'fastexTestnet',
|
|
14863
15308
|
chainId: 424242,
|
|
14864
15309
|
networkId: 424242,
|
|
14865
15310
|
explorers: [
|
|
@@ -15034,6 +15479,11 @@ exports.chains = {
|
|
|
15034
15479
|
name: 'Scroll Alpha Testnet Block Explorer',
|
|
15035
15480
|
url: 'https://blockscout.scroll.io',
|
|
15036
15481
|
standard: 'EIP3091'
|
|
15482
|
+
},
|
|
15483
|
+
{
|
|
15484
|
+
name: 'Scroll Alpha Testnet Block Explorer',
|
|
15485
|
+
url: 'https://scrollexplorer.unifra.io',
|
|
15486
|
+
standard: 'EIP3091'
|
|
15037
15487
|
}
|
|
15038
15488
|
],
|
|
15039
15489
|
parent: { type: 'L2', chain: 'eip155-5', bridges: [] }
|
|
@@ -15160,6 +15610,25 @@ exports.chains = {
|
|
|
15160
15610
|
}
|
|
15161
15611
|
]
|
|
15162
15612
|
},
|
|
15613
|
+
827431: {
|
|
15614
|
+
name: 'CURVE Mainnet',
|
|
15615
|
+
chain: 'CURVE',
|
|
15616
|
+
icon: 'curveIcon',
|
|
15617
|
+
rpc: ['https://mainnet-rpc.curvescan.io'],
|
|
15618
|
+
faucets: [],
|
|
15619
|
+
nativeCurrency: { name: 'Curve', symbol: 'CURVE', decimals: 18 },
|
|
15620
|
+
infoURL: 'https://curvescan.io',
|
|
15621
|
+
shortName: 'CURVEm',
|
|
15622
|
+
chainId: 827431,
|
|
15623
|
+
networkId: 827431,
|
|
15624
|
+
explorers: [
|
|
15625
|
+
{
|
|
15626
|
+
name: 'CURVE Mainnet',
|
|
15627
|
+
url: 'https://curvescan.io',
|
|
15628
|
+
standard: 'EIP3091'
|
|
15629
|
+
}
|
|
15630
|
+
]
|
|
15631
|
+
},
|
|
15163
15632
|
846000: {
|
|
15164
15633
|
name: '4GoodNetwork',
|
|
15165
15634
|
chain: '4GN',
|
|
@@ -15505,6 +15974,20 @@ exports.chains = {
|
|
|
15505
15974
|
slip44: 1,
|
|
15506
15975
|
explorers: []
|
|
15507
15976
|
},
|
|
15977
|
+
4281033: {
|
|
15978
|
+
name: 'Worlds Caldera',
|
|
15979
|
+
chain: 'WCal',
|
|
15980
|
+
rpc: ['https://worlds-test.calderachain.xyz/http'],
|
|
15981
|
+
faucets: [],
|
|
15982
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
15983
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
15984
|
+
infoURL: 'https://caldera.xyz/',
|
|
15985
|
+
shortName: 'worldscal',
|
|
15986
|
+
chainId: 4281033,
|
|
15987
|
+
networkId: 4281033,
|
|
15988
|
+
icon: 'ethereum',
|
|
15989
|
+
explorers: []
|
|
15990
|
+
},
|
|
15508
15991
|
5167003: {
|
|
15509
15992
|
name: 'MXC Wannsee zkEVM Testnet',
|
|
15510
15993
|
chain: 'MXC zkEVM',
|
|
@@ -16138,9 +16621,7 @@ exports.chains = {
|
|
|
16138
16621
|
name: 'Kanazawa',
|
|
16139
16622
|
title: 'Meld Testnet Kanazawa',
|
|
16140
16623
|
chain: 'Kanazawa',
|
|
16141
|
-
rpc: [
|
|
16142
|
-
'https://rpc-kanazawa.meldlabs.dev/ext/bc/2Ci7VYrUd4fTBqGA5D2HA6UPHzQ4LQyr8rZQww9MGSv9rNkRzn/rpc'
|
|
16143
|
-
],
|
|
16624
|
+
rpc: ['https://subnets.avax.network/meld/testnet/rpc'],
|
|
16144
16625
|
faucets: [],
|
|
16145
16626
|
features: [],
|
|
16146
16627
|
nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
|
|
@@ -16149,7 +16630,14 @@ exports.chains = {
|
|
|
16149
16630
|
shortName: 'kanazawa',
|
|
16150
16631
|
chainId: 222000222,
|
|
16151
16632
|
networkId: 222000222,
|
|
16152
|
-
explorers: [
|
|
16633
|
+
explorers: [
|
|
16634
|
+
{
|
|
16635
|
+
name: 'explorer',
|
|
16636
|
+
url: 'https://subnets-test.avax.network/meld',
|
|
16637
|
+
icon: 'meld',
|
|
16638
|
+
standard: 'EIP3091'
|
|
16639
|
+
}
|
|
16640
|
+
]
|
|
16153
16641
|
},
|
|
16154
16642
|
245022926: {
|
|
16155
16643
|
name: 'Neon EVM DevNet',
|
|
@@ -16223,6 +16711,25 @@ exports.chains = {
|
|
|
16223
16711
|
}
|
|
16224
16712
|
]
|
|
16225
16713
|
},
|
|
16714
|
+
278611351: {
|
|
16715
|
+
name: 'Razor Skale Chain',
|
|
16716
|
+
chain: 'Razor Schain',
|
|
16717
|
+
icon: 'razornetwork',
|
|
16718
|
+
rpc: ['https://mainnet.skalenodes.com/v1/turbulent-unique-scheat'],
|
|
16719
|
+
faucets: ['https://faucet.razorscan.io/'],
|
|
16720
|
+
nativeCurrency: { name: 'sFuel', symbol: 'SFUEL', decimals: 18 },
|
|
16721
|
+
infoURL: 'https://razor.network',
|
|
16722
|
+
shortName: 'razor',
|
|
16723
|
+
chainId: 278611351,
|
|
16724
|
+
networkId: 278611351,
|
|
16725
|
+
explorers: [
|
|
16726
|
+
{
|
|
16727
|
+
name: 'turbulent-unique-scheat',
|
|
16728
|
+
url: 'https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com',
|
|
16729
|
+
standard: 'EIP3091'
|
|
16730
|
+
}
|
|
16731
|
+
]
|
|
16732
|
+
},
|
|
16226
16733
|
311752642: {
|
|
16227
16734
|
name: 'OneLedger Mainnet',
|
|
16228
16735
|
chain: 'OLT',
|
|
@@ -16246,7 +16753,7 @@ exports.chains = {
|
|
|
16246
16753
|
name: 'Meld',
|
|
16247
16754
|
title: 'Meld Mainnet',
|
|
16248
16755
|
chain: 'MELD',
|
|
16249
|
-
rpc: ['https://network
|
|
16756
|
+
rpc: ['https://subnets.avax.network/meld/mainnet/rpc'],
|
|
16250
16757
|
faucets: [],
|
|
16251
16758
|
features: [],
|
|
16252
16759
|
nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
|
|
@@ -16255,7 +16762,14 @@ exports.chains = {
|
|
|
16255
16762
|
shortName: 'meld',
|
|
16256
16763
|
chainId: 333000333,
|
|
16257
16764
|
networkId: 333000333,
|
|
16258
|
-
explorers: [
|
|
16765
|
+
explorers: [
|
|
16766
|
+
{
|
|
16767
|
+
name: 'explorer',
|
|
16768
|
+
url: 'https://subnets.avax.network/meld',
|
|
16769
|
+
icon: 'meld',
|
|
16770
|
+
standard: 'EIP3091'
|
|
16771
|
+
}
|
|
16772
|
+
]
|
|
16259
16773
|
},
|
|
16260
16774
|
344106930: {
|
|
16261
16775
|
name: 'Calypso NFT Hub (SKALE Testnet)',
|