eth-chainlist 0.0.231 → 0.0.232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +155 -47
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.232 (2023-09-11)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.231 ([46d2d08](https://github.com/poowf/eth-chainlist/commit/46d2d0857d7b49a1d5ac5d5ec837540445a1c002))
|
9
|
+
* update chain data ([fc47173](https://github.com/poowf/eth-chainlist/commit/fc47173a78e48b63e342f7df3246ff32f75c6c65))
|
10
|
+
|
3
11
|
### 0.0.231 (2023-09-10)
|
4
12
|
|
5
13
|
|
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',
|
@@ -3888,10 +3900,7 @@ const chainArray = [
|
|
3888
3900
|
'https://kcc.mytokenpocket.vip',
|
3889
3901
|
'https://public-rpc.blockpi.io/http/kcc'
|
3890
3902
|
],
|
3891
|
-
faucets: [
|
3892
|
-
'https://faucet.kcc.io/',
|
3893
|
-
'https://free-online-app.com/faucet-for-eth-evm-chains/'
|
3894
|
-
],
|
3903
|
+
faucets: [],
|
3895
3904
|
nativeCurrency: { name: 'KuCoin Token', symbol: 'KCS', decimals: 18 },
|
3896
3905
|
infoURL: 'https://kcc.io',
|
3897
3906
|
shortName: 'kcs',
|
@@ -4142,7 +4151,8 @@ const chainArray = [
|
|
4142
4151
|
rpc: [
|
4143
4152
|
'https://rpc.pulsechain.com',
|
4144
4153
|
'wss://rpc.pulsechain.com',
|
4145
|
-
'https://pulsechain.publicnode.com'
|
4154
|
+
'https://pulsechain.publicnode.com',
|
4155
|
+
'wss://pulsechain.publicnode.com'
|
4146
4156
|
],
|
4147
4157
|
slip44: 60,
|
4148
4158
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -4301,6 +4311,7 @@ const chainArray = [
|
|
4301
4311
|
rpc: [
|
4302
4312
|
'https://goerli.optimism.io',
|
4303
4313
|
'https://optimism-goerli.publicnode.com',
|
4314
|
+
'wss://optimism-goerli.publicnode.com',
|
4304
4315
|
'https://optimism-goerli.gateway.tenderly.co',
|
4305
4316
|
'wss://optimism-goerli.gateway.tenderly.co'
|
4306
4317
|
],
|
@@ -5848,7 +5859,8 @@ const chainArray = [
|
|
5848
5859
|
rpc: [
|
5849
5860
|
'https://rpc.v4.testnet.pulsechain.com/',
|
5850
5861
|
'wss://rpc.v4.testnet.pulsechain.com/',
|
5851
|
-
'https://pulsechain-testnet.publicnode.com'
|
5862
|
+
'https://pulsechain-testnet.publicnode.com',
|
5863
|
+
'wss://pulsechain-testnet.publicnode.com'
|
5852
5864
|
],
|
5853
5865
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5854
5866
|
faucets: [ 'https://faucet.v4.testnet.pulsechain.com/' ],
|
@@ -7621,7 +7633,11 @@ const chainArray = [
|
|
7621
7633
|
title: 'Tenet Mainnet',
|
7622
7634
|
chain: 'TENET',
|
7623
7635
|
icon: 'tenet',
|
7624
|
-
rpc: [
|
7636
|
+
rpc: [
|
7637
|
+
'https://rpc.tenet.org',
|
7638
|
+
'https://tenet-evm.publicnode.com',
|
7639
|
+
'wss://tenet-evm.publicnode.com'
|
7640
|
+
],
|
7625
7641
|
faucets: [],
|
7626
7642
|
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
7627
7643
|
infoURL: 'https://tenet.org/',
|
@@ -8281,6 +8297,46 @@ const chainArray = [
|
|
8281
8297
|
}
|
8282
8298
|
]
|
8283
8299
|
},
|
8300
|
+
{
|
8301
|
+
name: 'SatoshIE',
|
8302
|
+
chain: 'TUSHY',
|
8303
|
+
rpc: [ 'http://rpc.satosh.ie' ],
|
8304
|
+
faucets: [],
|
8305
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
8306
|
+
infoURL: 'https://satosh.ie',
|
8307
|
+
shortName: 'satoshie',
|
8308
|
+
chainId: 1985,
|
8309
|
+
networkId: 1985,
|
8310
|
+
icon: 'satoshie',
|
8311
|
+
explorers: [
|
8312
|
+
{
|
8313
|
+
name: 'mainnetexplorer',
|
8314
|
+
url: 'http://explore.satosh.ie',
|
8315
|
+
icon: 'satoshie',
|
8316
|
+
standard: 'none'
|
8317
|
+
}
|
8318
|
+
]
|
8319
|
+
},
|
8320
|
+
{
|
8321
|
+
name: 'SatoshIE Testnet',
|
8322
|
+
chain: 'TUSHY',
|
8323
|
+
rpc: [ 'http://testnet.satosh.ie' ],
|
8324
|
+
faucets: [],
|
8325
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
8326
|
+
infoURL: 'https://satosh.ie',
|
8327
|
+
shortName: 'satoshie_testnet',
|
8328
|
+
chainId: 1986,
|
8329
|
+
networkId: 1986,
|
8330
|
+
icon: 'satoshie',
|
8331
|
+
explorers: [
|
8332
|
+
{
|
8333
|
+
name: 'testnetexplorer',
|
8334
|
+
url: 'http://explore-testnet.satosh.ie',
|
8335
|
+
icon: 'satoshie',
|
8336
|
+
standard: 'none'
|
8337
|
+
}
|
8338
|
+
]
|
8339
|
+
},
|
8284
8340
|
{
|
8285
8341
|
name: 'EtherGem',
|
8286
8342
|
chain: 'EGEM',
|
@@ -9116,7 +9172,8 @@ const chainArray = [
|
|
9116
9172
|
'https://kava-evm.rpc.thirdweb.com',
|
9117
9173
|
'wss://wevm.kava.io',
|
9118
9174
|
'wss://wevm2.kava.io',
|
9119
|
-
'https://kava-evm.publicnode.com'
|
9175
|
+
'https://kava-evm.publicnode.com',
|
9176
|
+
'wss://kava-evm.publicnode.com'
|
9120
9177
|
],
|
9121
9178
|
faucets: [],
|
9122
9179
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
@@ -10292,7 +10349,8 @@ const chainArray = [
|
|
10292
10349
|
chain: 'FTM',
|
10293
10350
|
rpc: [
|
10294
10351
|
'https://rpc.testnet.fantom.network',
|
10295
|
-
'https://fantom-testnet.publicnode.com'
|
10352
|
+
'https://fantom-testnet.publicnode.com',
|
10353
|
+
'wss://fantom-testnet.publicnode.com'
|
10296
10354
|
],
|
10297
10355
|
faucets: [ 'https://faucet.fantom.network' ],
|
10298
10356
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
@@ -10773,7 +10831,11 @@ const chainArray = [
|
|
10773
10831
|
name: 'Mantle',
|
10774
10832
|
chain: 'ETH',
|
10775
10833
|
icon: 'mantle',
|
10776
|
-
rpc: [
|
10834
|
+
rpc: [
|
10835
|
+
'https://rpc.mantle.xyz',
|
10836
|
+
'https://mantle.publicnode.com',
|
10837
|
+
'wss://mantle.publicnode.com'
|
10838
|
+
],
|
10777
10839
|
faucets: [],
|
10778
10840
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
10779
10841
|
infoURL: 'https://mantle.xyz',
|
@@ -11105,7 +11167,8 @@ const chainArray = [
|
|
11105
11167
|
rpc: [
|
11106
11168
|
'https://rpc.tanenbaum.io',
|
11107
11169
|
'wss://rpc.tanenbaum.io/wss',
|
11108
|
-
'https://syscoin-tanenbaum-evm.publicnode.com'
|
11170
|
+
'https://syscoin-tanenbaum-evm.publicnode.com',
|
11171
|
+
'wss://syscoin-tanenbaum-evm.publicnode.com'
|
11109
11172
|
],
|
11110
11173
|
faucets: [ 'https://faucet.tanenbaum.io' ],
|
11111
11174
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
@@ -11407,7 +11470,8 @@ const chainArray = [
|
|
11407
11470
|
chain: 'IRIShub',
|
11408
11471
|
rpc: [
|
11409
11472
|
'https://evmrpc.irishub-1.irisnet.org',
|
11410
|
-
'https://iris-evm.publicnode.com'
|
11473
|
+
'https://iris-evm.publicnode.com',
|
11474
|
+
'wss://iris-evm.publicnode.com'
|
11411
11475
|
],
|
11412
11476
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
11413
11477
|
faucets: [],
|
@@ -12259,7 +12323,8 @@ const chainArray = [
|
|
12259
12323
|
'https://developer-access-mainnet.base.org/',
|
12260
12324
|
'https://base.gateway.tenderly.co',
|
12261
12325
|
'wss://base.gateway.tenderly.co',
|
12262
|
-
'https://base.publicnode.com'
|
12326
|
+
'https://base.publicnode.com',
|
12327
|
+
'wss://base.publicnode.com'
|
12263
12328
|
],
|
12264
12329
|
faucets: [],
|
12265
12330
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -12616,7 +12681,10 @@ const chainArray = [
|
|
12616
12681
|
{
|
12617
12682
|
name: 'Evmos',
|
12618
12683
|
chain: 'Evmos',
|
12619
|
-
rpc: [
|
12684
|
+
rpc: [
|
12685
|
+
'https://evmos-evm.publicnode.com',
|
12686
|
+
'wss://evmos-evm.publicnode.com'
|
12687
|
+
],
|
12620
12688
|
faucets: [],
|
12621
12689
|
nativeCurrency: { name: 'Evmos', symbol: 'EVMOS', decimals: 18 },
|
12622
12690
|
infoURL: 'https://evmos.org',
|
@@ -13405,7 +13473,7 @@ const chainArray = [
|
|
13405
13473
|
name: 'HashBit Mainnet',
|
13406
13474
|
chain: 'HBIT',
|
13407
13475
|
rpc: [ 'https://mainnet-rpc.hashbit.org', 'https://rpc.hashbit.org' ],
|
13408
|
-
faucets: [
|
13476
|
+
faucets: [],
|
13409
13477
|
nativeCurrency: { name: 'HashBit Native Token', symbol: 'HBIT', decimals: 18 },
|
13410
13478
|
infoURL: 'https://hashbit.org',
|
13411
13479
|
shortName: 'hbit',
|
@@ -13424,7 +13492,8 @@ const chainArray = [
|
|
13424
13492
|
chain: 'Haqq',
|
13425
13493
|
rpc: [
|
13426
13494
|
'https://rpc.eth.haqq.network',
|
13427
|
-
'https://haqq-evm.publicnode.com'
|
13495
|
+
'https://haqq-evm.publicnode.com',
|
13496
|
+
'wss://haqq-evm.publicnode.com'
|
13428
13497
|
],
|
13429
13498
|
faucets: [],
|
13430
13499
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
@@ -13688,6 +13757,25 @@ const chainArray = [
|
|
13688
13757
|
}
|
13689
13758
|
]
|
13690
13759
|
},
|
13760
|
+
{
|
13761
|
+
name: 'Quantum Chain Testnet',
|
13762
|
+
chain: 'QNET',
|
13763
|
+
icon: 'qnet',
|
13764
|
+
rpc: [ 'https://testnet-rpc.quantumscan.org' ],
|
13765
|
+
faucets: [],
|
13766
|
+
nativeCurrency: { name: 'Quantum Chain', symbol: 'QNET', decimals: 18 },
|
13767
|
+
infoURL: 'https://quantumnetwork.gg',
|
13768
|
+
shortName: 'qnet',
|
13769
|
+
chainId: 12890,
|
13770
|
+
networkId: 12890,
|
13771
|
+
explorers: [
|
13772
|
+
{
|
13773
|
+
name: 'Quantum Scan Testnet',
|
13774
|
+
url: 'https://testnet.quantumscan.org',
|
13775
|
+
standard: 'EIP3091'
|
13776
|
+
}
|
13777
|
+
]
|
13778
|
+
},
|
13691
13779
|
{
|
13692
13780
|
name: 'SPS',
|
13693
13781
|
chain: 'SPS',
|
@@ -14950,7 +15038,8 @@ const chainArray = [
|
|
14950
15038
|
'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
14951
15039
|
'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
|
14952
15040
|
'https://arb1.arbitrum.io/rpc',
|
14953
|
-
'https://arbitrum-one.publicnode.com'
|
15041
|
+
'https://arbitrum-one.publicnode.com',
|
15042
|
+
'wss://arbitrum-one.publicnode.com'
|
14954
15043
|
],
|
14955
15044
|
faucets: [],
|
14956
15045
|
explorers: [
|
@@ -14981,7 +15070,8 @@ const chainArray = [
|
|
14981
15070
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14982
15071
|
rpc: [
|
14983
15072
|
'https://nova.arbitrum.io/rpc',
|
14984
|
-
'https://arbitrum-nova.publicnode.com'
|
15073
|
+
'https://arbitrum-nova.publicnode.com',
|
15074
|
+
'wss://arbitrum-nova.publicnode.com'
|
14985
15075
|
],
|
14986
15076
|
faucets: [],
|
14987
15077
|
explorers: [
|
@@ -15007,7 +15097,7 @@ const chainArray = [
|
|
15007
15097
|
networkId: 42220,
|
15008
15098
|
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
15009
15099
|
rpc: [ 'https://forno.celo.org', 'wss://forno.celo.org/ws' ],
|
15010
|
-
faucets: [
|
15100
|
+
faucets: [],
|
15011
15101
|
infoURL: 'https://docs.celo.org/',
|
15012
15102
|
explorers: [
|
15013
15103
|
{
|
@@ -15100,7 +15190,8 @@ const chainArray = [
|
|
15100
15190
|
icon: 'avax',
|
15101
15191
|
rpc: [
|
15102
15192
|
'https://api.avax-test.network/ext/bc/C/rpc',
|
15103
|
-
'https://avalanche-fuji-c-chain.publicnode.com'
|
15193
|
+
'https://avalanche-fuji-c-chain.publicnode.com',
|
15194
|
+
'wss://avalanche-fuji-c-chain.publicnode.com'
|
15104
15195
|
],
|
15105
15196
|
faucets: [ 'https://faucet.avax-test.network/' ],
|
15106
15197
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
@@ -15122,10 +15213,11 @@ const chainArray = [
|
|
15122
15213
|
icon: 'avax',
|
15123
15214
|
rpc: [
|
15124
15215
|
'https://api.avax.network/ext/bc/C/rpc',
|
15125
|
-
'https://avalanche-c-chain.publicnode.com'
|
15216
|
+
'https://avalanche-c-chain.publicnode.com',
|
15217
|
+
'wss://avalanche-c-chain.publicnode.com'
|
15126
15218
|
],
|
15127
15219
|
features: [ { name: 'EIP1559' } ],
|
15128
|
-
faucets: [
|
15220
|
+
faucets: [],
|
15129
15221
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
15130
15222
|
infoURL: 'https://www.avax.network/',
|
15131
15223
|
shortName: 'avax',
|
@@ -16343,6 +16435,7 @@ const chainArray = [
|
|
16343
16435
|
rpc: [
|
16344
16436
|
'https://rpc-mumbai.maticvigil.com',
|
16345
16437
|
'https://polygon-mumbai-bor.publicnode.com',
|
16438
|
+
'wss://polygon-mumbai-bor.publicnode.com',
|
16346
16439
|
'https://polygon-mumbai.gateway.tenderly.co',
|
16347
16440
|
'wss://polygon-mumbai.gateway.tenderly.co'
|
16348
16441
|
],
|
@@ -16484,7 +16577,8 @@ const chainArray = [
|
|
16484
16577
|
'https://goerli.base.org',
|
16485
16578
|
'https://base-goerli.gateway.tenderly.co',
|
16486
16579
|
'wss://base-goerli.gateway.tenderly.co',
|
16487
|
-
'https://base-goerli.publicnode.com'
|
16580
|
+
'https://base-goerli.publicnode.com',
|
16581
|
+
'wss://base-goerli.publicnode.com'
|
16488
16582
|
],
|
16489
16583
|
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
16490
16584
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
@@ -18189,7 +18283,8 @@ const chainArray = [
|
|
18189
18283
|
nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', decimals: 18 },
|
18190
18284
|
rpc: [
|
18191
18285
|
'https://goerli-rollup.arbitrum.io/rpc',
|
18192
|
-
'https://arbitrum-goerli.publicnode.com'
|
18286
|
+
'https://arbitrum-goerli.publicnode.com',
|
18287
|
+
'wss://arbitrum-goerli.publicnode.com'
|
18193
18288
|
],
|
18194
18289
|
faucets: [],
|
18195
18290
|
infoURL: 'https://arbitrum.io/',
|
@@ -18495,7 +18590,7 @@ const chainArray = [
|
|
18495
18590
|
title: 'BESC Mainnet',
|
18496
18591
|
chain: 'BESC',
|
18497
18592
|
rpc: [ 'https://mainnet-rpc.bescscan.io' ],
|
18498
|
-
faucets: [
|
18593
|
+
faucets: [],
|
18499
18594
|
nativeCurrency: { name: 'BeanEco SmartChain', symbol: 'BESC', decimals: 18 },
|
18500
18595
|
infoURL: 'besceco.finance',
|
18501
18596
|
shortName: 'BESC',
|
@@ -18706,7 +18801,7 @@ const chainArray = [
|
|
18706
18801
|
name: 'Posichain Mainnet Shard 0',
|
18707
18802
|
chain: 'PSC',
|
18708
18803
|
rpc: [ 'https://api.posichain.org', 'https://api.s0.posichain.org' ],
|
18709
|
-
faucets: [
|
18804
|
+
faucets: [],
|
18710
18805
|
nativeCurrency: { name: 'Posichain Native Token', symbol: 'POSI', decimals: 18 },
|
18711
18806
|
infoURL: 'https://posichain.org',
|
18712
18807
|
shortName: 'psc-s0',
|
@@ -19462,7 +19557,13 @@ const chainArray = [
|
|
19462
19557
|
{
|
19463
19558
|
name: 'quarkblockchain',
|
19464
19559
|
chain: 'QKI',
|
19465
|
-
rpc: [
|
19560
|
+
rpc: [
|
19561
|
+
'https://hz.rpc.qkiscan.cn',
|
19562
|
+
'https://jp.rpc.qkiscan.io',
|
19563
|
+
'https://rpc1.qkiscan.io',
|
19564
|
+
'https://rpc2.qkiscan.io',
|
19565
|
+
'https://rpc3.qkiscan.io'
|
19566
|
+
],
|
19466
19567
|
faucets: [],
|
19467
19568
|
nativeCurrency: {
|
19468
19569
|
name: 'quarkblockchain Native Token',
|
@@ -19472,7 +19573,14 @@ const chainArray = [
|
|
19472
19573
|
infoURL: 'https://quarkblockchain.org/',
|
19473
19574
|
shortName: 'qki',
|
19474
19575
|
chainId: 20181205,
|
19475
|
-
networkId: 20181205
|
19576
|
+
networkId: 20181205,
|
19577
|
+
explorers: [
|
19578
|
+
{
|
19579
|
+
name: 'qkiscan',
|
19580
|
+
url: 'https://qkiscan.io',
|
19581
|
+
standard: 'EIP3091'
|
19582
|
+
}
|
19583
|
+
]
|
19476
19584
|
},
|
19477
19585
|
{
|
19478
19586
|
name: 'Pego Network',
|