eth-chainlist 0.0.231 → 0.0.233
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +219 -66
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.233 (2023-09-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.232 ([cdbb5e3](https://github.com/poowf/eth-chainlist/commit/cdbb5e3c6c1acf0d03f655bfb351a1d027958aae))
|
9
|
+
* update chain data ([e0a319a](https://github.com/poowf/eth-chainlist/commit/e0a319acb698b545052673eb238b97e038df4daa))
|
10
|
+
|
11
|
+
### 0.0.232 (2023-09-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.231 ([46d2d08](https://github.com/poowf/eth-chainlist/commit/46d2d0857d7b49a1d5ac5d5ec837540445a1c002))
|
17
|
+
* update chain data ([fc47173](https://github.com/poowf/eth-chainlist/commit/fc47173a78e48b63e342f7df3246ff32f75c6c65))
|
18
|
+
|
3
19
|
### 0.0.231 (2023-09-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -9,6 +9,7 @@ const chainArray = [
|
|
9
9
|
'https://api.mycryptoapi.com/eth',
|
10
10
|
'https://cloudflare-eth.com',
|
11
11
|
'https://ethereum.publicnode.com',
|
12
|
+
'wss://ethereum.publicnode.com',
|
12
13
|
'https://mainnet.gateway.tenderly.co',
|
13
14
|
'wss://mainnet.gateway.tenderly.co'
|
14
15
|
],
|
@@ -108,6 +109,7 @@ const chainArray = [
|
|
108
109
|
'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
|
109
110
|
'https://rpc.goerli.mudit.blog/',
|
110
111
|
'https://ethereum-goerli.publicnode.com',
|
112
|
+
'wss://ethereum-goerli.publicnode.com',
|
111
113
|
'https://goerli.gateway.tenderly.co',
|
112
114
|
'wss://goerli.gateway.tenderly.co'
|
113
115
|
],
|
@@ -203,6 +205,7 @@ const chainArray = [
|
|
203
205
|
rpc: [
|
204
206
|
'https://mainnet.optimism.io',
|
205
207
|
'https://optimism.publicnode.com',
|
208
|
+
'wss://optimism.publicnode.com',
|
206
209
|
'https://optimism.gateway.tenderly.co',
|
207
210
|
'wss://optimism.gateway.tenderly.co'
|
208
211
|
],
|
@@ -375,7 +378,7 @@ const chainArray = [
|
|
375
378
|
name: 'Elastos Smart Chain',
|
376
379
|
chain: 'ETH',
|
377
380
|
rpc: [ 'https://api.elastos.io/eth' ],
|
378
|
-
faucets: [
|
381
|
+
faucets: [],
|
379
382
|
nativeCurrency: { name: 'Elastos', symbol: 'ELA', decimals: 18 },
|
380
383
|
infoURL: 'https://www.elastos.org/',
|
381
384
|
shortName: 'esc',
|
@@ -445,7 +448,11 @@ const chainArray = [
|
|
445
448
|
{
|
446
449
|
name: 'Cronos Mainnet',
|
447
450
|
chain: 'CRO',
|
448
|
-
rpc: [
|
451
|
+
rpc: [
|
452
|
+
'https://evm.cronos.org',
|
453
|
+
'https://cronos-evm.publicnode.com',
|
454
|
+
'wss://cronos-evm.publicnode.com'
|
455
|
+
],
|
449
456
|
features: [ { name: 'EIP1559' } ],
|
450
457
|
faucets: [],
|
451
458
|
nativeCurrency: { name: 'Cronos', symbol: 'CRO', decimals: 18 },
|
@@ -542,7 +549,7 @@ const chainArray = [
|
|
542
549
|
name: 'RSK Mainnet',
|
543
550
|
chain: 'RSK',
|
544
551
|
rpc: [ 'https://public-node.rsk.co', 'https://mycrypto.rsk.co' ],
|
545
|
-
faucets: [
|
552
|
+
faucets: [],
|
546
553
|
nativeCurrency: { name: 'Smart Bitcoin', symbol: 'RBTC', decimals: 18 },
|
547
554
|
infoURL: 'https://rsk.co',
|
548
555
|
shortName: 'rsk',
|
@@ -1060,9 +1067,10 @@ const chainArray = [
|
|
1060
1067
|
'https://bsc-dataseed3.ninicoin.io',
|
1061
1068
|
'https://bsc-dataseed4.ninicoin.io',
|
1062
1069
|
'https://bsc.publicnode.com',
|
1070
|
+
'wss://bsc.publicnode.com',
|
1063
1071
|
'wss://bsc-ws-node.nariox.org'
|
1064
1072
|
],
|
1065
|
-
faucets: [
|
1073
|
+
faucets: [],
|
1066
1074
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
1067
1075
|
infoURL: 'https://www.bnbchain.org/en',
|
1068
1076
|
shortName: 'bnb',
|
@@ -1085,7 +1093,8 @@ const chainArray = [
|
|
1085
1093
|
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
1086
1094
|
'https://syscoin.public-rpc.com',
|
1087
1095
|
'wss://rpc.syscoin.org/wss',
|
1088
|
-
'https://syscoin-evm.publicnode.com'
|
1096
|
+
'https://syscoin-evm.publicnode.com',
|
1097
|
+
'wss://syscoin-evm.publicnode.com'
|
1089
1098
|
],
|
1090
1099
|
faucets: [ 'https://faucet.syscoin.org' ],
|
1091
1100
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
@@ -1146,7 +1155,7 @@ const chainArray = [
|
|
1146
1155
|
name: 'GoChain',
|
1147
1156
|
chain: 'GO',
|
1148
1157
|
rpc: [ 'https://rpc.gochain.io' ],
|
1149
|
-
faucets: [
|
1158
|
+
faucets: [],
|
1150
1159
|
nativeCurrency: { name: 'GoChain Ether', symbol: 'GO', decimals: 18 },
|
1151
1160
|
infoURL: 'https://gochain.io',
|
1152
1161
|
shortName: 'go',
|
@@ -1268,7 +1277,7 @@ const chainArray = [
|
|
1268
1277
|
'https://exchainrpc.okex.org',
|
1269
1278
|
'https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff'
|
1270
1279
|
],
|
1271
|
-
faucets: [
|
1280
|
+
faucets: [],
|
1272
1281
|
nativeCurrency: {
|
1273
1282
|
name: 'OKXChain Global Utility Token',
|
1274
1283
|
symbol: 'OKT',
|
@@ -1471,7 +1480,7 @@ const chainArray = [
|
|
1471
1480
|
'wss://sokol.poa.network/wss',
|
1472
1481
|
'ws://sokol.poa.network:8546'
|
1473
1482
|
],
|
1474
|
-
faucets: [
|
1483
|
+
faucets: [],
|
1475
1484
|
nativeCurrency: { name: 'POA Sokol Ether', symbol: 'SPOA', decimals: 18 },
|
1476
1485
|
infoURL: 'https://poa.network',
|
1477
1486
|
shortName: 'spoa',
|
@@ -1859,7 +1868,8 @@ const chainArray = [
|
|
1859
1868
|
'https://data-seed-prebsc-2-s2.bnbchain.org:8545',
|
1860
1869
|
'https://data-seed-prebsc-1-s3.bnbchain.org:8545',
|
1861
1870
|
'https://data-seed-prebsc-2-s3.bnbchain.org:8545',
|
1862
|
-
'https://bsc-testnet.publicnode.com'
|
1871
|
+
'https://bsc-testnet.publicnode.com',
|
1872
|
+
'wss://bsc-testnet.publicnode.com'
|
1863
1873
|
],
|
1864
1874
|
faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
|
1865
1875
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'tBNB', decimals: 18 },
|
@@ -2091,7 +2101,7 @@ const chainArray = [
|
|
2091
2101
|
'https://mainnet-rpc.thundertoken.net',
|
2092
2102
|
'https://mainnet-rpc.thundercore.io'
|
2093
2103
|
],
|
2094
|
-
faucets: [
|
2104
|
+
faucets: [],
|
2095
2105
|
nativeCurrency: { name: 'ThunderCore Token', symbol: 'TT', decimals: 18 },
|
2096
2106
|
infoURL: 'https://thundercore.com',
|
2097
2107
|
shortName: 'TT',
|
@@ -2331,7 +2341,7 @@ const chainArray = [
|
|
2331
2341
|
'wss://rcl-dataseed3.rclsidechain.com/v1/',
|
2332
2342
|
'wss://rcl-dataseed4.rclsidechain.com/v1/'
|
2333
2343
|
],
|
2334
|
-
faucets: [
|
2344
|
+
faucets: [],
|
2335
2345
|
nativeCurrency: { name: 'Realchain', symbol: 'REAL', decimals: 18 },
|
2336
2346
|
infoURL: 'https://www.rclsidechain.com/',
|
2337
2347
|
shortName: 'REAL',
|
@@ -2437,7 +2447,7 @@ const chainArray = [
|
|
2437
2447
|
'https://http-mainnet.hecochain.com',
|
2438
2448
|
'wss://ws-mainnet.hecochain.com'
|
2439
2449
|
],
|
2440
|
-
faucets: [
|
2450
|
+
faucets: [],
|
2441
2451
|
nativeCurrency: {
|
2442
2452
|
name: 'Huobi ECO Chain Native Token',
|
2443
2453
|
symbol: 'HT',
|
@@ -2527,6 +2537,7 @@ const chainArray = [
|
|
2527
2537
|
'https://rpc-mainnet.matic.quiknode.pro',
|
2528
2538
|
'https://matic-mainnet-full-rpc.bwarelabs.com',
|
2529
2539
|
'https://polygon-bor.publicnode.com',
|
2540
|
+
'wss://polygon-bor.publicnode.com',
|
2530
2541
|
'https://polygon.gateway.tenderly.co',
|
2531
2542
|
'wss://polygon.gateway.tenderly.co'
|
2532
2543
|
],
|
@@ -3122,7 +3133,7 @@ const chainArray = [
|
|
3122
3133
|
name: 'opBNB Mainnet',
|
3123
3134
|
chain: 'opBNB',
|
3124
3135
|
rpc: [ 'https://opbnb-mainnet-rpc.bnbchain.org' ],
|
3125
|
-
faucets: [
|
3136
|
+
faucets: [],
|
3126
3137
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
3127
3138
|
infoURL: 'https://opbnb.bnbchain.org/en',
|
3128
3139
|
shortName: 'obnb',
|
@@ -3347,10 +3358,7 @@ const chainArray = [
|
|
3347
3358
|
name: 'Energy Web Chain',
|
3348
3359
|
chain: 'Energy Web Chain',
|
3349
3360
|
rpc: [ 'https://rpc.energyweb.org', 'wss://rpc.energyweb.org/ws' ],
|
3350
|
-
faucets: [
|
3351
|
-
'https://faucet.carbonswap.exchange',
|
3352
|
-
'https://free-online-app.com/faucet-for-eth-evm-chains/'
|
3353
|
-
],
|
3361
|
+
faucets: [],
|
3354
3362
|
nativeCurrency: { name: 'Energy Web Token', symbol: 'EWT', decimals: 18 },
|
3355
3363
|
infoURL: 'https://energyweb.org',
|
3356
3364
|
shortName: 'ewt',
|
@@ -3387,8 +3395,12 @@ const chainArray = [
|
|
3387
3395
|
{
|
3388
3396
|
name: 'Fantom Opera',
|
3389
3397
|
chain: 'FTM',
|
3390
|
-
rpc: [
|
3391
|
-
|
3398
|
+
rpc: [
|
3399
|
+
'https://rpc.ftm.tools',
|
3400
|
+
'https://fantom.publicnode.com',
|
3401
|
+
'wss://fantom.publicnode.com'
|
3402
|
+
],
|
3403
|
+
faucets: [],
|
3392
3404
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
3393
3405
|
infoURL: 'https://fantom.foundation',
|
3394
3406
|
shortName: 'ftm',
|
@@ -3793,6 +3805,27 @@ const chainArray = [
|
|
3793
3805
|
}
|
3794
3806
|
]
|
3795
3807
|
},
|
3808
|
+
{
|
3809
|
+
name: 'Wyzth Testnet',
|
3810
|
+
chain: 'WYZ',
|
3811
|
+
rpc: [ 'https://rpc-testnet3.wyzthchain.org/' ],
|
3812
|
+
faucets: [],
|
3813
|
+
nativeCurrency: { name: 'Wyzth', symbol: 'WYZ', decimals: 18 },
|
3814
|
+
features: [ { name: 'EIP155' } ],
|
3815
|
+
infoURL: 'https://wyzth.org/',
|
3816
|
+
shortName: 'wyz',
|
3817
|
+
chainId: 309,
|
3818
|
+
networkId: 309,
|
3819
|
+
icon: 'wyzth_icon',
|
3820
|
+
explorers: [
|
3821
|
+
{
|
3822
|
+
name: 'wyzth',
|
3823
|
+
url: 'http://24.199.108.65:4000',
|
3824
|
+
icon: 'wyzth',
|
3825
|
+
standard: 'EIP3091'
|
3826
|
+
}
|
3827
|
+
]
|
3828
|
+
},
|
3796
3829
|
{
|
3797
3830
|
name: 'Omax Mainnet',
|
3798
3831
|
chain: 'OMAX Chain',
|
@@ -3888,10 +3921,7 @@ const chainArray = [
|
|
3888
3921
|
'https://kcc.mytokenpocket.vip',
|
3889
3922
|
'https://public-rpc.blockpi.io/http/kcc'
|
3890
3923
|
],
|
3891
|
-
faucets: [
|
3892
|
-
'https://faucet.kcc.io/',
|
3893
|
-
'https://free-online-app.com/faucet-for-eth-evm-chains/'
|
3894
|
-
],
|
3924
|
+
faucets: [],
|
3895
3925
|
nativeCurrency: { name: 'KuCoin Token', symbol: 'KCS', decimals: 18 },
|
3896
3926
|
infoURL: 'https://kcc.io',
|
3897
3927
|
shortName: 'kcs',
|
@@ -4142,7 +4172,8 @@ const chainArray = [
|
|
4142
4172
|
rpc: [
|
4143
4173
|
'https://rpc.pulsechain.com',
|
4144
4174
|
'wss://rpc.pulsechain.com',
|
4145
|
-
'https://pulsechain.publicnode.com'
|
4175
|
+
'https://pulsechain.publicnode.com',
|
4176
|
+
'wss://pulsechain.publicnode.com'
|
4146
4177
|
],
|
4147
4178
|
slip44: 60,
|
4148
4179
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -4301,6 +4332,7 @@ const chainArray = [
|
|
4301
4332
|
rpc: [
|
4302
4333
|
'https://goerli.optimism.io',
|
4303
4334
|
'https://optimism-goerli.publicnode.com',
|
4335
|
+
'wss://optimism-goerli.publicnode.com',
|
4304
4336
|
'https://optimism-goerli.gateway.tenderly.co',
|
4305
4337
|
'wss://optimism-goerli.gateway.tenderly.co'
|
4306
4338
|
],
|
@@ -5848,7 +5880,8 @@ const chainArray = [
|
|
5848
5880
|
rpc: [
|
5849
5881
|
'https://rpc.v4.testnet.pulsechain.com/',
|
5850
5882
|
'wss://rpc.v4.testnet.pulsechain.com/',
|
5851
|
-
'https://pulsechain-testnet.publicnode.com'
|
5883
|
+
'https://pulsechain-testnet.publicnode.com',
|
5884
|
+
'wss://pulsechain-testnet.publicnode.com'
|
5852
5885
|
],
|
5853
5886
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5854
5887
|
faucets: [ 'https://faucet.v4.testnet.pulsechain.com/' ],
|
@@ -6100,6 +6133,24 @@ const chainArray = [
|
|
6100
6133
|
chainId: 1001,
|
6101
6134
|
networkId: 1001
|
6102
6135
|
},
|
6136
|
+
{
|
6137
|
+
name: 'Tectum Emission Token',
|
6138
|
+
chain: 'TET',
|
6139
|
+
rpc: [ 'https://rpc.softnote.com/' ],
|
6140
|
+
faucets: [],
|
6141
|
+
nativeCurrency: { name: 'Tectum', symbol: 'TET', decimals: 8 },
|
6142
|
+
infoURL: 'https://softnote.com',
|
6143
|
+
shortName: 'tet',
|
6144
|
+
chainId: 1003,
|
6145
|
+
networkId: 1003,
|
6146
|
+
explorers: [
|
6147
|
+
{
|
6148
|
+
name: 'Tectum explorer',
|
6149
|
+
url: 'https://explorer.tectum.io',
|
6150
|
+
standard: 'none'
|
6151
|
+
}
|
6152
|
+
]
|
6153
|
+
},
|
6103
6154
|
{
|
6104
6155
|
name: 'T-EKTA',
|
6105
6156
|
title: 'EKTA Testnet T-EKTA',
|
@@ -7224,39 +7275,45 @@ const chainArray = [
|
|
7224
7275
|
icon: 'alyx'
|
7225
7276
|
},
|
7226
7277
|
{
|
7227
|
-
name: '
|
7228
|
-
chain: '
|
7229
|
-
icon: '
|
7230
|
-
rpc: [
|
7278
|
+
name: 'AIA Mainnet',
|
7279
|
+
chain: 'AIA',
|
7280
|
+
icon: 'aia',
|
7281
|
+
rpc: [
|
7282
|
+
'https://aia-dataseed1.aiachain.org',
|
7283
|
+
'https://aia-dataseed2.aiachain.org',
|
7284
|
+
'https://aia-dataseed3.aiachain.org',
|
7285
|
+
'https://aia-dataseed4.aiachain.org'
|
7286
|
+
],
|
7231
7287
|
faucets: [],
|
7232
|
-
nativeCurrency: { name: '
|
7233
|
-
infoURL: 'https://
|
7234
|
-
shortName: '
|
7288
|
+
nativeCurrency: { name: 'AIA Mainnet', symbol: 'AIA', decimals: 18 },
|
7289
|
+
infoURL: 'https://aiachain.org/',
|
7290
|
+
shortName: 'aia',
|
7235
7291
|
chainId: 1319,
|
7236
7292
|
networkId: 1319,
|
7237
7293
|
explorers: [
|
7238
7294
|
{
|
7239
|
-
name: '
|
7240
|
-
url: 'https://
|
7295
|
+
name: 'AIA Chain Explorer Mainnet',
|
7296
|
+
url: 'https://aiascan.com',
|
7241
7297
|
standard: 'EIP3091'
|
7242
7298
|
}
|
7243
7299
|
]
|
7244
7300
|
},
|
7245
7301
|
{
|
7246
|
-
name: '
|
7247
|
-
chain: '
|
7248
|
-
icon: '
|
7249
|
-
rpc: [ '
|
7250
|
-
faucets: [ 'https://
|
7251
|
-
nativeCurrency: { name: '
|
7252
|
-
|
7253
|
-
|
7302
|
+
name: 'AIA Testnet',
|
7303
|
+
chain: 'AIA',
|
7304
|
+
icon: 'aia',
|
7305
|
+
rpc: [ 'https://aia-dataseed1-testnet.aiachain.org' ],
|
7306
|
+
faucets: [ 'https://aia-faucet-testnet.aiachain.org' ],
|
7307
|
+
nativeCurrency: { name: 'AIA Testnet', symbol: 'AIA', decimals: 18 },
|
7308
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
7309
|
+
infoURL: 'https://aiachain.org',
|
7310
|
+
shortName: 'aiatestnet',
|
7254
7311
|
chainId: 1320,
|
7255
7312
|
networkId: 1320,
|
7256
7313
|
explorers: [
|
7257
7314
|
{
|
7258
|
-
name: '
|
7259
|
-
url: 'https://
|
7315
|
+
name: 'AIA Chain Explorer Testnet',
|
7316
|
+
url: 'https://testnet.aiascan.com',
|
7260
7317
|
standard: 'EIP3091'
|
7261
7318
|
}
|
7262
7319
|
]
|
@@ -7621,7 +7678,11 @@ const chainArray = [
|
|
7621
7678
|
title: 'Tenet Mainnet',
|
7622
7679
|
chain: 'TENET',
|
7623
7680
|
icon: 'tenet',
|
7624
|
-
rpc: [
|
7681
|
+
rpc: [
|
7682
|
+
'https://rpc.tenet.org',
|
7683
|
+
'https://tenet-evm.publicnode.com',
|
7684
|
+
'wss://tenet-evm.publicnode.com'
|
7685
|
+
],
|
7625
7686
|
faucets: [],
|
7626
7687
|
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
7627
7688
|
infoURL: 'https://tenet.org/',
|
@@ -8281,6 +8342,46 @@ const chainArray = [
|
|
8281
8342
|
}
|
8282
8343
|
]
|
8283
8344
|
},
|
8345
|
+
{
|
8346
|
+
name: 'SatoshIE',
|
8347
|
+
chain: 'TUSHY',
|
8348
|
+
rpc: [ 'http://rpc.satosh.ie' ],
|
8349
|
+
faucets: [],
|
8350
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
8351
|
+
infoURL: 'https://satosh.ie',
|
8352
|
+
shortName: 'satoshie',
|
8353
|
+
chainId: 1985,
|
8354
|
+
networkId: 1985,
|
8355
|
+
icon: 'satoshie',
|
8356
|
+
explorers: [
|
8357
|
+
{
|
8358
|
+
name: 'mainnetexplorer',
|
8359
|
+
url: 'http://explore.satosh.ie',
|
8360
|
+
icon: 'satoshie',
|
8361
|
+
standard: 'none'
|
8362
|
+
}
|
8363
|
+
]
|
8364
|
+
},
|
8365
|
+
{
|
8366
|
+
name: 'SatoshIE Testnet',
|
8367
|
+
chain: 'TUSHY',
|
8368
|
+
rpc: [ 'http://testnet.satosh.ie' ],
|
8369
|
+
faucets: [],
|
8370
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
8371
|
+
infoURL: 'https://satosh.ie',
|
8372
|
+
shortName: 'satoshie_testnet',
|
8373
|
+
chainId: 1986,
|
8374
|
+
networkId: 1986,
|
8375
|
+
icon: 'satoshie',
|
8376
|
+
explorers: [
|
8377
|
+
{
|
8378
|
+
name: 'testnetexplorer',
|
8379
|
+
url: 'http://explore-testnet.satosh.ie',
|
8380
|
+
icon: 'satoshie',
|
8381
|
+
standard: 'none'
|
8382
|
+
}
|
8383
|
+
]
|
8384
|
+
},
|
8284
8385
|
{
|
8285
8386
|
name: 'EtherGem',
|
8286
8387
|
chain: 'EGEM',
|
@@ -9116,7 +9217,8 @@ const chainArray = [
|
|
9116
9217
|
'https://kava-evm.rpc.thirdweb.com',
|
9117
9218
|
'wss://wevm.kava.io',
|
9118
9219
|
'wss://wevm2.kava.io',
|
9119
|
-
'https://kava-evm.publicnode.com'
|
9220
|
+
'https://kava-evm.publicnode.com',
|
9221
|
+
'wss://kava-evm.publicnode.com'
|
9120
9222
|
],
|
9121
9223
|
faucets: [],
|
9122
9224
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
@@ -10292,7 +10394,8 @@ const chainArray = [
|
|
10292
10394
|
chain: 'FTM',
|
10293
10395
|
rpc: [
|
10294
10396
|
'https://rpc.testnet.fantom.network',
|
10295
|
-
'https://fantom-testnet.publicnode.com'
|
10397
|
+
'https://fantom-testnet.publicnode.com',
|
10398
|
+
'wss://fantom-testnet.publicnode.com'
|
10296
10399
|
],
|
10297
10400
|
faucets: [ 'https://faucet.fantom.network' ],
|
10298
10401
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
@@ -10773,7 +10876,11 @@ const chainArray = [
|
|
10773
10876
|
name: 'Mantle',
|
10774
10877
|
chain: 'ETH',
|
10775
10878
|
icon: 'mantle',
|
10776
|
-
rpc: [
|
10879
|
+
rpc: [
|
10880
|
+
'https://rpc.mantle.xyz',
|
10881
|
+
'https://mantle.publicnode.com',
|
10882
|
+
'wss://mantle.publicnode.com'
|
10883
|
+
],
|
10777
10884
|
faucets: [],
|
10778
10885
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
10779
10886
|
infoURL: 'https://mantle.xyz',
|
@@ -11105,7 +11212,8 @@ const chainArray = [
|
|
11105
11212
|
rpc: [
|
11106
11213
|
'https://rpc.tanenbaum.io',
|
11107
11214
|
'wss://rpc.tanenbaum.io/wss',
|
11108
|
-
'https://syscoin-tanenbaum-evm.publicnode.com'
|
11215
|
+
'https://syscoin-tanenbaum-evm.publicnode.com',
|
11216
|
+
'wss://syscoin-tanenbaum-evm.publicnode.com'
|
11109
11217
|
],
|
11110
11218
|
faucets: [ 'https://faucet.tanenbaum.io' ],
|
11111
11219
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
@@ -11407,7 +11515,8 @@ const chainArray = [
|
|
11407
11515
|
chain: 'IRIShub',
|
11408
11516
|
rpc: [
|
11409
11517
|
'https://evmrpc.irishub-1.irisnet.org',
|
11410
|
-
'https://iris-evm.publicnode.com'
|
11518
|
+
'https://iris-evm.publicnode.com',
|
11519
|
+
'wss://iris-evm.publicnode.com'
|
11411
11520
|
],
|
11412
11521
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
11413
11522
|
faucets: [],
|
@@ -12259,7 +12368,8 @@ const chainArray = [
|
|
12259
12368
|
'https://developer-access-mainnet.base.org/',
|
12260
12369
|
'https://base.gateway.tenderly.co',
|
12261
12370
|
'wss://base.gateway.tenderly.co',
|
12262
|
-
'https://base.publicnode.com'
|
12371
|
+
'https://base.publicnode.com',
|
12372
|
+
'wss://base.publicnode.com'
|
12263
12373
|
],
|
12264
12374
|
faucets: [],
|
12265
12375
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -12616,7 +12726,10 @@ const chainArray = [
|
|
12616
12726
|
{
|
12617
12727
|
name: 'Evmos',
|
12618
12728
|
chain: 'Evmos',
|
12619
|
-
rpc: [
|
12729
|
+
rpc: [
|
12730
|
+
'https://evmos-evm.publicnode.com',
|
12731
|
+
'wss://evmos-evm.publicnode.com'
|
12732
|
+
],
|
12620
12733
|
faucets: [],
|
12621
12734
|
nativeCurrency: { name: 'Evmos', symbol: 'EVMOS', decimals: 18 },
|
12622
12735
|
infoURL: 'https://evmos.org',
|
@@ -13405,7 +13518,7 @@ const chainArray = [
|
|
13405
13518
|
name: 'HashBit Mainnet',
|
13406
13519
|
chain: 'HBIT',
|
13407
13520
|
rpc: [ 'https://mainnet-rpc.hashbit.org', 'https://rpc.hashbit.org' ],
|
13408
|
-
faucets: [
|
13521
|
+
faucets: [],
|
13409
13522
|
nativeCurrency: { name: 'HashBit Native Token', symbol: 'HBIT', decimals: 18 },
|
13410
13523
|
infoURL: 'https://hashbit.org',
|
13411
13524
|
shortName: 'hbit',
|
@@ -13424,7 +13537,8 @@ const chainArray = [
|
|
13424
13537
|
chain: 'Haqq',
|
13425
13538
|
rpc: [
|
13426
13539
|
'https://rpc.eth.haqq.network',
|
13427
|
-
'https://haqq-evm.publicnode.com'
|
13540
|
+
'https://haqq-evm.publicnode.com',
|
13541
|
+
'wss://haqq-evm.publicnode.com'
|
13428
13542
|
],
|
13429
13543
|
faucets: [],
|
13430
13544
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
@@ -13688,6 +13802,25 @@ const chainArray = [
|
|
13688
13802
|
}
|
13689
13803
|
]
|
13690
13804
|
},
|
13805
|
+
{
|
13806
|
+
name: 'Quantum Chain Testnet',
|
13807
|
+
chain: 'QNET',
|
13808
|
+
icon: 'qnet',
|
13809
|
+
rpc: [ 'https://testnet-rpc.quantumscan.org' ],
|
13810
|
+
faucets: [],
|
13811
|
+
nativeCurrency: { name: 'Quantum Chain', symbol: 'QNET', decimals: 18 },
|
13812
|
+
infoURL: 'https://quantumnetwork.gg',
|
13813
|
+
shortName: 'qnet',
|
13814
|
+
chainId: 12890,
|
13815
|
+
networkId: 12890,
|
13816
|
+
explorers: [
|
13817
|
+
{
|
13818
|
+
name: 'Quantum Scan Testnet',
|
13819
|
+
url: 'https://testnet.quantumscan.org',
|
13820
|
+
standard: 'EIP3091'
|
13821
|
+
}
|
13822
|
+
]
|
13823
|
+
},
|
13691
13824
|
{
|
13692
13825
|
name: 'SPS',
|
13693
13826
|
chain: 'SPS',
|
@@ -14950,7 +15083,8 @@ const chainArray = [
|
|
14950
15083
|
'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
14951
15084
|
'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
|
14952
15085
|
'https://arb1.arbitrum.io/rpc',
|
14953
|
-
'https://arbitrum-one.publicnode.com'
|
15086
|
+
'https://arbitrum-one.publicnode.com',
|
15087
|
+
'wss://arbitrum-one.publicnode.com'
|
14954
15088
|
],
|
14955
15089
|
faucets: [],
|
14956
15090
|
explorers: [
|
@@ -14981,7 +15115,8 @@ const chainArray = [
|
|
14981
15115
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14982
15116
|
rpc: [
|
14983
15117
|
'https://nova.arbitrum.io/rpc',
|
14984
|
-
'https://arbitrum-nova.publicnode.com'
|
15118
|
+
'https://arbitrum-nova.publicnode.com',
|
15119
|
+
'wss://arbitrum-nova.publicnode.com'
|
14985
15120
|
],
|
14986
15121
|
faucets: [],
|
14987
15122
|
explorers: [
|
@@ -15007,7 +15142,7 @@ const chainArray = [
|
|
15007
15142
|
networkId: 42220,
|
15008
15143
|
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
15009
15144
|
rpc: [ 'https://forno.celo.org', 'wss://forno.celo.org/ws' ],
|
15010
|
-
faucets: [
|
15145
|
+
faucets: [],
|
15011
15146
|
infoURL: 'https://docs.celo.org/',
|
15012
15147
|
explorers: [
|
15013
15148
|
{
|
@@ -15100,7 +15235,8 @@ const chainArray = [
|
|
15100
15235
|
icon: 'avax',
|
15101
15236
|
rpc: [
|
15102
15237
|
'https://api.avax-test.network/ext/bc/C/rpc',
|
15103
|
-
'https://avalanche-fuji-c-chain.publicnode.com'
|
15238
|
+
'https://avalanche-fuji-c-chain.publicnode.com',
|
15239
|
+
'wss://avalanche-fuji-c-chain.publicnode.com'
|
15104
15240
|
],
|
15105
15241
|
faucets: [ 'https://faucet.avax-test.network/' ],
|
15106
15242
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
@@ -15122,10 +15258,11 @@ const chainArray = [
|
|
15122
15258
|
icon: 'avax',
|
15123
15259
|
rpc: [
|
15124
15260
|
'https://api.avax.network/ext/bc/C/rpc',
|
15125
|
-
'https://avalanche-c-chain.publicnode.com'
|
15261
|
+
'https://avalanche-c-chain.publicnode.com',
|
15262
|
+
'wss://avalanche-c-chain.publicnode.com'
|
15126
15263
|
],
|
15127
15264
|
features: [ { name: 'EIP1559' } ],
|
15128
|
-
faucets: [
|
15265
|
+
faucets: [],
|
15129
15266
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
15130
15267
|
infoURL: 'https://www.avax.network/',
|
15131
15268
|
shortName: 'avax',
|
@@ -16343,6 +16480,7 @@ const chainArray = [
|
|
16343
16480
|
rpc: [
|
16344
16481
|
'https://rpc-mumbai.maticvigil.com',
|
16345
16482
|
'https://polygon-mumbai-bor.publicnode.com',
|
16483
|
+
'wss://polygon-mumbai-bor.publicnode.com',
|
16346
16484
|
'https://polygon-mumbai.gateway.tenderly.co',
|
16347
16485
|
'wss://polygon-mumbai.gateway.tenderly.co'
|
16348
16486
|
],
|
@@ -16484,7 +16622,8 @@ const chainArray = [
|
|
16484
16622
|
'https://goerli.base.org',
|
16485
16623
|
'https://base-goerli.gateway.tenderly.co',
|
16486
16624
|
'wss://base-goerli.gateway.tenderly.co',
|
16487
|
-
'https://base-goerli.publicnode.com'
|
16625
|
+
'https://base-goerli.publicnode.com',
|
16626
|
+
'wss://base-goerli.publicnode.com'
|
16488
16627
|
],
|
16489
16628
|
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
16490
16629
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
@@ -18189,7 +18328,8 @@ const chainArray = [
|
|
18189
18328
|
nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', decimals: 18 },
|
18190
18329
|
rpc: [
|
18191
18330
|
'https://goerli-rollup.arbitrum.io/rpc',
|
18192
|
-
'https://arbitrum-goerli.publicnode.com'
|
18331
|
+
'https://arbitrum-goerli.publicnode.com',
|
18332
|
+
'wss://arbitrum-goerli.publicnode.com'
|
18193
18333
|
],
|
18194
18334
|
faucets: [],
|
18195
18335
|
infoURL: 'https://arbitrum.io/',
|
@@ -18495,7 +18635,7 @@ const chainArray = [
|
|
18495
18635
|
title: 'BESC Mainnet',
|
18496
18636
|
chain: 'BESC',
|
18497
18637
|
rpc: [ 'https://mainnet-rpc.bescscan.io' ],
|
18498
|
-
faucets: [
|
18638
|
+
faucets: [],
|
18499
18639
|
nativeCurrency: { name: 'BeanEco SmartChain', symbol: 'BESC', decimals: 18 },
|
18500
18640
|
infoURL: 'besceco.finance',
|
18501
18641
|
shortName: 'BESC',
|
@@ -18706,7 +18846,7 @@ const chainArray = [
|
|
18706
18846
|
name: 'Posichain Mainnet Shard 0',
|
18707
18847
|
chain: 'PSC',
|
18708
18848
|
rpc: [ 'https://api.posichain.org', 'https://api.s0.posichain.org' ],
|
18709
|
-
faucets: [
|
18849
|
+
faucets: [],
|
18710
18850
|
nativeCurrency: { name: 'Posichain Native Token', symbol: 'POSI', decimals: 18 },
|
18711
18851
|
infoURL: 'https://posichain.org',
|
18712
18852
|
shortName: 'psc-s0',
|
@@ -19462,7 +19602,13 @@ const chainArray = [
|
|
19462
19602
|
{
|
19463
19603
|
name: 'quarkblockchain',
|
19464
19604
|
chain: 'QKI',
|
19465
|
-
rpc: [
|
19605
|
+
rpc: [
|
19606
|
+
'https://hz.rpc.qkiscan.cn',
|
19607
|
+
'https://jp.rpc.qkiscan.io',
|
19608
|
+
'https://rpc1.qkiscan.io',
|
19609
|
+
'https://rpc2.qkiscan.io',
|
19610
|
+
'https://rpc3.qkiscan.io'
|
19611
|
+
],
|
19466
19612
|
faucets: [],
|
19467
19613
|
nativeCurrency: {
|
19468
19614
|
name: 'quarkblockchain Native Token',
|
@@ -19472,7 +19618,14 @@ const chainArray = [
|
|
19472
19618
|
infoURL: 'https://quarkblockchain.org/',
|
19473
19619
|
shortName: 'qki',
|
19474
19620
|
chainId: 20181205,
|
19475
|
-
networkId: 20181205
|
19621
|
+
networkId: 20181205,
|
19622
|
+
explorers: [
|
19623
|
+
{
|
19624
|
+
name: 'qkiscan',
|
19625
|
+
url: 'https://qkiscan.io',
|
19626
|
+
standard: 'EIP3091'
|
19627
|
+
}
|
19628
|
+
]
|
19476
19629
|
},
|
19477
19630
|
{
|
19478
19631
|
name: 'Pego Network',
|