eth-chainlist 0.0.238 → 0.0.240
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 +112 -20
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.240 (2023-09-24)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.239 ([6b52203](https://github.com/poowf/eth-chainlist/commit/6b52203cd8c05a54e3c17aa33a724143ffc9f12d))
|
9
|
+
* update chain data ([ea02803](https://github.com/poowf/eth-chainlist/commit/ea02803cc72f577cb459decdd04917921b48a56d))
|
10
|
+
|
11
|
+
### 0.0.239 (2023-09-23)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.238 ([c258c5d](https://github.com/poowf/eth-chainlist/commit/c258c5d3b14e6c36d7ae9e97a10f654f494a9b9f))
|
17
|
+
* update chain data ([60fab66](https://github.com/poowf/eth-chainlist/commit/60fab66d11abd29c2a8a058406b30f8479703ca4))
|
18
|
+
|
3
19
|
### 0.0.238 (2023-09-22)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -547,34 +547,42 @@ const chainArray = [
|
|
547
547
|
]
|
548
548
|
},
|
549
549
|
{
|
550
|
-
name: '
|
551
|
-
chain: '
|
550
|
+
name: 'Rootstock Mainnet',
|
551
|
+
chain: 'Rootstock',
|
552
552
|
rpc: [ 'https://public-node.rsk.co', 'https://mycrypto.rsk.co' ],
|
553
553
|
faucets: [],
|
554
|
+
icon: 'rootstock',
|
554
555
|
nativeCurrency: { name: 'Smart Bitcoin', symbol: 'RBTC', decimals: 18 },
|
555
|
-
infoURL: 'https://
|
556
|
+
infoURL: 'https://rootstock.io',
|
556
557
|
shortName: 'rsk',
|
557
558
|
chainId: 30,
|
558
559
|
networkId: 30,
|
559
560
|
slip44: 137,
|
560
561
|
explorers: [
|
561
562
|
{
|
562
|
-
name: '
|
563
|
+
name: 'Rootstock Explorer',
|
563
564
|
url: 'https://explorer.rsk.co',
|
564
565
|
standard: 'EIP3091'
|
566
|
+
},
|
567
|
+
{
|
568
|
+
name: 'blockscout',
|
569
|
+
url: 'https://rootstock.blockscout.com',
|
570
|
+
icon: 'blockscout',
|
571
|
+
standard: 'EIP3091'
|
565
572
|
}
|
566
573
|
]
|
567
574
|
},
|
568
575
|
{
|
569
|
-
name: '
|
570
|
-
chain: '
|
576
|
+
name: 'Rootstock Testnet',
|
577
|
+
chain: 'Rootstock',
|
571
578
|
rpc: [
|
572
579
|
'https://public-node.testnet.rsk.co',
|
573
580
|
'https://mycrypto.testnet.rsk.co'
|
574
581
|
],
|
575
582
|
faucets: [ 'https://faucet.rsk.co/' ],
|
583
|
+
icon: 'rootstock',
|
576
584
|
nativeCurrency: { name: 'Testnet Smart Bitcoin', symbol: 'tRBTC', decimals: 18 },
|
577
|
-
infoURL: 'https://
|
585
|
+
infoURL: 'https://rootstock.io',
|
578
586
|
shortName: 'trsk',
|
579
587
|
chainId: 31,
|
580
588
|
networkId: 31,
|
@@ -8915,16 +8923,27 @@ const chainArray = [
|
|
8915
8923
|
]
|
8916
8924
|
},
|
8917
8925
|
{
|
8918
|
-
name: 'Stratos
|
8926
|
+
name: 'Stratos',
|
8919
8927
|
chain: 'STOS',
|
8920
|
-
rpc: [],
|
8928
|
+
rpc: [ 'https://web3-rpc.thestratos.org' ],
|
8921
8929
|
faucets: [],
|
8922
8930
|
nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 },
|
8923
8931
|
infoURL: 'https://www.thestratos.org',
|
8924
8932
|
shortName: 'stos-mainnet',
|
8925
8933
|
chainId: 2048,
|
8926
8934
|
networkId: 2048,
|
8927
|
-
|
8935
|
+
explorers: [
|
8936
|
+
{
|
8937
|
+
name: 'Stratos EVM Explorer (Blockscout)',
|
8938
|
+
url: 'https://web3-explorer.thestratos.org',
|
8939
|
+
standard: 'none'
|
8940
|
+
},
|
8941
|
+
{
|
8942
|
+
name: 'Stratos Cosmos Explorer (BigDipper)',
|
8943
|
+
url: 'https://explorer.thestratos.org',
|
8944
|
+
standard: 'none'
|
8945
|
+
}
|
8946
|
+
]
|
8928
8947
|
},
|
8929
8948
|
{
|
8930
8949
|
name: 'Quokkacoin Mainnet',
|
@@ -11132,7 +11151,14 @@ const chainArray = [
|
|
11132
11151
|
shortName: 'hmnd',
|
11133
11152
|
chainId: 5234,
|
11134
11153
|
networkId: 5234,
|
11135
|
-
explorers: [
|
11154
|
+
explorers: [
|
11155
|
+
{
|
11156
|
+
name: 'Subscan',
|
11157
|
+
url: 'https://humanode.subscan.io',
|
11158
|
+
standard: 'EIP3091',
|
11159
|
+
icon: 'subscan'
|
11160
|
+
}
|
11161
|
+
]
|
11136
11162
|
},
|
11137
11163
|
{
|
11138
11164
|
name: 'Firechain Mainnet Old',
|
@@ -15124,6 +15150,25 @@ const chainArray = [
|
|
15124
15150
|
}
|
15125
15151
|
]
|
15126
15152
|
},
|
15153
|
+
{
|
15154
|
+
name: 'ConnectorManager',
|
15155
|
+
chain: 'Rangers',
|
15156
|
+
icon: 'rangers',
|
15157
|
+
rpc: [ 'https://cm.rangersprotocol.com/api/jsonrpc' ],
|
15158
|
+
faucets: [],
|
15159
|
+
nativeCurrency: { name: 'Rangers Protocol Gas', symbol: 'cmRPG', decimals: 18 },
|
15160
|
+
infoURL: 'https://rangersprotocol.com',
|
15161
|
+
shortName: 'cmrpg',
|
15162
|
+
chainId: 38400,
|
15163
|
+
networkId: 38400,
|
15164
|
+
explorers: [
|
15165
|
+
{
|
15166
|
+
name: 'rangersscan',
|
15167
|
+
url: 'https://scan.rangersprotocol.com',
|
15168
|
+
standard: 'none'
|
15169
|
+
}
|
15170
|
+
]
|
15171
|
+
},
|
15127
15172
|
{
|
15128
15173
|
name: 'ConnectorManager Robin',
|
15129
15174
|
chain: 'Rangers',
|
@@ -16453,6 +16498,25 @@ const chainArray = [
|
|
16453
16498
|
}
|
16454
16499
|
]
|
16455
16500
|
},
|
16501
|
+
{
|
16502
|
+
name: 'Foundry Chain Testnet',
|
16503
|
+
chain: 'tFNC',
|
16504
|
+
icon: 'fnc',
|
16505
|
+
rpc: [ 'https://testnet-rpc.foundryscan.org/' ],
|
16506
|
+
faucets: [ 'https://faucet.foundryscan.org' ],
|
16507
|
+
nativeCurrency: { name: 'Foundry Chain Testnet', symbol: 'tFNC', decimals: 18 },
|
16508
|
+
infoURL: 'https://foundrychain.org',
|
16509
|
+
shortName: 'fnc',
|
16510
|
+
chainId: 77238,
|
16511
|
+
networkId: 77238,
|
16512
|
+
explorers: [
|
16513
|
+
{
|
16514
|
+
name: 'Foundry Scan Testnet',
|
16515
|
+
url: 'https://testnet-explorer.foundryscan.org',
|
16516
|
+
standard: 'EIP3091'
|
16517
|
+
}
|
16518
|
+
]
|
16519
|
+
},
|
16456
16520
|
{
|
16457
16521
|
name: 'Vention Smart Chain Mainnet',
|
16458
16522
|
chain: 'VSC',
|
@@ -17973,7 +18037,7 @@ const chainArray = [
|
|
17973
18037
|
{
|
17974
18038
|
name: 'Reapchain Mainnet',
|
17975
18039
|
chain: 'REAP',
|
17976
|
-
rpc: [ 'https://
|
18040
|
+
rpc: [ 'https://eth.reapchain.org' ],
|
17977
18041
|
faucets: [],
|
17978
18042
|
nativeCurrency: { name: 'Reap', symbol: 'REAP', decimals: 18 },
|
17979
18043
|
features: [],
|
@@ -18261,18 +18325,36 @@ const chainArray = [
|
|
18261
18325
|
},
|
18262
18326
|
{
|
18263
18327
|
name: 'Oone Chain Testnet',
|
18264
|
-
chain: 'OONE',
|
18265
|
-
rpc: [ 'https://
|
18328
|
+
chain: 'OONE Testnet',
|
18329
|
+
rpc: [ 'https://rpc.testnet.oonechain.com' ],
|
18266
18330
|
faucets: [ 'https://apps-test.adigium.com/faucet' ],
|
18267
|
-
nativeCurrency: { name: '
|
18268
|
-
infoURL: 'https://
|
18331
|
+
nativeCurrency: { name: 'tOONE', symbol: 'tOONE', decimals: 18 },
|
18332
|
+
infoURL: 'https://oonechain.com',
|
18269
18333
|
shortName: 'oonetest',
|
18334
|
+
chainId: 333666,
|
18335
|
+
networkId: 333666,
|
18336
|
+
explorers: [
|
18337
|
+
{
|
18338
|
+
name: 'blockscout',
|
18339
|
+
url: 'https://testnet.oonescan.com',
|
18340
|
+
standard: 'none'
|
18341
|
+
}
|
18342
|
+
]
|
18343
|
+
},
|
18344
|
+
{
|
18345
|
+
name: 'Oone Chain Devnet',
|
18346
|
+
chain: 'OONE Devnet',
|
18347
|
+
rpc: [ 'https://rpc.dev.oonechain.com' ],
|
18348
|
+
faucets: [ 'https://apps-test.adigium.com/faucet' ],
|
18349
|
+
nativeCurrency: { name: 'tOONE', symbol: 'tOONE', decimals: 18 },
|
18350
|
+
infoURL: 'https://oonechain.com',
|
18351
|
+
shortName: 'oonedev',
|
18270
18352
|
chainId: 333777,
|
18271
18353
|
networkId: 333777,
|
18272
18354
|
explorers: [
|
18273
18355
|
{
|
18274
|
-
name: '
|
18275
|
-
url: 'https://
|
18356
|
+
name: 'blockscout',
|
18357
|
+
url: 'https://dev.oonescan.com',
|
18276
18358
|
standard: 'none'
|
18277
18359
|
}
|
18278
18360
|
]
|
@@ -18706,7 +18788,12 @@ const chainArray = [
|
|
18706
18788
|
name: 'Scroll Sepolia Testnet',
|
18707
18789
|
chain: 'ETH',
|
18708
18790
|
status: 'active',
|
18709
|
-
rpc: [
|
18791
|
+
rpc: [
|
18792
|
+
'https://sepolia-rpc.scroll.io',
|
18793
|
+
'https://rpc.ankr.com/scroll_sepolia_testnet',
|
18794
|
+
'https://scroll-sepolia.chainstacklabs.com',
|
18795
|
+
'https://scroll-testnet-public.unifra.io'
|
18796
|
+
],
|
18710
18797
|
faucets: [],
|
18711
18798
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
18712
18799
|
infoURL: 'https://scroll.io',
|
@@ -18715,7 +18802,12 @@ const chainArray = [
|
|
18715
18802
|
networkId: 534351,
|
18716
18803
|
explorers: [
|
18717
18804
|
{
|
18718
|
-
name: 'Scroll Sepolia
|
18805
|
+
name: 'Scroll Sepolia Etherscan',
|
18806
|
+
url: 'https://sepolia.scrollscan.dev',
|
18807
|
+
standard: 'EIP3091'
|
18808
|
+
},
|
18809
|
+
{
|
18810
|
+
name: 'Scroll Sepolia Blockscout',
|
18719
18811
|
url: 'https://sepolia-blockscout.scroll.io',
|
18720
18812
|
standard: 'EIP3091'
|
18721
18813
|
}
|