@revoke.cash/chains 33.0.0 → 35.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 +806 -141
- package/dist/src/enums.d.ts +60 -8
- package/dist/src/enums.js +60 -8
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -21,7 +21,9 @@ exports.chains = {
|
|
|
21
21
|
'https://rpc.mevblocker.io',
|
|
22
22
|
'https://rpc.mevblocker.io/fast',
|
|
23
23
|
'https://rpc.mevblocker.io/noreverts',
|
|
24
|
-
'https://rpc.mevblocker.io/fullprivacy'
|
|
24
|
+
'https://rpc.mevblocker.io/fullprivacy',
|
|
25
|
+
'https://eth.drpc.org',
|
|
26
|
+
'wss://eth.drpc.org'
|
|
25
27
|
],
|
|
26
28
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
27
29
|
faucets: [],
|
|
@@ -238,7 +240,9 @@ exports.chains = {
|
|
|
238
240
|
'https://optimism-rpc.publicnode.com',
|
|
239
241
|
'wss://optimism-rpc.publicnode.com',
|
|
240
242
|
'https://optimism.gateway.tenderly.co',
|
|
241
|
-
'wss://optimism.gateway.tenderly.co'
|
|
243
|
+
'wss://optimism.gateway.tenderly.co',
|
|
244
|
+
'https://optimism.drpc.org',
|
|
245
|
+
'wss://optimism.drpc.org'
|
|
242
246
|
],
|
|
243
247
|
faucets: [],
|
|
244
248
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -398,7 +402,11 @@ exports.chains = {
|
|
|
398
402
|
18: {
|
|
399
403
|
name: 'ThunderCore Testnet',
|
|
400
404
|
chain: 'TST',
|
|
401
|
-
rpc: [
|
|
405
|
+
rpc: [
|
|
406
|
+
'https://testnet-rpc.thundercore.com',
|
|
407
|
+
'https://thundercore-testnet.drpc.org',
|
|
408
|
+
'wss://thundercore-testnet.drpc.org'
|
|
409
|
+
],
|
|
402
410
|
faucets: ['https://faucet-testnet.thundercore.com'],
|
|
403
411
|
nativeCurrency: {
|
|
404
412
|
name: 'ThunderCore Testnet Token',
|
|
@@ -526,7 +534,9 @@ exports.chains = {
|
|
|
526
534
|
rpc: [
|
|
527
535
|
'https://evm.cronos.org',
|
|
528
536
|
'https://cronos-evm-rpc.publicnode.com',
|
|
529
|
-
'wss://cronos-evm-rpc.publicnode.com'
|
|
537
|
+
'wss://cronos-evm-rpc.publicnode.com',
|
|
538
|
+
'https://cronos.drpc.org',
|
|
539
|
+
'wss://cronos.drpc.org'
|
|
530
540
|
],
|
|
531
541
|
features: [{ name: 'EIP1559' }],
|
|
532
542
|
faucets: [],
|
|
@@ -807,7 +817,11 @@ exports.chains = {
|
|
|
807
817
|
40: {
|
|
808
818
|
name: 'Telos EVM Mainnet',
|
|
809
819
|
chain: 'TLOS',
|
|
810
|
-
rpc: [
|
|
820
|
+
rpc: [
|
|
821
|
+
'https://mainnet.telos.net/evm',
|
|
822
|
+
'https://telos.drpc.org',
|
|
823
|
+
'wss://telos.drpc.org'
|
|
824
|
+
],
|
|
811
825
|
faucets: [],
|
|
812
826
|
nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 },
|
|
813
827
|
infoURL: 'https://telos.net',
|
|
@@ -825,7 +839,11 @@ exports.chains = {
|
|
|
825
839
|
41: {
|
|
826
840
|
name: 'Telos EVM Testnet',
|
|
827
841
|
chain: 'TLOS',
|
|
828
|
-
rpc: [
|
|
842
|
+
rpc: [
|
|
843
|
+
'https://testnet.telos.net/evm',
|
|
844
|
+
'https://telos-testnet.drpc.org',
|
|
845
|
+
'wss://telos-testnet.drpc.org'
|
|
846
|
+
],
|
|
829
847
|
faucets: ['https://app.telos.net/testnet/developers'],
|
|
830
848
|
nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 },
|
|
831
849
|
infoURL: 'https://telos.net',
|
|
@@ -1220,8 +1238,8 @@ exports.chains = {
|
|
|
1220
1238
|
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
|
1221
1239
|
'https://syscoin.public-rpc.com',
|
|
1222
1240
|
'wss://rpc.syscoin.org/wss',
|
|
1223
|
-
'https://syscoin-evm
|
|
1224
|
-
'wss://syscoin-evm
|
|
1241
|
+
'https://syscoin-evm.publicnode.com',
|
|
1242
|
+
'wss://syscoin-evm.publicnode.com'
|
|
1225
1243
|
],
|
|
1226
1244
|
faucets: ['https://faucet.syscoin.org'],
|
|
1227
1245
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
|
@@ -1874,25 +1892,25 @@ exports.chains = {
|
|
|
1874
1892
|
]
|
|
1875
1893
|
},
|
|
1876
1894
|
88: {
|
|
1877
|
-
name: '
|
|
1878
|
-
chain: '
|
|
1879
|
-
rpc: ['https://rpc.
|
|
1895
|
+
name: 'Viction',
|
|
1896
|
+
chain: 'Viction',
|
|
1897
|
+
rpc: ['https://rpc.viction.xyz'],
|
|
1880
1898
|
faucets: [],
|
|
1881
|
-
nativeCurrency: { name: '
|
|
1882
|
-
infoURL: 'https://
|
|
1883
|
-
shortName: '
|
|
1899
|
+
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 },
|
|
1900
|
+
infoURL: 'https://viction.xyz',
|
|
1901
|
+
shortName: 'vic',
|
|
1884
1902
|
chainId: 88,
|
|
1885
1903
|
networkId: 88,
|
|
1886
1904
|
slip44: 889
|
|
1887
1905
|
},
|
|
1888
1906
|
89: {
|
|
1889
|
-
name: '
|
|
1890
|
-
chain: '
|
|
1891
|
-
rpc: ['https://rpc
|
|
1907
|
+
name: 'Viction Testnet',
|
|
1908
|
+
chain: 'Viction',
|
|
1909
|
+
rpc: ['https://rpc-testnet.viction.xyz'],
|
|
1892
1910
|
faucets: [],
|
|
1893
|
-
nativeCurrency: { name: '
|
|
1894
|
-
infoURL: 'https://
|
|
1895
|
-
shortName: '
|
|
1911
|
+
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 },
|
|
1912
|
+
infoURL: 'https://viction.xyz',
|
|
1913
|
+
shortName: 'vict',
|
|
1896
1914
|
chainId: 89,
|
|
1897
1915
|
networkId: 89,
|
|
1898
1916
|
slip44: 1
|
|
@@ -2585,7 +2603,11 @@ exports.chains = {
|
|
|
2585
2603
|
122: {
|
|
2586
2604
|
name: 'Fuse Mainnet',
|
|
2587
2605
|
chain: 'FUSE',
|
|
2588
|
-
rpc: [
|
|
2606
|
+
rpc: [
|
|
2607
|
+
'https://rpc.fuse.io',
|
|
2608
|
+
'https://fuse.drpc.org',
|
|
2609
|
+
'wss://fuse.drpc.org'
|
|
2610
|
+
],
|
|
2589
2611
|
faucets: [],
|
|
2590
2612
|
nativeCurrency: { name: 'Fuse', symbol: 'FUSE', decimals: 18 },
|
|
2591
2613
|
infoURL: 'https://fuse.io/',
|
|
@@ -2836,7 +2858,9 @@ exports.chains = {
|
|
|
2836
2858
|
'https://polygon-bor-rpc.publicnode.com',
|
|
2837
2859
|
'wss://polygon-bor-rpc.publicnode.com',
|
|
2838
2860
|
'https://polygon.gateway.tenderly.co',
|
|
2839
|
-
'wss://polygon.gateway.tenderly.co'
|
|
2861
|
+
'wss://polygon.gateway.tenderly.co',
|
|
2862
|
+
'https://polygon.drpc.org',
|
|
2863
|
+
'wss://polygon.drpc.org'
|
|
2840
2864
|
],
|
|
2841
2865
|
faucets: [],
|
|
2842
2866
|
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
|
@@ -3251,7 +3275,11 @@ exports.chains = {
|
|
|
3251
3275
|
169: {
|
|
3252
3276
|
name: 'Manta Pacific Mainnet',
|
|
3253
3277
|
chain: 'Manta Pacific',
|
|
3254
|
-
rpc: [
|
|
3278
|
+
rpc: [
|
|
3279
|
+
'https://pacific-rpc.manta.network/http',
|
|
3280
|
+
'https://manta-pacific.drpc.org',
|
|
3281
|
+
'wss://manta-pacific.drpc.org'
|
|
3282
|
+
],
|
|
3255
3283
|
faucets: [],
|
|
3256
3284
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
3257
3285
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -3369,6 +3397,19 @@ exports.chains = {
|
|
|
3369
3397
|
}
|
|
3370
3398
|
]
|
|
3371
3399
|
},
|
|
3400
|
+
191: {
|
|
3401
|
+
name: 'FileFileGo',
|
|
3402
|
+
chain: 'FFG',
|
|
3403
|
+
icon: 'ffgIcon',
|
|
3404
|
+
rpc: ['https://rpc.filefilego.com/rpc'],
|
|
3405
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3406
|
+
faucets: [],
|
|
3407
|
+
nativeCurrency: { name: 'FFG', symbol: 'FFG', decimals: 18 },
|
|
3408
|
+
infoURL: 'https://filefilego.com',
|
|
3409
|
+
shortName: 'ffg',
|
|
3410
|
+
chainId: 191,
|
|
3411
|
+
networkId: 191
|
|
3412
|
+
},
|
|
3372
3413
|
193: {
|
|
3373
3414
|
name: 'Crypto Emergency',
|
|
3374
3415
|
chain: 'CEM',
|
|
@@ -3470,7 +3511,11 @@ exports.chains = {
|
|
|
3470
3511
|
199: {
|
|
3471
3512
|
name: 'BitTorrent Chain Mainnet',
|
|
3472
3513
|
chain: 'BTTC',
|
|
3473
|
-
rpc: [
|
|
3514
|
+
rpc: [
|
|
3515
|
+
'https://rpc.bt.io',
|
|
3516
|
+
'https://bittorrent.drpc.org',
|
|
3517
|
+
'wss://bittorrent.drpc.org'
|
|
3518
|
+
],
|
|
3474
3519
|
faucets: [],
|
|
3475
3520
|
nativeCurrency: { name: 'BitTorrent', symbol: 'BTT', decimals: 18 },
|
|
3476
3521
|
infoURL: 'https://bt.io',
|
|
@@ -3534,7 +3579,9 @@ exports.chains = {
|
|
|
3534
3579
|
'https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
|
|
3535
3580
|
'wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
|
|
3536
3581
|
'https://opbnb-rpc.publicnode.com',
|
|
3537
|
-
'wss://opbnb-rpc.publicnode.com'
|
|
3582
|
+
'wss://opbnb-rpc.publicnode.com',
|
|
3583
|
+
'https://opbnb.drpc.org',
|
|
3584
|
+
'wss://opbnb.drpc.org'
|
|
3538
3585
|
],
|
|
3539
3586
|
faucets: [],
|
|
3540
3587
|
nativeCurrency: {
|
|
@@ -3956,7 +4003,9 @@ exports.chains = {
|
|
|
3956
4003
|
rpc: [
|
|
3957
4004
|
'https://rpc.ftm.tools',
|
|
3958
4005
|
'https://fantom-rpc.publicnode.com',
|
|
3959
|
-
'wss://fantom-rpc.publicnode.com'
|
|
4006
|
+
'wss://fantom-rpc.publicnode.com',
|
|
4007
|
+
'https://fantom.drpc.org',
|
|
4008
|
+
'wss://fantom.drpc.org'
|
|
3960
4009
|
],
|
|
3961
4010
|
faucets: [],
|
|
3962
4011
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
|
@@ -3990,6 +4039,7 @@ exports.chains = {
|
|
|
3990
4039
|
shortName: 'fraxtal',
|
|
3991
4040
|
chainId: 252,
|
|
3992
4041
|
networkId: 252,
|
|
4042
|
+
icon: 'fraxtal',
|
|
3993
4043
|
explorers: [
|
|
3994
4044
|
{
|
|
3995
4045
|
name: 'fraxscan',
|
|
@@ -4207,7 +4257,9 @@ exports.chains = {
|
|
|
4207
4257
|
'https://boba-ethereum.gateway.tenderly.co',
|
|
4208
4258
|
'https://gateway.tenderly.co/public/boba-ethereum',
|
|
4209
4259
|
'wss://boba-ethereum.gateway.tenderly.co/',
|
|
4210
|
-
'wss://gateway.tenderly.co/public/boba-ethereum'
|
|
4260
|
+
'wss://gateway.tenderly.co/public/boba-ethereum',
|
|
4261
|
+
'https://boba-eth.drpc.org',
|
|
4262
|
+
'wss://boba-eth.drpc.org'
|
|
4211
4263
|
],
|
|
4212
4264
|
faucets: [],
|
|
4213
4265
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -4373,7 +4425,11 @@ exports.chains = {
|
|
|
4373
4425
|
300: {
|
|
4374
4426
|
name: 'zkSync Sepolia Testnet',
|
|
4375
4427
|
chain: 'ETH',
|
|
4376
|
-
rpc: [
|
|
4428
|
+
rpc: [
|
|
4429
|
+
'https://sepolia.era.zksync.dev',
|
|
4430
|
+
'https://zksync-sepolia.drpc.org',
|
|
4431
|
+
'wss://zksync-sepolia.drpc.org'
|
|
4432
|
+
],
|
|
4377
4433
|
faucets: [],
|
|
4378
4434
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
4379
4435
|
infoURL: 'https://zksync.io/',
|
|
@@ -4552,7 +4608,9 @@ exports.chains = {
|
|
|
4552
4608
|
'https://api.node.glif.io/',
|
|
4553
4609
|
'https://rpc.ankr.com/filecoin',
|
|
4554
4610
|
'https://filecoin-mainnet.chainstacklabs.com/rpc/v1',
|
|
4555
|
-
'https://filfox.info/rpc/v1'
|
|
4611
|
+
'https://filfox.info/rpc/v1',
|
|
4612
|
+
'https://filecoin.drpc.org',
|
|
4613
|
+
'wss://filecoin.drpc.org'
|
|
4556
4614
|
],
|
|
4557
4615
|
faucets: [],
|
|
4558
4616
|
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
|
@@ -4650,7 +4708,11 @@ exports.chains = {
|
|
|
4650
4708
|
324: {
|
|
4651
4709
|
name: 'zkSync Mainnet',
|
|
4652
4710
|
chain: 'ETH',
|
|
4653
|
-
rpc: [
|
|
4711
|
+
rpc: [
|
|
4712
|
+
'https://mainnet.era.zksync.io',
|
|
4713
|
+
'https://zksync.drpc.org',
|
|
4714
|
+
'wss://zksync.drpc.org'
|
|
4715
|
+
],
|
|
4654
4716
|
faucets: [],
|
|
4655
4717
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
4656
4718
|
infoURL: 'https://zksync.io/',
|
|
@@ -4747,7 +4809,11 @@ exports.chains = {
|
|
|
4747
4809
|
338: {
|
|
4748
4810
|
name: 'Cronos Testnet',
|
|
4749
4811
|
chain: 'CRO',
|
|
4750
|
-
rpc: [
|
|
4812
|
+
rpc: [
|
|
4813
|
+
'https://evm-t3.cronos.org',
|
|
4814
|
+
'https://cronos-testnet.drpc.org',
|
|
4815
|
+
'wss://cronos-testnet.drpc.org'
|
|
4816
|
+
],
|
|
4751
4817
|
faucets: ['https://cronos.org/faucet'],
|
|
4752
4818
|
nativeCurrency: { name: 'Cronos Test Coin', symbol: 'TCRO', decimals: 18 },
|
|
4753
4819
|
infoURL: 'https://cronos.org',
|
|
@@ -5092,7 +5158,9 @@ exports.chains = {
|
|
|
5092
5158
|
'https://optimism-goerli-rpc.publicnode.com',
|
|
5093
5159
|
'wss://optimism-goerli-rpc.publicnode.com',
|
|
5094
5160
|
'https://optimism-goerli.gateway.tenderly.co',
|
|
5095
|
-
'wss://optimism-goerli.gateway.tenderly.co'
|
|
5161
|
+
'wss://optimism-goerli.gateway.tenderly.co',
|
|
5162
|
+
'https://optimism-testnet.drpc.org',
|
|
5163
|
+
'wss://optimism-testnet.drpc.org'
|
|
5096
5164
|
],
|
|
5097
5165
|
faucets: [],
|
|
5098
5166
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -5602,7 +5670,12 @@ exports.chains = {
|
|
|
5602
5670
|
570: {
|
|
5603
5671
|
name: 'Rollux Mainnet',
|
|
5604
5672
|
chain: 'SYS',
|
|
5605
|
-
rpc: [
|
|
5673
|
+
rpc: [
|
|
5674
|
+
'https://rpc.rollux.com',
|
|
5675
|
+
'wss://rpc.rollux.com/wss',
|
|
5676
|
+
'https://rollux.rpc.syscoin.org',
|
|
5677
|
+
'wss://rollux.rpc.syscoin.org/wss'
|
|
5678
|
+
],
|
|
5606
5679
|
faucets: ['https://rollux.id/faucetapp'],
|
|
5607
5680
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
|
5608
5681
|
infoURL: 'https://rollux.com',
|
|
@@ -5877,6 +5950,25 @@ exports.chains = {
|
|
|
5877
5950
|
}
|
|
5878
5951
|
]
|
|
5879
5952
|
},
|
|
5953
|
+
646: {
|
|
5954
|
+
name: 'FlowEVM PreviewNet',
|
|
5955
|
+
chain: 'FlowEVM',
|
|
5956
|
+
rpc: ['https://previewnet.evm.nodes.onflow.org'],
|
|
5957
|
+
faucets: ['https://previewnet-faucet.onflow.org'],
|
|
5958
|
+
nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
|
|
5959
|
+
infoURL: 'https://developers.flow.com/evm/about',
|
|
5960
|
+
shortName: 'flowevm-preview',
|
|
5961
|
+
chainId: 646,
|
|
5962
|
+
networkId: 646,
|
|
5963
|
+
icon: 'flowevm',
|
|
5964
|
+
explorers: [
|
|
5965
|
+
{
|
|
5966
|
+
name: 'Flow Diver',
|
|
5967
|
+
url: 'https://previewnet.flowdiver.io',
|
|
5968
|
+
standard: 'none'
|
|
5969
|
+
}
|
|
5970
|
+
]
|
|
5971
|
+
},
|
|
5880
5972
|
647: {
|
|
5881
5973
|
name: 'SX Network Testnet',
|
|
5882
5974
|
chain: 'SX',
|
|
@@ -6304,6 +6396,25 @@ exports.chains = {
|
|
|
6304
6396
|
}
|
|
6305
6397
|
]
|
|
6306
6398
|
},
|
|
6399
|
+
747: {
|
|
6400
|
+
name: 'FlowEVM Mainnet',
|
|
6401
|
+
chain: 'FlowEVM',
|
|
6402
|
+
rpc: ['https://mainnet.evm.nodes.onflow.org'],
|
|
6403
|
+
faucets: [],
|
|
6404
|
+
nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
|
|
6405
|
+
infoURL: 'https://developers.flow.com/evm/about',
|
|
6406
|
+
shortName: 'flowevm-mainnet',
|
|
6407
|
+
chainId: 747,
|
|
6408
|
+
networkId: 747,
|
|
6409
|
+
icon: 'flowevm',
|
|
6410
|
+
explorers: [
|
|
6411
|
+
{
|
|
6412
|
+
name: 'Flow Diver',
|
|
6413
|
+
url: 'https://flowdiver.io',
|
|
6414
|
+
standard: 'none'
|
|
6415
|
+
}
|
|
6416
|
+
]
|
|
6417
|
+
},
|
|
6307
6418
|
766: {
|
|
6308
6419
|
name: 'QL1',
|
|
6309
6420
|
chain: 'QOM',
|
|
@@ -6541,8 +6652,6 @@ exports.chains = {
|
|
|
6541
6652
|
'https://evm-dataseed2.meerscan.io',
|
|
6542
6653
|
'https://evm-dataseed3.meerscan.io',
|
|
6543
6654
|
'https://evm-dataseed.meerscan.com',
|
|
6544
|
-
'https://evm-dataseed1.meerscan.com',
|
|
6545
|
-
'https://evm-dataseed2.meerscan.com',
|
|
6546
6655
|
'https://qng.rpc.qitmeer.io',
|
|
6547
6656
|
'https://mainnet.meerlabs.com',
|
|
6548
6657
|
'https://rpc.dimai.ai',
|
|
@@ -6557,11 +6666,17 @@ exports.chains = {
|
|
|
6557
6666
|
slip44: 813,
|
|
6558
6667
|
icon: 'meer',
|
|
6559
6668
|
explorers: [
|
|
6669
|
+
{
|
|
6670
|
+
name: 'meerscan',
|
|
6671
|
+
icon: 'meer',
|
|
6672
|
+
url: 'https://qng.qitmeer.io',
|
|
6673
|
+
standard: 'EIP3091'
|
|
6674
|
+
},
|
|
6560
6675
|
{
|
|
6561
6676
|
name: 'meerscan',
|
|
6562
6677
|
icon: 'meer',
|
|
6563
6678
|
url: 'https://qng.meerscan.io',
|
|
6564
|
-
standard: '
|
|
6679
|
+
standard: 'EIP3091'
|
|
6565
6680
|
}
|
|
6566
6681
|
]
|
|
6567
6682
|
},
|
|
@@ -7373,7 +7488,11 @@ exports.chains = {
|
|
|
7373
7488
|
1001: {
|
|
7374
7489
|
name: 'Klaytn Testnet Baobab',
|
|
7375
7490
|
chain: 'KLAY',
|
|
7376
|
-
rpc: [
|
|
7491
|
+
rpc: [
|
|
7492
|
+
'https://api.baobab.klaytn.net:8651',
|
|
7493
|
+
'https://klaytn-baobab.drpc.org',
|
|
7494
|
+
'wss://klaytn-baobab.drpc.org'
|
|
7495
|
+
],
|
|
7377
7496
|
faucets: ['https://baobab.wallet.klaytn.com/access?next=faucet'],
|
|
7378
7497
|
nativeCurrency: { name: 'KLAY', symbol: 'KLAY', decimals: 18 },
|
|
7379
7498
|
infoURL: 'https://www.klaytn.com/',
|
|
@@ -7734,7 +7853,11 @@ exports.chains = {
|
|
|
7734
7853
|
1088: {
|
|
7735
7854
|
name: 'Metis Andromeda Mainnet',
|
|
7736
7855
|
chain: 'ETH',
|
|
7737
|
-
rpc: [
|
|
7856
|
+
rpc: [
|
|
7857
|
+
'https://andromeda.metis.io/?owner=1088',
|
|
7858
|
+
'https://metis.drpc.org',
|
|
7859
|
+
'wss://metis.drpc.org'
|
|
7860
|
+
],
|
|
7738
7861
|
faucets: [],
|
|
7739
7862
|
nativeCurrency: { name: 'Metis', symbol: 'METIS', decimals: 18 },
|
|
7740
7863
|
infoURL: 'https://www.metis.io',
|
|
@@ -7825,7 +7948,11 @@ exports.chains = {
|
|
|
7825
7948
|
name: 'Polygon zkEVM',
|
|
7826
7949
|
title: 'Polygon zkEVM',
|
|
7827
7950
|
chain: 'Polygon',
|
|
7828
|
-
rpc: [
|
|
7951
|
+
rpc: [
|
|
7952
|
+
'https://zkevm-rpc.com',
|
|
7953
|
+
'https://polygon-zkevm.drpc.org',
|
|
7954
|
+
'wss://polygon-zkevm.drpc.org'
|
|
7955
|
+
],
|
|
7829
7956
|
faucets: [],
|
|
7830
7957
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
7831
7958
|
infoURL: 'https://polygon.technology/polygon-zkevm',
|
|
@@ -7954,7 +8081,12 @@ exports.chains = {
|
|
|
7954
8081
|
name: 'Core Blockchain Mainnet',
|
|
7955
8082
|
chain: 'Core',
|
|
7956
8083
|
icon: 'core',
|
|
7957
|
-
rpc: [
|
|
8084
|
+
rpc: [
|
|
8085
|
+
'https://rpc.coredao.org/',
|
|
8086
|
+
'https://rpc-core.icecreamswap.com',
|
|
8087
|
+
'https://core.drpc.org',
|
|
8088
|
+
'wss://core.drpc.org'
|
|
8089
|
+
],
|
|
7958
8090
|
faucets: [],
|
|
7959
8091
|
nativeCurrency: {
|
|
7960
8092
|
name: 'Core Blockchain Native Token',
|
|
@@ -8475,7 +8607,9 @@ exports.chains = {
|
|
|
8475
8607
|
'https://rpc.api.moonbeam.network',
|
|
8476
8608
|
'wss://wss.api.moonbeam.network',
|
|
8477
8609
|
'https://moonbeam-rpc.publicnode.com',
|
|
8478
|
-
'wss://moonbeam-rpc.publicnode.com'
|
|
8610
|
+
'wss://moonbeam-rpc.publicnode.com',
|
|
8611
|
+
'https://moonbeam.drpc.org',
|
|
8612
|
+
'wss://moonbeam.drpc.org'
|
|
8479
8613
|
],
|
|
8480
8614
|
faucets: [],
|
|
8481
8615
|
nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
|
|
@@ -8498,7 +8632,9 @@ exports.chains = {
|
|
|
8498
8632
|
'https://rpc.api.moonriver.moonbeam.network',
|
|
8499
8633
|
'wss://wss.api.moonriver.moonbeam.network',
|
|
8500
8634
|
'https://moonriver-rpc.publicnode.com',
|
|
8501
|
-
'wss://moonriver-rpc.publicnode.com'
|
|
8635
|
+
'wss://moonriver-rpc.publicnode.com',
|
|
8636
|
+
'https://moonriver.drpc.org',
|
|
8637
|
+
'wss://moonriver.drpc.org'
|
|
8502
8638
|
],
|
|
8503
8639
|
faucets: [],
|
|
8504
8640
|
nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
|
|
@@ -8531,7 +8667,9 @@ exports.chains = {
|
|
|
8531
8667
|
chain: 'MOON',
|
|
8532
8668
|
rpc: [
|
|
8533
8669
|
'https://rpc.api.moonbase.moonbeam.network',
|
|
8534
|
-
'wss://wss.api.moonbase.moonbeam.network'
|
|
8670
|
+
'wss://wss.api.moonbase.moonbeam.network',
|
|
8671
|
+
'https://moonbase-alpha.drpc.org',
|
|
8672
|
+
'wss://moonbase-alpha.drpc.org'
|
|
8535
8673
|
],
|
|
8536
8674
|
faucets: [],
|
|
8537
8675
|
nativeCurrency: { name: 'Dev', symbol: 'DEV', decimals: 18 },
|
|
@@ -8973,7 +9111,11 @@ exports.chains = {
|
|
|
8973
9111
|
name: 'Polygon zkEVM Testnet',
|
|
8974
9112
|
title: 'Polygon zkEVM Testnet',
|
|
8975
9113
|
chain: 'Polygon',
|
|
8976
|
-
rpc: [
|
|
9114
|
+
rpc: [
|
|
9115
|
+
'https://rpc.public.zkevm-test.net',
|
|
9116
|
+
'https://polygon-zkevm-testnet.drpc.org',
|
|
9117
|
+
'wss://polygon-zkevm-testnet.drpc.org'
|
|
9118
|
+
],
|
|
8977
9119
|
faucets: [],
|
|
8978
9120
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
8979
9121
|
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
|
@@ -9367,6 +9509,25 @@ exports.chains = {
|
|
|
9367
9509
|
}
|
|
9368
9510
|
]
|
|
9369
9511
|
},
|
|
9512
|
+
1717: {
|
|
9513
|
+
name: 'Doric Network',
|
|
9514
|
+
chain: 'DRC',
|
|
9515
|
+
icon: 'doric',
|
|
9516
|
+
rpc: ['https://mainnet.doric.network'],
|
|
9517
|
+
faucets: [],
|
|
9518
|
+
nativeCurrency: { name: 'Doric Native Token', symbol: 'DRC', decimals: 18 },
|
|
9519
|
+
infoURL: 'https://doric.network',
|
|
9520
|
+
shortName: 'DRC',
|
|
9521
|
+
chainId: 1717,
|
|
9522
|
+
networkId: 1717,
|
|
9523
|
+
explorers: [
|
|
9524
|
+
{
|
|
9525
|
+
name: 'Doric Explorer',
|
|
9526
|
+
url: 'https://explorer.doric.network',
|
|
9527
|
+
standard: 'EIP3091'
|
|
9528
|
+
}
|
|
9529
|
+
]
|
|
9530
|
+
},
|
|
9370
9531
|
1718: {
|
|
9371
9532
|
name: 'Palette Chain Mainnet',
|
|
9372
9533
|
chain: 'PLT',
|
|
@@ -9388,6 +9549,24 @@ exports.chains = {
|
|
|
9388
9549
|
}
|
|
9389
9550
|
]
|
|
9390
9551
|
},
|
|
9552
|
+
1729: {
|
|
9553
|
+
name: 'Reya Network',
|
|
9554
|
+
chain: 'Reya',
|
|
9555
|
+
rpc: ['https://rpc.reya.network', 'wss://ws.reya.network'],
|
|
9556
|
+
faucets: [],
|
|
9557
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
9558
|
+
infoURL: 'https://reya.network',
|
|
9559
|
+
shortName: 'reya',
|
|
9560
|
+
chainId: 1729,
|
|
9561
|
+
networkId: 1729,
|
|
9562
|
+
explorers: [
|
|
9563
|
+
{
|
|
9564
|
+
name: 'Reya Network Explorer',
|
|
9565
|
+
url: 'https://explorer.reya.network',
|
|
9566
|
+
standard: 'EIP3091'
|
|
9567
|
+
}
|
|
9568
|
+
]
|
|
9569
|
+
},
|
|
9391
9570
|
1773: {
|
|
9392
9571
|
name: 'PartyChain',
|
|
9393
9572
|
chain: 'mainnet',
|
|
@@ -10100,6 +10279,27 @@ exports.chains = {
|
|
|
10100
10279
|
networkId: 1987,
|
|
10101
10280
|
slip44: 1987
|
|
10102
10281
|
},
|
|
10282
|
+
1992: {
|
|
10283
|
+
name: 'Hubble Exchange',
|
|
10284
|
+
chain: 'Hubblenet',
|
|
10285
|
+
icon: 'hubblenet',
|
|
10286
|
+
rpc: ['https://rpc.hubble.exchange', 'wss://ws-rpc.hubble.exchange'],
|
|
10287
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
10288
|
+
faucets: [],
|
|
10289
|
+
nativeCurrency: { name: 'USD Coin', symbol: 'USDC', decimals: 18 },
|
|
10290
|
+
infoURL: 'https://www.hubble.exchange',
|
|
10291
|
+
shortName: 'hubblenet',
|
|
10292
|
+
chainId: 1992,
|
|
10293
|
+
networkId: 1992,
|
|
10294
|
+
slip44: 60,
|
|
10295
|
+
explorers: [
|
|
10296
|
+
{
|
|
10297
|
+
name: 'routescan',
|
|
10298
|
+
url: 'https://explorer.hubble.exchange',
|
|
10299
|
+
standard: 'EIP3091'
|
|
10300
|
+
}
|
|
10301
|
+
]
|
|
10302
|
+
},
|
|
10103
10303
|
1994: {
|
|
10104
10304
|
name: 'Ekta',
|
|
10105
10305
|
chain: 'EKTA',
|
|
@@ -11012,7 +11212,9 @@ exports.chains = {
|
|
|
11012
11212
|
rpc: [
|
|
11013
11213
|
'https://evm.testnet.kava.io',
|
|
11014
11214
|
'https://kava-evm-testnet.rpc.thirdweb.com',
|
|
11015
|
-
'wss://wevm.testnet.kava.io'
|
|
11215
|
+
'wss://wevm.testnet.kava.io',
|
|
11216
|
+
'https://kava-testnet.drpc.org',
|
|
11217
|
+
'wss://kava-testnet.drpc.org'
|
|
11016
11218
|
],
|
|
11017
11219
|
faucets: ['https://faucet.kava.io'],
|
|
11018
11220
|
nativeCurrency: { name: 'TKava', symbol: 'TKAVA', decimals: 18 },
|
|
@@ -11042,7 +11244,9 @@ exports.chains = {
|
|
|
11042
11244
|
'wss://kava-evm-rpc.publicnode.com',
|
|
11043
11245
|
'https://evm.kava-rpc.com',
|
|
11044
11246
|
'https://rpc.ankr.com/kava_evm',
|
|
11045
|
-
'wss://wevm.kava-rpc.com'
|
|
11247
|
+
'wss://wevm.kava-rpc.com',
|
|
11248
|
+
'https://kava.drpc.org',
|
|
11249
|
+
'wss://kava.drpc.org'
|
|
11046
11250
|
],
|
|
11047
11251
|
faucets: [],
|
|
11048
11252
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
|
@@ -11220,6 +11424,27 @@ exports.chains = {
|
|
|
11220
11424
|
}
|
|
11221
11425
|
]
|
|
11222
11426
|
},
|
|
11427
|
+
2340: {
|
|
11428
|
+
name: 'Atleta Testnet',
|
|
11429
|
+
chain: 'Atleta',
|
|
11430
|
+
rpc: ['https://atleta-testnet-rpc.quark.blue:9944'],
|
|
11431
|
+
faucets: ['https://faucet.atleta.network'],
|
|
11432
|
+
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
|
11433
|
+
infoURL: 'https://atleta.network',
|
|
11434
|
+
shortName: 'atla',
|
|
11435
|
+
chainId: 2340,
|
|
11436
|
+
networkId: 2340,
|
|
11437
|
+
slip44: 1,
|
|
11438
|
+
icon: 'atleta',
|
|
11439
|
+
explorers: [
|
|
11440
|
+
{
|
|
11441
|
+
name: 'Atleta Testnet Explorer',
|
|
11442
|
+
icon: 'atleta',
|
|
11443
|
+
url: 'http://185.234.69.18/?rpc=wss%3A%2F%2Fatleta-testnet-rpc.quark.blue%3A9944#/explorer',
|
|
11444
|
+
standard: 'none'
|
|
11445
|
+
}
|
|
11446
|
+
]
|
|
11447
|
+
},
|
|
11223
11448
|
2357: {
|
|
11224
11449
|
name: '(deprecated) Kroma Sepolia',
|
|
11225
11450
|
title: '(deprecated) Kroma Testnet Sepolia',
|
|
@@ -11493,6 +11718,7 @@ exports.chains = {
|
|
|
11493
11718
|
chainId: 2522,
|
|
11494
11719
|
networkId: 2522,
|
|
11495
11720
|
slip44: 1,
|
|
11721
|
+
icon: 'fraxtal',
|
|
11496
11722
|
explorers: [
|
|
11497
11723
|
{
|
|
11498
11724
|
name: 'fraxscan',
|
|
@@ -11502,6 +11728,20 @@ exports.chains = {
|
|
|
11502
11728
|
],
|
|
11503
11729
|
status: 'active'
|
|
11504
11730
|
},
|
|
11731
|
+
2525: {
|
|
11732
|
+
name: 'inEVM Mainnet',
|
|
11733
|
+
chain: 'inEVM',
|
|
11734
|
+
icon: 'inevm',
|
|
11735
|
+
rpc: ['https://mainnet.rpc.inevm.com/http'],
|
|
11736
|
+
faucets: [],
|
|
11737
|
+
nativeCurrency: { name: 'Injective', symbol: 'INJ', decimals: 18 },
|
|
11738
|
+
infoURL: 'https://inevm.com',
|
|
11739
|
+
shortName: 'inevm',
|
|
11740
|
+
chainId: 2525,
|
|
11741
|
+
networkId: 2525,
|
|
11742
|
+
explorers: [],
|
|
11743
|
+
status: 'active'
|
|
11744
|
+
},
|
|
11505
11745
|
2559: {
|
|
11506
11746
|
name: 'Kortho Mainnet',
|
|
11507
11747
|
chain: 'Kortho Chain',
|
|
@@ -11746,6 +11986,31 @@ exports.chains = {
|
|
|
11746
11986
|
bridges: [{ url: 'https://gateway.boba.network' }]
|
|
11747
11987
|
}
|
|
11748
11988
|
},
|
|
11989
|
+
2911: {
|
|
11990
|
+
name: 'HYCHAIN',
|
|
11991
|
+
chainId: 2911,
|
|
11992
|
+
shortName: 'hychain',
|
|
11993
|
+
chain: 'ETH',
|
|
11994
|
+
networkId: 2911,
|
|
11995
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
|
11996
|
+
rpc: ['https://rpc.hychain.com/http'],
|
|
11997
|
+
faucets: [],
|
|
11998
|
+
infoURL: 'https://www.hychain.com',
|
|
11999
|
+
icon: 'hychain',
|
|
12000
|
+
explorers: [
|
|
12001
|
+
{
|
|
12002
|
+
name: 'blockscout',
|
|
12003
|
+
url: 'https://explorer.hychain.com',
|
|
12004
|
+
icon: 'hychain',
|
|
12005
|
+
standard: 'EIP3091'
|
|
12006
|
+
}
|
|
12007
|
+
],
|
|
12008
|
+
parent: {
|
|
12009
|
+
type: 'L2',
|
|
12010
|
+
chain: 'eip155-1',
|
|
12011
|
+
bridges: [{ url: 'https://bridge.hychain.com' }]
|
|
12012
|
+
}
|
|
12013
|
+
},
|
|
11749
12014
|
2941: {
|
|
11750
12015
|
name: 'Xenon Chain Testnet',
|
|
11751
12016
|
chain: 'XEN',
|
|
@@ -11884,12 +12149,12 @@ exports.chains = {
|
|
|
11884
12149
|
title: 'Bifrost Network Mainnet',
|
|
11885
12150
|
chain: 'BFC',
|
|
11886
12151
|
rpc: [
|
|
11887
|
-
'https://public-01.mainnet.
|
|
11888
|
-
'https://public-02.mainnet.
|
|
12152
|
+
'https://public-01.mainnet.bifrostnetwork.com/rpc',
|
|
12153
|
+
'https://public-02.mainnet.bifrostnetwork.com/rpc'
|
|
11889
12154
|
],
|
|
11890
12155
|
faucets: [],
|
|
11891
12156
|
nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 },
|
|
11892
|
-
infoURL: 'https://
|
|
12157
|
+
infoURL: 'https://bifrostnetwork.com',
|
|
11893
12158
|
shortName: 'bfc',
|
|
11894
12159
|
chainId: 3068,
|
|
11895
12160
|
networkId: 3068,
|
|
@@ -11897,7 +12162,7 @@ exports.chains = {
|
|
|
11897
12162
|
explorers: [
|
|
11898
12163
|
{
|
|
11899
12164
|
name: 'explorer-thebifrost',
|
|
11900
|
-
url: 'https://explorer.mainnet.
|
|
12165
|
+
url: 'https://explorer.mainnet.bifrostnetwork.com',
|
|
11901
12166
|
standard: 'EIP3091'
|
|
11902
12167
|
}
|
|
11903
12168
|
]
|
|
@@ -12356,16 +12621,25 @@ exports.chains = {
|
|
|
12356
12621
|
shortName: 'astrzk',
|
|
12357
12622
|
title: 'Astar zkEVM Mainnet',
|
|
12358
12623
|
chain: 'ETH',
|
|
12359
|
-
icon: '
|
|
12360
|
-
rpc: [],
|
|
12624
|
+
icon: 'astar',
|
|
12625
|
+
rpc: ['https://rpc.startale.com/astar-zkevm'],
|
|
12361
12626
|
faucets: [],
|
|
12362
12627
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
12363
12628
|
infoURL: 'https://astar.network',
|
|
12364
12629
|
chainId: 3776,
|
|
12365
12630
|
networkId: 3776,
|
|
12366
|
-
explorers: [
|
|
12367
|
-
|
|
12368
|
-
|
|
12631
|
+
explorers: [
|
|
12632
|
+
{
|
|
12633
|
+
name: 'Blockscout Astar zkEVM explorer',
|
|
12634
|
+
url: 'https://astar-zkevm.explorer.startale.com',
|
|
12635
|
+
standard: 'EIP3091'
|
|
12636
|
+
}
|
|
12637
|
+
],
|
|
12638
|
+
parent: {
|
|
12639
|
+
type: 'L2',
|
|
12640
|
+
chain: 'eip155-1',
|
|
12641
|
+
bridges: [{ url: 'https://portal.astar.network' }]
|
|
12642
|
+
}
|
|
12369
12643
|
},
|
|
12370
12644
|
3797: {
|
|
12371
12645
|
name: 'AlveyChain Mainnet',
|
|
@@ -12646,7 +12920,9 @@ exports.chains = {
|
|
|
12646
12920
|
rpc: [
|
|
12647
12921
|
'https://rpc.testnet.fantom.network',
|
|
12648
12922
|
'https://fantom-testnet-rpc.publicnode.com',
|
|
12649
|
-
'wss://fantom-testnet-rpc.publicnode.com'
|
|
12923
|
+
'wss://fantom-testnet-rpc.publicnode.com',
|
|
12924
|
+
'https://fantom-testnet.drpc.org',
|
|
12925
|
+
'wss://fantom-testnet.drpc.org'
|
|
12650
12926
|
],
|
|
12651
12927
|
faucets: ['https://faucet.fantom.network'],
|
|
12652
12928
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
|
@@ -12888,6 +13164,26 @@ exports.chains = {
|
|
|
12888
13164
|
}
|
|
12889
13165
|
]
|
|
12890
13166
|
},
|
|
13167
|
+
4157: {
|
|
13168
|
+
name: 'CrossFi Testnet',
|
|
13169
|
+
title: 'CrossFi Testnet',
|
|
13170
|
+
chain: 'XFI',
|
|
13171
|
+
rpc: ['https://rpc.testnet.ms'],
|
|
13172
|
+
faucets: [],
|
|
13173
|
+
nativeCurrency: { name: 'XFI', symbol: 'XFI', decimals: 18 },
|
|
13174
|
+
infoURL: 'https://crossfi.org/',
|
|
13175
|
+
shortName: 'crossfi-testnet',
|
|
13176
|
+
chainId: 4157,
|
|
13177
|
+
networkId: 4157,
|
|
13178
|
+
slip44: 1,
|
|
13179
|
+
explorers: [
|
|
13180
|
+
{
|
|
13181
|
+
name: 'CrossFi Testnet Scan',
|
|
13182
|
+
url: 'https://scan.testnet.ms',
|
|
13183
|
+
standard: 'EIP3091'
|
|
13184
|
+
}
|
|
13185
|
+
]
|
|
13186
|
+
},
|
|
12891
13187
|
4181: {
|
|
12892
13188
|
name: 'PHI Network V1',
|
|
12893
13189
|
chain: 'PHI V1',
|
|
@@ -13481,6 +13777,57 @@ exports.chains = {
|
|
|
13481
13777
|
status: 'incubating',
|
|
13482
13778
|
icon: 'syndicate'
|
|
13483
13779
|
},
|
|
13780
|
+
5102: {
|
|
13781
|
+
name: 'SIC Testnet',
|
|
13782
|
+
chain: 'SIC Testnet',
|
|
13783
|
+
rpc: ['https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz'],
|
|
13784
|
+
faucets: [],
|
|
13785
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13786
|
+
infoURL: 'https://www.fwb.help/',
|
|
13787
|
+
shortName: 'sic-testnet',
|
|
13788
|
+
chainId: 5102,
|
|
13789
|
+
networkId: 5102,
|
|
13790
|
+
explorers: [
|
|
13791
|
+
{
|
|
13792
|
+
name: 'blockscout',
|
|
13793
|
+
url: 'https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz',
|
|
13794
|
+
standard: 'EIP3091'
|
|
13795
|
+
}
|
|
13796
|
+
]
|
|
13797
|
+
},
|
|
13798
|
+
5103: {
|
|
13799
|
+
name: 'Coordinape Testnet',
|
|
13800
|
+
chain: 'Coordinape Testnet',
|
|
13801
|
+
rpc: ['https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz'],
|
|
13802
|
+
faucets: [],
|
|
13803
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13804
|
+
infoURL: 'https://coordinape.com/',
|
|
13805
|
+
shortName: 'coordinape-testnet',
|
|
13806
|
+
chainId: 5103,
|
|
13807
|
+
networkId: 5103
|
|
13808
|
+
},
|
|
13809
|
+
5104: {
|
|
13810
|
+
name: 'Charmverse Testnet',
|
|
13811
|
+
chain: 'Charmverse Testnet',
|
|
13812
|
+
rpc: ['https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz'],
|
|
13813
|
+
faucets: [],
|
|
13814
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13815
|
+
infoURL: 'https://charmverse.io/',
|
|
13816
|
+
shortName: 'charmverse-testnet',
|
|
13817
|
+
chainId: 5104,
|
|
13818
|
+
networkId: 5104
|
|
13819
|
+
},
|
|
13820
|
+
5105: {
|
|
13821
|
+
name: 'Superloyalty Testnet',
|
|
13822
|
+
chain: 'Superloyalty Testnet',
|
|
13823
|
+
rpc: ['https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz'],
|
|
13824
|
+
faucets: [],
|
|
13825
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13826
|
+
infoURL: 'https://www.superloyal.com/',
|
|
13827
|
+
shortName: 'superloyalty-testnet',
|
|
13828
|
+
chainId: 5105,
|
|
13829
|
+
networkId: 5105
|
|
13830
|
+
},
|
|
13484
13831
|
5165: {
|
|
13485
13832
|
name: 'Bahamut',
|
|
13486
13833
|
title: 'Bahamut mainnet',
|
|
@@ -13794,8 +14141,8 @@ exports.chains = {
|
|
|
13794
14141
|
rpc: [
|
|
13795
14142
|
'https://rpc.tanenbaum.io',
|
|
13796
14143
|
'wss://rpc.tanenbaum.io/wss',
|
|
13797
|
-
'https://syscoin-tanenbaum-evm
|
|
13798
|
-
'wss://syscoin-tanenbaum-evm
|
|
14144
|
+
'https://syscoin-tanenbaum-evm.publicnode.com',
|
|
14145
|
+
'wss://syscoin-tanenbaum-evm.publicnode.com'
|
|
13799
14146
|
],
|
|
13800
14147
|
faucets: ['https://faucet.tanenbaum.io'],
|
|
13801
14148
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
|
@@ -14664,14 +15011,9 @@ exports.chains = {
|
|
|
14664
15011
|
chain: 'Canto',
|
|
14665
15012
|
rpc: [
|
|
14666
15013
|
'https://canto.slingshot.finance',
|
|
14667
|
-
'https://canto.
|
|
15014
|
+
'https://canto-rpc.ansybl.io',
|
|
14668
15015
|
'https://mainnode.plexnode.org:8545',
|
|
14669
|
-
'https://canto.gravitychain.io/'
|
|
14670
|
-
'https://canto.evm.chandrastation.com/',
|
|
14671
|
-
'https://jsonrpc.canto.nodestake.top/',
|
|
14672
|
-
'https://canto.dexvaults.com/',
|
|
14673
|
-
'wss://canto.gravitychain.io:8546',
|
|
14674
|
-
'wss://canto.dexvaults.com/ws'
|
|
15016
|
+
'https://canto.gravitychain.io/'
|
|
14675
15017
|
],
|
|
14676
15018
|
faucets: [],
|
|
14677
15019
|
nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 },
|
|
@@ -14681,19 +15023,14 @@ exports.chains = {
|
|
|
14681
15023
|
networkId: 7700,
|
|
14682
15024
|
explorers: [
|
|
14683
15025
|
{
|
|
14684
|
-
name: 'Canto
|
|
14685
|
-
url: 'https://
|
|
14686
|
-
standard: '
|
|
14687
|
-
},
|
|
14688
|
-
{
|
|
14689
|
-
name: 'Canto Cosmos Explorer',
|
|
14690
|
-
url: 'https://cosmos-explorers.neobase.one',
|
|
14691
|
-
standard: 'none'
|
|
15026
|
+
name: 'Canto Explorer (OKLink)',
|
|
15027
|
+
url: 'https://www.oklink.com/canto',
|
|
15028
|
+
standard: 'EIP3091'
|
|
14692
15029
|
},
|
|
14693
15030
|
{
|
|
14694
15031
|
name: 'Canto EVM Explorer (Blockscout)',
|
|
14695
15032
|
url: 'https://tuber.build',
|
|
14696
|
-
standard: '
|
|
15033
|
+
standard: 'EIP3091'
|
|
14697
15034
|
},
|
|
14698
15035
|
{
|
|
14699
15036
|
name: 'dexguru',
|
|
@@ -14773,6 +15110,31 @@ exports.chains = {
|
|
|
14773
15110
|
}
|
|
14774
15111
|
]
|
|
14775
15112
|
},
|
|
15113
|
+
7778: {
|
|
15114
|
+
name: 'Orenium Mainnet Protocol',
|
|
15115
|
+
chain: 'ORE',
|
|
15116
|
+
rpc: [
|
|
15117
|
+
'https://validator-mainnet.orenium.org',
|
|
15118
|
+
'https://rpc-oracle-mainnet.orenium.org',
|
|
15119
|
+
'https://portalmainnet.orenium.org'
|
|
15120
|
+
],
|
|
15121
|
+
nativeCurrency: { name: 'ORENIUM', symbol: 'ORE', decimals: 18 },
|
|
15122
|
+
infoURL: 'https://orenium.org',
|
|
15123
|
+
shortName: 'ore',
|
|
15124
|
+
chainId: 7778,
|
|
15125
|
+
networkId: 7778,
|
|
15126
|
+
slip44: 1,
|
|
15127
|
+
icon: 'ore',
|
|
15128
|
+
faucets: [],
|
|
15129
|
+
explorers: [
|
|
15130
|
+
{
|
|
15131
|
+
name: 'ORE Mainnet Explorer',
|
|
15132
|
+
icon: 'ore',
|
|
15133
|
+
url: 'https://oreniumscan.org',
|
|
15134
|
+
standard: 'none'
|
|
15135
|
+
}
|
|
15136
|
+
]
|
|
15137
|
+
},
|
|
14776
15138
|
7860: {
|
|
14777
15139
|
name: 'MaalChain Testnet',
|
|
14778
15140
|
chain: 'MaalChain Testnet',
|
|
@@ -15060,8 +15422,8 @@ exports.chains = {
|
|
|
15060
15422
|
{
|
|
15061
15423
|
name: 'meerscan testnet',
|
|
15062
15424
|
icon: 'meer',
|
|
15063
|
-
url: 'https://qng
|
|
15064
|
-
standard: '
|
|
15425
|
+
url: 'https://testnet-qng.qitmeer.io',
|
|
15426
|
+
standard: 'EIP3091'
|
|
15065
15427
|
}
|
|
15066
15428
|
]
|
|
15067
15429
|
},
|
|
@@ -15463,6 +15825,25 @@ exports.chains = {
|
|
|
15463
15825
|
}
|
|
15464
15826
|
]
|
|
15465
15827
|
},
|
|
15828
|
+
8866: {
|
|
15829
|
+
name: 'SuperLumio',
|
|
15830
|
+
chain: 'SuperLumio',
|
|
15831
|
+
icon: 'superlumio',
|
|
15832
|
+
rpc: ['https://mainnet.lumio.io/'],
|
|
15833
|
+
faucets: [],
|
|
15834
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
15835
|
+
infoURL: 'https://lumio.io/',
|
|
15836
|
+
shortName: 'superlumio',
|
|
15837
|
+
chainId: 8866,
|
|
15838
|
+
networkId: 8866,
|
|
15839
|
+
explorers: [
|
|
15840
|
+
{
|
|
15841
|
+
name: 'Lumio explorer',
|
|
15842
|
+
url: 'https://explorer.lumio.io',
|
|
15843
|
+
standard: 'none'
|
|
15844
|
+
}
|
|
15845
|
+
]
|
|
15846
|
+
},
|
|
15466
15847
|
8880: {
|
|
15467
15848
|
name: 'Unique',
|
|
15468
15849
|
icon: 'unique',
|
|
@@ -15597,7 +15978,10 @@ exports.chains = {
|
|
|
15597
15978
|
chain: 'ORE',
|
|
15598
15979
|
rpc: [
|
|
15599
15980
|
'https://rpc-dev-testnet.orenium.org/',
|
|
15600
|
-
'https://rpc-testnet.orenium.org/'
|
|
15981
|
+
'https://rpc-testnet.orenium.org/',
|
|
15982
|
+
'https://rpc-orc.oredex.finance',
|
|
15983
|
+
'https://testnet-rpc.oredex.finance',
|
|
15984
|
+
'https://oredex-node.oredex.finance'
|
|
15601
15985
|
],
|
|
15602
15986
|
nativeCurrency: { name: 'ORENIUM', symbol: 'tORE', decimals: 18 },
|
|
15603
15987
|
infoURL: 'https://orenium.org',
|
|
@@ -16171,6 +16555,28 @@ exports.chains = {
|
|
|
16171
16555
|
}
|
|
16172
16556
|
]
|
|
16173
16557
|
},
|
|
16558
|
+
9898: {
|
|
16559
|
+
name: 'Larissa Chain',
|
|
16560
|
+
title: 'Larissa Chain',
|
|
16561
|
+
chain: 'Larissa',
|
|
16562
|
+
rpc: ['https://rpc.larissa.network'],
|
|
16563
|
+
faucets: [],
|
|
16564
|
+
nativeCurrency: { name: 'Larissa', symbol: 'LRS', decimals: 18 },
|
|
16565
|
+
infoURL: 'https://larissa.network',
|
|
16566
|
+
shortName: 'lrs',
|
|
16567
|
+
chainId: 9898,
|
|
16568
|
+
networkId: 1,
|
|
16569
|
+
slip44: 9898,
|
|
16570
|
+
status: 'active',
|
|
16571
|
+
icon: 'larissa',
|
|
16572
|
+
explorers: [
|
|
16573
|
+
{
|
|
16574
|
+
name: 'Larissa Scan',
|
|
16575
|
+
url: 'https://scan.larissa.network',
|
|
16576
|
+
standard: 'EIP3091'
|
|
16577
|
+
}
|
|
16578
|
+
]
|
|
16579
|
+
},
|
|
16174
16580
|
9977: {
|
|
16175
16581
|
name: 'Mind Smart Chain Testnet',
|
|
16176
16582
|
chain: 'tMIND',
|
|
@@ -16422,7 +16828,9 @@ exports.chains = {
|
|
|
16422
16828
|
'https://rpc.chiado.gnosis.gateway.fm',
|
|
16423
16829
|
'wss://rpc.chiadochain.net/wss',
|
|
16424
16830
|
'https://gnosis-chiado-rpc.publicnode.com',
|
|
16425
|
-
'wss://gnosis-chiado-rpc.publicnode.com'
|
|
16831
|
+
'wss://gnosis-chiado-rpc.publicnode.com',
|
|
16832
|
+
'https://gnosis-chiado.drpc.org',
|
|
16833
|
+
'wss://gnosis-chiado.drpc.org'
|
|
16426
16834
|
],
|
|
16427
16835
|
faucets: ['https://gnosisfaucet.com'],
|
|
16428
16836
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
|
@@ -16762,7 +17170,9 @@ exports.chains = {
|
|
|
16762
17170
|
rpc: [
|
|
16763
17171
|
'https://rpc.eth.haqq.network',
|
|
16764
17172
|
'https://haqq-evm-rpc.publicnode.com',
|
|
16765
|
-
'wss://haqq-evm-rpc.publicnode.com'
|
|
17173
|
+
'wss://haqq-evm-rpc.publicnode.com',
|
|
17174
|
+
'https://haqq.drpc.org',
|
|
17175
|
+
'wss://haqq.drpc.org'
|
|
16766
17176
|
],
|
|
16767
17177
|
faucets: [],
|
|
16768
17178
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
|
@@ -16802,6 +17212,25 @@ exports.chains = {
|
|
|
16802
17212
|
}
|
|
16803
17213
|
]
|
|
16804
17214
|
},
|
|
17215
|
+
11501: {
|
|
17216
|
+
name: 'BEVM Mainnet',
|
|
17217
|
+
chain: 'BEVM',
|
|
17218
|
+
rpc: ['https://rpc-mainnet-1.bevm.io/', 'https://rpc-mainnet-2.bevm.io/'],
|
|
17219
|
+
faucets: [],
|
|
17220
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
|
17221
|
+
infoURL: 'https://bevm.io',
|
|
17222
|
+
shortName: 'bevm',
|
|
17223
|
+
chainId: 11501,
|
|
17224
|
+
networkId: 11501,
|
|
17225
|
+
icon: 'bevm',
|
|
17226
|
+
explorers: [
|
|
17227
|
+
{
|
|
17228
|
+
name: 'bevm mainnet scan',
|
|
17229
|
+
url: 'https://scan-mainnet.bevm.io',
|
|
17230
|
+
standard: 'none'
|
|
17231
|
+
}
|
|
17232
|
+
]
|
|
17233
|
+
},
|
|
16805
17234
|
11503: {
|
|
16806
17235
|
name: 'BEVM Testnet',
|
|
16807
17236
|
chain: 'BEVM',
|
|
@@ -16809,10 +17238,10 @@ exports.chains = {
|
|
|
16809
17238
|
faucets: [],
|
|
16810
17239
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
|
16811
17240
|
infoURL: 'https://bevm.io',
|
|
16812
|
-
shortName: 'bevm',
|
|
17241
|
+
shortName: 'bevm-test',
|
|
16813
17242
|
chainId: 11503,
|
|
16814
17243
|
networkId: 11503,
|
|
16815
|
-
icon: '
|
|
17244
|
+
icon: 'bevm',
|
|
16816
17245
|
explorers: [
|
|
16817
17246
|
{
|
|
16818
17247
|
name: 'bevm testnet scan',
|
|
@@ -17170,7 +17599,11 @@ exports.chains = {
|
|
|
17170
17599
|
13371: {
|
|
17171
17600
|
name: 'Immutable zkEVM',
|
|
17172
17601
|
chain: 'Immutable zkEVM',
|
|
17173
|
-
rpc: [
|
|
17602
|
+
rpc: [
|
|
17603
|
+
'https://rpc.immutable.com',
|
|
17604
|
+
'https://immutable-zkevm.drpc.org',
|
|
17605
|
+
'wss://immutable-zkevm.drpc.org'
|
|
17606
|
+
],
|
|
17174
17607
|
faucets: ['https://docs.immutable.com/docs/zkEVM/guides/faucet'],
|
|
17175
17608
|
nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 },
|
|
17176
17609
|
infoURL: 'https://www.immutable.com',
|
|
@@ -17209,7 +17642,11 @@ exports.chains = {
|
|
|
17209
17642
|
13473: {
|
|
17210
17643
|
name: 'Immutable zkEVM Testnet',
|
|
17211
17644
|
chain: 'Immutable zkEVM',
|
|
17212
|
-
rpc: [
|
|
17645
|
+
rpc: [
|
|
17646
|
+
'https://rpc.testnet.immutable.com',
|
|
17647
|
+
'https://immutable-zkevm-testnet.drpc.org',
|
|
17648
|
+
'wss://immutable-zkevm-testnet.drpc.org'
|
|
17649
|
+
],
|
|
17213
17650
|
faucets: ['https://docs.immutable.com/docs/zkEVM/guides/faucet'],
|
|
17214
17651
|
nativeCurrency: { name: 'Test IMX', symbol: 'tIMX', decimals: 18 },
|
|
17215
17652
|
infoURL: 'https://www.immutable.com',
|
|
@@ -17502,7 +17939,9 @@ exports.chains = {
|
|
|
17502
17939
|
rpc: [
|
|
17503
17940
|
'https://rpc.holesky.ethpandaops.io',
|
|
17504
17941
|
'https://ethereum-holesky-rpc.publicnode.com',
|
|
17505
|
-
'wss://ethereum-holesky-rpc.publicnode.com'
|
|
17942
|
+
'wss://ethereum-holesky-rpc.publicnode.com',
|
|
17943
|
+
'https://holesky.drpc.org',
|
|
17944
|
+
'wss://holesky.drpc.org'
|
|
17506
17945
|
],
|
|
17507
17946
|
faucets: [
|
|
17508
17947
|
'https://faucet.holesky.ethpandaops.io',
|
|
@@ -18225,7 +18664,7 @@ exports.chains = {
|
|
|
18225
18664
|
explorers: [
|
|
18226
18665
|
{
|
|
18227
18666
|
name: 'Oasis Sapphire Explorer',
|
|
18228
|
-
url: 'https://explorer.
|
|
18667
|
+
url: 'https://explorer.oasis.io/mainnet/sapphire',
|
|
18229
18668
|
standard: 'EIP3091'
|
|
18230
18669
|
}
|
|
18231
18670
|
]
|
|
@@ -18235,8 +18674,8 @@ exports.chains = {
|
|
|
18235
18674
|
chain: 'Sapphire',
|
|
18236
18675
|
icon: 'oasis',
|
|
18237
18676
|
rpc: [
|
|
18238
|
-
'https://testnet.sapphire.oasis.
|
|
18239
|
-
'wss://testnet.sapphire.oasis.
|
|
18677
|
+
'https://testnet.sapphire.oasis.io',
|
|
18678
|
+
'wss://testnet.sapphire.oasis.io/ws'
|
|
18240
18679
|
],
|
|
18241
18680
|
faucets: [],
|
|
18242
18681
|
nativeCurrency: {
|
|
@@ -18252,7 +18691,7 @@ exports.chains = {
|
|
|
18252
18691
|
explorers: [
|
|
18253
18692
|
{
|
|
18254
18693
|
name: 'Oasis Sapphire Testnet Explorer',
|
|
18255
|
-
url: 'https://
|
|
18694
|
+
url: 'https://explorer.oasis.io/testnet/sapphire',
|
|
18256
18695
|
standard: 'EIP3091'
|
|
18257
18696
|
}
|
|
18258
18697
|
]
|
|
@@ -18467,6 +18906,27 @@ exports.chains = {
|
|
|
18467
18906
|
}
|
|
18468
18907
|
]
|
|
18469
18908
|
},
|
|
18909
|
+
29112: {
|
|
18910
|
+
name: 'HYCHAIN Testnet',
|
|
18911
|
+
chainId: 29112,
|
|
18912
|
+
shortName: 'hychain-testnet',
|
|
18913
|
+
chain: 'ETH',
|
|
18914
|
+
networkId: 29112,
|
|
18915
|
+
nativeCurrency: { name: 'TOPIA', symbol: 'TOPIA', decimals: 18 },
|
|
18916
|
+
rpc: ['https://testnet-rpc.hychain.com/http'],
|
|
18917
|
+
faucets: [],
|
|
18918
|
+
infoURL: 'https://www.hychain.com',
|
|
18919
|
+
icon: 'hychain',
|
|
18920
|
+
explorers: [
|
|
18921
|
+
{
|
|
18922
|
+
name: 'blockscout',
|
|
18923
|
+
url: 'https://testnet.explorer.hychain.com',
|
|
18924
|
+
icon: 'hychain',
|
|
18925
|
+
standard: 'EIP3091'
|
|
18926
|
+
}
|
|
18927
|
+
],
|
|
18928
|
+
parent: { type: 'L2', chain: 'eip155-58008', bridges: [] }
|
|
18929
|
+
},
|
|
18470
18930
|
29548: {
|
|
18471
18931
|
name: 'MCH Verse Mainnet',
|
|
18472
18932
|
chain: 'MCH Verse',
|
|
@@ -18845,7 +19305,11 @@ exports.chains = {
|
|
|
18845
19305
|
34443: {
|
|
18846
19306
|
name: 'Mode',
|
|
18847
19307
|
chain: 'ETH',
|
|
18848
|
-
rpc: [
|
|
19308
|
+
rpc: [
|
|
19309
|
+
'https://mainnet.mode.network',
|
|
19310
|
+
'https://mode.drpc.org',
|
|
19311
|
+
'wss://mode.drpc.org'
|
|
19312
|
+
],
|
|
18849
19313
|
faucets: [],
|
|
18850
19314
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
18851
19315
|
infoURL: 'https://docs.mode.network/',
|
|
@@ -19131,10 +19595,10 @@ exports.chains = {
|
|
|
19131
19595
|
chain: 'Emerald',
|
|
19132
19596
|
icon: 'oasis',
|
|
19133
19597
|
rpc: [
|
|
19134
|
-
'https://testnet.emerald.oasis.
|
|
19135
|
-
'wss://testnet.emerald.oasis.
|
|
19598
|
+
'https://testnet.emerald.oasis.io/',
|
|
19599
|
+
'wss://testnet.emerald.oasis.io/ws'
|
|
19136
19600
|
],
|
|
19137
|
-
faucets: ['https://faucet.testnet.oasis.
|
|
19601
|
+
faucets: ['https://faucet.testnet.oasis.io/'],
|
|
19138
19602
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
|
19139
19603
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
|
19140
19604
|
shortName: 'emerald-testnet',
|
|
@@ -19144,7 +19608,7 @@ exports.chains = {
|
|
|
19144
19608
|
explorers: [
|
|
19145
19609
|
{
|
|
19146
19610
|
name: 'Oasis Emerald Testnet Explorer',
|
|
19147
|
-
url: 'https://
|
|
19611
|
+
url: 'https://explorer.oasis.io/testnet/emerald',
|
|
19148
19612
|
standard: 'EIP3091'
|
|
19149
19613
|
}
|
|
19150
19614
|
]
|
|
@@ -19153,7 +19617,7 @@ exports.chains = {
|
|
|
19153
19617
|
name: 'Oasis Emerald',
|
|
19154
19618
|
chain: 'Emerald',
|
|
19155
19619
|
icon: 'oasis',
|
|
19156
|
-
rpc: ['https://emerald.oasis.
|
|
19620
|
+
rpc: ['https://emerald.oasis.io', 'wss://emerald.oasis.io/ws'],
|
|
19157
19621
|
faucets: [],
|
|
19158
19622
|
nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
|
|
19159
19623
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
|
@@ -19163,7 +19627,7 @@ exports.chains = {
|
|
|
19163
19627
|
explorers: [
|
|
19164
19628
|
{
|
|
19165
19629
|
name: 'Oasis Emerald Explorer',
|
|
19166
|
-
url: 'https://explorer.
|
|
19630
|
+
url: 'https://explorer.oasis.io/mainnet/emerald',
|
|
19167
19631
|
standard: 'EIP3091'
|
|
19168
19632
|
}
|
|
19169
19633
|
]
|
|
@@ -19512,12 +19976,12 @@ exports.chains = {
|
|
|
19512
19976
|
title: 'Bifrost Network Testnet',
|
|
19513
19977
|
chain: 'BFC',
|
|
19514
19978
|
rpc: [
|
|
19515
|
-
'https://public-01.testnet.
|
|
19516
|
-
'https://public-02.testnet.
|
|
19979
|
+
'https://public-01.testnet.bifrostnetwork.com/rpc',
|
|
19980
|
+
'https://public-02.testnet.bifrostnetwork.com/rpc'
|
|
19517
19981
|
],
|
|
19518
19982
|
faucets: [],
|
|
19519
19983
|
nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 },
|
|
19520
|
-
infoURL: 'https://
|
|
19984
|
+
infoURL: 'https://bifrostnetwork.com',
|
|
19521
19985
|
shortName: 'tbfc',
|
|
19522
19986
|
chainId: 49088,
|
|
19523
19987
|
networkId: 49088,
|
|
@@ -19526,7 +19990,7 @@ exports.chains = {
|
|
|
19526
19990
|
explorers: [
|
|
19527
19991
|
{
|
|
19528
19992
|
name: 'explorer-thebifrost',
|
|
19529
|
-
url: 'https://explorer.testnet.
|
|
19993
|
+
url: 'https://explorer.testnet.bifrostnetwork.com',
|
|
19530
19994
|
standard: 'EIP3091'
|
|
19531
19995
|
}
|
|
19532
19996
|
]
|
|
@@ -19685,7 +20149,7 @@ exports.chains = {
|
|
|
19685
20149
|
52014: {
|
|
19686
20150
|
name: 'Electroneum Mainnet',
|
|
19687
20151
|
chain: 'Electroneum',
|
|
19688
|
-
rpc: ['https://
|
|
20152
|
+
rpc: ['https://rpc.electroneum.com'],
|
|
19689
20153
|
faucets: [],
|
|
19690
20154
|
nativeCurrency: { name: 'Electroneum', symbol: 'ETN', decimals: 18 },
|
|
19691
20155
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -19920,7 +20384,9 @@ exports.chains = {
|
|
|
19920
20384
|
rpc: [
|
|
19921
20385
|
'https://rpc-tanenbaum.rollux.com',
|
|
19922
20386
|
'https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}',
|
|
19923
|
-
'wss://rpc-tanenbaum.rollux.com/wss'
|
|
20387
|
+
'wss://rpc-tanenbaum.rollux.com/wss',
|
|
20388
|
+
'https://rollux.rpc.tanenbaum.io',
|
|
20389
|
+
'wss://rollux.rpc.tanenbaum.io/wss'
|
|
19924
20390
|
],
|
|
19925
20391
|
faucets: ['https://rollux.id/faucetapp'],
|
|
19926
20392
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'TSYS', decimals: 18 },
|
|
@@ -21741,24 +22207,24 @@ exports.chains = {
|
|
|
21741
22207
|
status: 'deprecated'
|
|
21742
22208
|
},
|
|
21743
22209
|
101010: {
|
|
21744
|
-
name: '
|
|
21745
|
-
chain: '
|
|
21746
|
-
icon: '
|
|
21747
|
-
rpc: ['https://
|
|
21748
|
-
faucets: [
|
|
21749
|
-
nativeCurrency: { name: '
|
|
21750
|
-
infoURL: 'https://
|
|
21751
|
-
shortName: '
|
|
22210
|
+
name: 'Global Trust Network',
|
|
22211
|
+
chain: 'GTN',
|
|
22212
|
+
icon: 'gtn',
|
|
22213
|
+
rpc: ['https://gtn.stabilityprotocol.com'],
|
|
22214
|
+
faucets: [],
|
|
22215
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
|
22216
|
+
infoURL: 'https://stabilityprotocol.com',
|
|
22217
|
+
shortName: 'stabilityprotocol',
|
|
21752
22218
|
chainId: 101010,
|
|
21753
22219
|
networkId: 101010,
|
|
21754
|
-
slip44: 1,
|
|
21755
22220
|
explorers: [
|
|
21756
22221
|
{
|
|
21757
|
-
name: '
|
|
21758
|
-
url: 'https://
|
|
22222
|
+
name: 'blockscout',
|
|
22223
|
+
url: 'https://stability.blockscout.com',
|
|
21759
22224
|
standard: 'EIP3091'
|
|
21760
22225
|
}
|
|
21761
|
-
]
|
|
22226
|
+
],
|
|
22227
|
+
redFlags: ['reusedChainId']
|
|
21762
22228
|
},
|
|
21763
22229
|
103090: {
|
|
21764
22230
|
name: 'Crystaleum',
|
|
@@ -21799,6 +22265,25 @@ exports.chains = {
|
|
|
21799
22265
|
}
|
|
21800
22266
|
]
|
|
21801
22267
|
},
|
|
22268
|
+
105105: {
|
|
22269
|
+
name: 'Stratis Mainnet',
|
|
22270
|
+
chain: 'Stratis',
|
|
22271
|
+
rpc: ['https://rpc.stratisevm.com'],
|
|
22272
|
+
faucets: [],
|
|
22273
|
+
nativeCurrency: { name: 'Stratis', symbol: 'STRAX', decimals: 18 },
|
|
22274
|
+
infoURL: 'https://www.stratisplatform.com',
|
|
22275
|
+
shortName: 'stratis',
|
|
22276
|
+
chainId: 105105,
|
|
22277
|
+
networkId: 105105,
|
|
22278
|
+
icon: 'stratis',
|
|
22279
|
+
explorers: [
|
|
22280
|
+
{
|
|
22281
|
+
name: 'Stratis Explorer',
|
|
22282
|
+
url: 'https://explorer.stratisevm.com',
|
|
22283
|
+
standard: 'EIP3091'
|
|
22284
|
+
}
|
|
22285
|
+
]
|
|
22286
|
+
},
|
|
21802
22287
|
108801: {
|
|
21803
22288
|
name: 'BROChain Mainnet',
|
|
21804
22289
|
chain: 'BRO',
|
|
@@ -22263,7 +22748,12 @@ exports.chains = {
|
|
|
22263
22748
|
chain: 'ETH',
|
|
22264
22749
|
status: 'active',
|
|
22265
22750
|
icon: 'taiko',
|
|
22266
|
-
rpc: [
|
|
22751
|
+
rpc: [
|
|
22752
|
+
'https://rpc.katla.taiko.xyz',
|
|
22753
|
+
'wss://rpc.katla.taiko.xyz',
|
|
22754
|
+
'https://taiko-katla.drpc.org',
|
|
22755
|
+
'wss://taiko-katla.drpc.org'
|
|
22756
|
+
],
|
|
22267
22757
|
faucets: [],
|
|
22268
22758
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
22269
22759
|
infoURL: 'https://taiko.xyz',
|
|
@@ -22912,7 +23402,9 @@ exports.chains = {
|
|
|
22912
23402
|
'https://rpc.ankr.com/filecoin_testnet',
|
|
22913
23403
|
'https://filecoin-calibration.chainstacklabs.com/rpc/v1',
|
|
22914
23404
|
'https://filecoin-calibration.chainup.net/rpc/v1',
|
|
22915
|
-
'https://calibration.filfox.info/rpc/v1'
|
|
23405
|
+
'https://calibration.filfox.info/rpc/v1',
|
|
23406
|
+
'https://filecoin-calibration.drpc.org',
|
|
23407
|
+
'wss://filecoin-calibration.drpc.org'
|
|
22916
23408
|
],
|
|
22917
23409
|
faucets: ['https://faucet.calibration.fildev.network/'],
|
|
22918
23410
|
nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 },
|
|
@@ -23582,22 +24074,22 @@ exports.chains = {
|
|
|
23582
24074
|
]
|
|
23583
24075
|
},
|
|
23584
24076
|
513100: {
|
|
23585
|
-
name: '
|
|
24077
|
+
name: 'DisChain',
|
|
23586
24078
|
chainId: 513100,
|
|
23587
24079
|
networkId: 513100,
|
|
23588
|
-
shortName: '
|
|
23589
|
-
chain: '
|
|
23590
|
-
nativeCurrency: { name: '
|
|
23591
|
-
rpc: ['https://rpc.
|
|
24080
|
+
shortName: 'dis',
|
|
24081
|
+
chain: 'DIS',
|
|
24082
|
+
nativeCurrency: { name: 'DisChain', symbol: 'DIS', decimals: 18 },
|
|
24083
|
+
rpc: ['https://rpc.dischain.xyz'],
|
|
23592
24084
|
faucets: [],
|
|
23593
24085
|
explorers: [
|
|
23594
24086
|
{
|
|
23595
|
-
name: '
|
|
23596
|
-
url: 'https://www.oklink.com/
|
|
24087
|
+
name: 'DisChain',
|
|
24088
|
+
url: 'https://www.oklink.com/dis',
|
|
23597
24089
|
standard: 'EIP3091'
|
|
23598
24090
|
}
|
|
23599
24091
|
],
|
|
23600
|
-
infoURL: 'https://
|
|
24092
|
+
infoURL: 'https://dischain.xyz'
|
|
23601
24093
|
},
|
|
23602
24094
|
534351: {
|
|
23603
24095
|
name: 'Scroll Sepolia Testnet',
|
|
@@ -23849,6 +24341,28 @@ exports.chains = {
|
|
|
23849
24341
|
}
|
|
23850
24342
|
]
|
|
23851
24343
|
},
|
|
24344
|
+
696969: {
|
|
24345
|
+
name: 'Galadriel Testnet',
|
|
24346
|
+
chain: 'Galadriel',
|
|
24347
|
+
rpc: ['https://testnet.galadriel.com'],
|
|
24348
|
+
faucets: ['https://docs.galadriel.com/faucet'],
|
|
24349
|
+
nativeCurrency: {
|
|
24350
|
+
name: 'Galadriel Testnet token',
|
|
24351
|
+
symbol: 'GAL',
|
|
24352
|
+
decimals: 18
|
|
24353
|
+
},
|
|
24354
|
+
infoURL: 'https://galadriel.com',
|
|
24355
|
+
shortName: 'galadriel-testnet',
|
|
24356
|
+
chainId: 696969,
|
|
24357
|
+
networkId: 696969,
|
|
24358
|
+
explorers: [
|
|
24359
|
+
{
|
|
24360
|
+
name: 'Galadriel Explorer',
|
|
24361
|
+
url: 'https://explorer.galadriel.com',
|
|
24362
|
+
standard: 'none'
|
|
24363
|
+
}
|
|
24364
|
+
]
|
|
24365
|
+
},
|
|
23852
24366
|
710420: {
|
|
23853
24367
|
name: 'Tiltyard Mainnet Subnet',
|
|
23854
24368
|
chain: 'TILTYARD',
|
|
@@ -23979,6 +24493,58 @@ exports.chains = {
|
|
|
23979
24493
|
}
|
|
23980
24494
|
]
|
|
23981
24495
|
},
|
|
24496
|
+
810180: {
|
|
24497
|
+
name: 'zkLink Nova Mainnet',
|
|
24498
|
+
chain: 'ETH',
|
|
24499
|
+
rpc: ['https://rpc.zklink.io', 'wss://rpc.zklink.io'],
|
|
24500
|
+
faucets: [],
|
|
24501
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
24502
|
+
infoURL: 'https://zklink.io',
|
|
24503
|
+
shortName: 'zklink-nova',
|
|
24504
|
+
chainId: 810180,
|
|
24505
|
+
networkId: 810180,
|
|
24506
|
+
slip44: 1,
|
|
24507
|
+
icon: 'zklink-nova',
|
|
24508
|
+
explorers: [
|
|
24509
|
+
{
|
|
24510
|
+
name: 'zkLink Nova Block Explorer',
|
|
24511
|
+
url: 'https://explorer.zklink.io',
|
|
24512
|
+
icon: 'zklink-nova',
|
|
24513
|
+
standard: 'EIP3091'
|
|
24514
|
+
}
|
|
24515
|
+
],
|
|
24516
|
+
parent: {
|
|
24517
|
+
type: 'L2',
|
|
24518
|
+
chain: 'eip155-59144',
|
|
24519
|
+
bridges: [{ url: 'https://portal.zklink.io' }]
|
|
24520
|
+
}
|
|
24521
|
+
},
|
|
24522
|
+
810182: {
|
|
24523
|
+
name: 'zkLink Nova Goerli Testnet',
|
|
24524
|
+
chain: 'ETH',
|
|
24525
|
+
rpc: ['https://goerli.rpc.zklink.io', 'wss://goerli.rpc.zklink.io'],
|
|
24526
|
+
faucets: [],
|
|
24527
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
24528
|
+
infoURL: 'https://zklink.io',
|
|
24529
|
+
shortName: 'zklink-nova-goerli',
|
|
24530
|
+
chainId: 810182,
|
|
24531
|
+
networkId: 810182,
|
|
24532
|
+
slip44: 1,
|
|
24533
|
+
icon: 'zklink-nova',
|
|
24534
|
+
explorers: [
|
|
24535
|
+
{
|
|
24536
|
+
name: 'zkLink Nova Block Explorer',
|
|
24537
|
+
url: 'https://goerli.explorer.zklink.io',
|
|
24538
|
+
icon: 'zklink-nova',
|
|
24539
|
+
standard: 'EIP3091'
|
|
24540
|
+
}
|
|
24541
|
+
],
|
|
24542
|
+
parent: {
|
|
24543
|
+
type: 'L2',
|
|
24544
|
+
chain: 'eip155-59140',
|
|
24545
|
+
bridges: [{ url: 'https://goerli.portal.zklink.io' }]
|
|
24546
|
+
}
|
|
24547
|
+
},
|
|
23982
24548
|
827431: {
|
|
23983
24549
|
name: 'CURVE Mainnet',
|
|
23984
24550
|
chain: 'CURVE',
|
|
@@ -24295,7 +24861,9 @@ exports.chains = {
|
|
|
24295
24861
|
icon: 'astarzk',
|
|
24296
24862
|
rpc: [
|
|
24297
24863
|
'https://rpc.zkatana.gelato.digital',
|
|
24298
|
-
'https://rpc.startale.com/zkatana'
|
|
24864
|
+
'https://rpc.startale.com/zkatana',
|
|
24865
|
+
'https://astar-zkatana.drpc.org',
|
|
24866
|
+
'wss://astar-zkatana.drpc.org'
|
|
24299
24867
|
],
|
|
24300
24868
|
faucets: [],
|
|
24301
24869
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -24548,7 +25116,11 @@ exports.chains = {
|
|
|
24548
25116
|
3441005: {
|
|
24549
25117
|
name: 'Manta Pacific Testnet',
|
|
24550
25118
|
chain: 'Manta Pacific',
|
|
24551
|
-
rpc: [
|
|
25119
|
+
rpc: [
|
|
25120
|
+
'https://manta-testnet.calderachain.xyz/http',
|
|
25121
|
+
'https://manta-pacific-testnet.drpc.org',
|
|
25122
|
+
'wss://manta-pacific-testnet.drpc.org'
|
|
25123
|
+
],
|
|
24552
25124
|
faucets: [],
|
|
24553
25125
|
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
|
24554
25126
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -24566,6 +25138,27 @@ exports.chains = {
|
|
|
24566
25138
|
}
|
|
24567
25139
|
]
|
|
24568
25140
|
},
|
|
25141
|
+
3441006: {
|
|
25142
|
+
name: 'Manta Pacific Sepolia Testnet',
|
|
25143
|
+
chain: 'Manta Pacific',
|
|
25144
|
+
rpc: ['https://pacific-rpc.sepolia-testnet.manta.network/http'],
|
|
25145
|
+
faucets: [],
|
|
25146
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
25147
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
25148
|
+
infoURL: 'https://manta-testnet.caldera.dev/',
|
|
25149
|
+
shortName: 'mantaSepoliaTestnet',
|
|
25150
|
+
chainId: 3441006,
|
|
25151
|
+
networkId: 3441006,
|
|
25152
|
+
slip44: 1,
|
|
25153
|
+
icon: 'manta',
|
|
25154
|
+
explorers: [
|
|
25155
|
+
{
|
|
25156
|
+
name: 'manta-testnet Explorer',
|
|
25157
|
+
url: 'https://pacific-explorer.sepolia-testnet.manta.network',
|
|
25158
|
+
standard: 'EIP3091'
|
|
25159
|
+
}
|
|
25160
|
+
]
|
|
25161
|
+
},
|
|
24569
25162
|
4000003: {
|
|
24570
25163
|
name: 'AltLayer Zero Gas Network',
|
|
24571
25164
|
chain: 'ETH',
|
|
@@ -24628,7 +25221,7 @@ exports.chains = {
|
|
|
24628
25221
|
5201420: {
|
|
24629
25222
|
name: 'Electroneum Testnet',
|
|
24630
25223
|
chain: 'Electroneum',
|
|
24631
|
-
rpc: ['https://
|
|
25224
|
+
rpc: ['https://testnet-rpc.electroneum.com'],
|
|
24632
25225
|
faucets: [],
|
|
24633
25226
|
nativeCurrency: { name: 'Electroneum', symbol: 'ETN', decimals: 18 },
|
|
24634
25227
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -24723,7 +25316,7 @@ exports.chains = {
|
|
|
24723
25316
|
networkId: 6038361,
|
|
24724
25317
|
explorers: [
|
|
24725
25318
|
{
|
|
24726
|
-
name: 'Blockscout zKyoto
|
|
25319
|
+
name: 'Blockscout zKyoto explorer',
|
|
24727
25320
|
url: 'https://astar-zkyoto.blockscout.com',
|
|
24728
25321
|
standard: 'EIP3091'
|
|
24729
25322
|
}
|
|
@@ -24735,8 +25328,7 @@ exports.chains = {
|
|
|
24735
25328
|
{ url: 'https://portal.astar.network' },
|
|
24736
25329
|
{ url: 'https://bridge.gelato.network/bridge/astar-zkyoto' }
|
|
24737
25330
|
]
|
|
24738
|
-
}
|
|
24739
|
-
status: 'incubating'
|
|
25331
|
+
}
|
|
24740
25332
|
},
|
|
24741
25333
|
7225878: {
|
|
24742
25334
|
name: 'Saakuru Mainnet',
|
|
@@ -25015,7 +25607,9 @@ exports.chains = {
|
|
|
25015
25607
|
'https://sepolia.gateway.tenderly.co',
|
|
25016
25608
|
'wss://sepolia.gateway.tenderly.co',
|
|
25017
25609
|
'https://ethereum-sepolia-rpc.publicnode.com',
|
|
25018
|
-
'wss://ethereum-sepolia-rpc.publicnode.com'
|
|
25610
|
+
'wss://ethereum-sepolia-rpc.publicnode.com',
|
|
25611
|
+
'https://sepolia.drpc.org',
|
|
25612
|
+
'wss://sepolia.drpc.org'
|
|
25019
25613
|
],
|
|
25020
25614
|
faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'],
|
|
25021
25615
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -25040,7 +25634,11 @@ exports.chains = {
|
|
|
25040
25634
|
11155420: {
|
|
25041
25635
|
name: 'OP Sepolia Testnet',
|
|
25042
25636
|
chain: 'ETH',
|
|
25043
|
-
rpc: [
|
|
25637
|
+
rpc: [
|
|
25638
|
+
'https://sepolia.optimism.io',
|
|
25639
|
+
'https://optimism-sepolia.drpc.org',
|
|
25640
|
+
'wss://optimism-sepolia.drpc.org'
|
|
25641
|
+
],
|
|
25044
25642
|
faucets: ['https://app.optimism.io/faucet'],
|
|
25045
25643
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
25046
25644
|
infoURL: 'https://optimism.io',
|
|
@@ -25125,6 +25723,26 @@ exports.chains = {
|
|
|
25125
25723
|
chainId: 18289463,
|
|
25126
25724
|
networkId: 18289463
|
|
25127
25725
|
},
|
|
25726
|
+
20180427: {
|
|
25727
|
+
name: 'Stability Testnet',
|
|
25728
|
+
chain: 'stabilityTestnet',
|
|
25729
|
+
icon: 'stabilitytestnet',
|
|
25730
|
+
rpc: ['https://free.testnet.stabilityprotocol.com'],
|
|
25731
|
+
faucets: [],
|
|
25732
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
|
25733
|
+
infoURL: 'https://stabilityprotocol.com',
|
|
25734
|
+
shortName: 'stabilitytestnet',
|
|
25735
|
+
chainId: 20180427,
|
|
25736
|
+
networkId: 20180427,
|
|
25737
|
+
slip44: 1,
|
|
25738
|
+
explorers: [
|
|
25739
|
+
{
|
|
25740
|
+
name: 'blockscout',
|
|
25741
|
+
url: 'https://stability-testnet.blockscout.com',
|
|
25742
|
+
standard: 'EIP3091'
|
|
25743
|
+
}
|
|
25744
|
+
]
|
|
25745
|
+
},
|
|
25128
25746
|
20180430: {
|
|
25129
25747
|
name: 'SmartMesh Mainnet',
|
|
25130
25748
|
chain: 'Spectrum',
|
|
@@ -25493,6 +26111,27 @@ exports.chains = {
|
|
|
25493
26111
|
},
|
|
25494
26112
|
65100001: {
|
|
25495
26113
|
name: 'Autonity Piccadilly (Barada) Testnet',
|
|
26114
|
+
status: 'deprecated',
|
|
26115
|
+
chain: 'AUT',
|
|
26116
|
+
rpc: [],
|
|
26117
|
+
faucets: [],
|
|
26118
|
+
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|
|
26119
|
+
infoURL: 'https://autonity.org/',
|
|
26120
|
+
shortName: 'piccadilly-01',
|
|
26121
|
+
chainId: 65100001,
|
|
26122
|
+
networkId: 65100001,
|
|
26123
|
+
slip44: 1,
|
|
26124
|
+
icon: 'autonity',
|
|
26125
|
+
explorers: [
|
|
26126
|
+
{
|
|
26127
|
+
name: 'autonity-blockscout',
|
|
26128
|
+
url: 'https://piccadilly.autonity.org',
|
|
26129
|
+
standard: 'EIP3091'
|
|
26130
|
+
}
|
|
26131
|
+
]
|
|
26132
|
+
},
|
|
26133
|
+
65100002: {
|
|
26134
|
+
name: 'Autonity Piccadilly (Sumida) Testnet',
|
|
25496
26135
|
chain: 'AUT',
|
|
25497
26136
|
rpc: [
|
|
25498
26137
|
'https://rpc1.piccadilly.autonity.org/',
|
|
@@ -25501,9 +26140,9 @@ exports.chains = {
|
|
|
25501
26140
|
faucets: [],
|
|
25502
26141
|
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|
|
25503
26142
|
infoURL: 'https://autonity.org/',
|
|
25504
|
-
shortName: 'piccadilly-
|
|
25505
|
-
chainId:
|
|
25506
|
-
networkId:
|
|
26143
|
+
shortName: 'piccadilly-02',
|
|
26144
|
+
chainId: 65100002,
|
|
26145
|
+
networkId: 65100002,
|
|
25507
26146
|
slip44: 1,
|
|
25508
26147
|
icon: 'autonity',
|
|
25509
26148
|
explorers: [
|
|
@@ -25600,7 +26239,11 @@ exports.chains = {
|
|
|
25600
26239
|
168587773: {
|
|
25601
26240
|
name: 'Blast Sepolia Testnet',
|
|
25602
26241
|
chain: 'ETH',
|
|
25603
|
-
rpc: [
|
|
26242
|
+
rpc: [
|
|
26243
|
+
'https://sepolia.blast.io',
|
|
26244
|
+
'https://blast-sepolia.drpc.org',
|
|
26245
|
+
'wss://blast-sepolia.drpc.org'
|
|
26246
|
+
],
|
|
25604
26247
|
faucets: ['https://faucet.quicknode.com/blast/sepolia'],
|
|
25605
26248
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
25606
26249
|
infoURL: 'https://blast.io/',
|
|
@@ -25670,7 +26313,11 @@ exports.chains = {
|
|
|
25670
26313
|
245022926: {
|
|
25671
26314
|
name: 'Neon EVM Devnet',
|
|
25672
26315
|
chain: 'Solana',
|
|
25673
|
-
rpc: [
|
|
26316
|
+
rpc: [
|
|
26317
|
+
'https://devnet.neonevm.org',
|
|
26318
|
+
'https://neon-evm-devnet.drpc.org',
|
|
26319
|
+
'wss://neon-evm-devnet.drpc.org'
|
|
26320
|
+
],
|
|
25674
26321
|
faucets: ['https://neonfaucet.org'],
|
|
25675
26322
|
icon: 'neon',
|
|
25676
26323
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
|
@@ -25695,7 +26342,11 @@ exports.chains = {
|
|
|
25695
26342
|
245022934: {
|
|
25696
26343
|
name: 'Neon EVM Mainnet',
|
|
25697
26344
|
chain: 'Solana',
|
|
25698
|
-
rpc: [
|
|
26345
|
+
rpc: [
|
|
26346
|
+
'https://neon-proxy-mainnet.solana.p2p.org',
|
|
26347
|
+
'https://neon-evm.drpc.org',
|
|
26348
|
+
'wss://neon-evm.drpc.org'
|
|
26349
|
+
],
|
|
25699
26350
|
faucets: [],
|
|
25700
26351
|
icon: 'neon',
|
|
25701
26352
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|
|
@@ -26072,7 +26723,11 @@ exports.chains = {
|
|
|
26072
26723
|
1313161554: {
|
|
26073
26724
|
name: 'Aurora Mainnet',
|
|
26074
26725
|
chain: 'NEAR',
|
|
26075
|
-
rpc: [
|
|
26726
|
+
rpc: [
|
|
26727
|
+
'https://mainnet.aurora.dev',
|
|
26728
|
+
'https://aurora.drpc.org',
|
|
26729
|
+
'wss://aurora.drpc.org'
|
|
26730
|
+
],
|
|
26076
26731
|
faucets: [],
|
|
26077
26732
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
26078
26733
|
infoURL: 'https://aurora.dev',
|
|
@@ -26090,7 +26745,11 @@ exports.chains = {
|
|
|
26090
26745
|
1313161555: {
|
|
26091
26746
|
name: 'Aurora Testnet',
|
|
26092
26747
|
chain: 'NEAR',
|
|
26093
|
-
rpc: [
|
|
26748
|
+
rpc: [
|
|
26749
|
+
'https://testnet.aurora.dev/',
|
|
26750
|
+
'https://aurora-testnet.drpc.org',
|
|
26751
|
+
'wss://aurora-testnet.drpc.org'
|
|
26752
|
+
],
|
|
26094
26753
|
faucets: [],
|
|
26095
26754
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
26096
26755
|
infoURL: 'https://aurora.dev',
|
|
@@ -26295,7 +26954,9 @@ exports.chains = {
|
|
|
26295
26954
|
'https://api.s0.t.hmny.io',
|
|
26296
26955
|
'https://rpc.ankr.com/harmony',
|
|
26297
26956
|
'https://harmony.api.onfinality.io/public',
|
|
26298
|
-
'https://1rpc.io/one'
|
|
26957
|
+
'https://1rpc.io/one',
|
|
26958
|
+
'https://harmony-0.drpc.org',
|
|
26959
|
+
'wss://harmony-0.drpc.org'
|
|
26299
26960
|
],
|
|
26300
26961
|
faucets: [],
|
|
26301
26962
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
@@ -26316,7 +26977,11 @@ exports.chains = {
|
|
|
26316
26977
|
1666600001: {
|
|
26317
26978
|
name: 'Harmony Mainnet Shard 1',
|
|
26318
26979
|
chain: 'Harmony',
|
|
26319
|
-
rpc: [
|
|
26980
|
+
rpc: [
|
|
26981
|
+
'https://api.s1.t.hmny.io',
|
|
26982
|
+
'https://harmony-1.drpc.org',
|
|
26983
|
+
'wss://harmony-1.drpc.org'
|
|
26984
|
+
],
|
|
26320
26985
|
faucets: [],
|
|
26321
26986
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
26322
26987
|
infoURL: 'https://www.harmony.one/',
|