eth-chainlist 0.0.194 → 0.0.196
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 +193 -23
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.196 (2023-07-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.195 ([04d1739](https://github.com/poowf/eth-chainlist/commit/04d173940b4c109e0bc193e361ee84f5fe8bfc17))
|
9
|
+
* update chain data ([4b6155b](https://github.com/poowf/eth-chainlist/commit/4b6155b996800ce7375fbdbd0c021641e06aecde))
|
10
|
+
|
11
|
+
### 0.0.195 (2023-07-26)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.194 ([28fe53e](https://github.com/poowf/eth-chainlist/commit/28fe53eef454d23f20c71e659f3391c2784f9daf))
|
17
|
+
* update chain data ([7c686fc](https://github.com/poowf/eth-chainlist/commit/7c686fc9e6a939ce96e8840d7c9846bd1066a375))
|
18
|
+
|
3
19
|
### 0.0.194 (2023-07-25)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -24,6 +24,12 @@ const chainArray = [
|
|
24
24
|
name: 'etherscan',
|
25
25
|
url: 'https://etherscan.io',
|
26
26
|
standard: 'EIP3091'
|
27
|
+
},
|
28
|
+
{
|
29
|
+
name: 'blockscout',
|
30
|
+
url: 'https://eth.blockscout.com',
|
31
|
+
icon: 'blockscout',
|
32
|
+
standard: 'EIP3091'
|
27
33
|
}
|
28
34
|
]
|
29
35
|
},
|
@@ -117,6 +123,12 @@ const chainArray = [
|
|
117
123
|
name: 'etherscan-goerli',
|
118
124
|
url: 'https://goerli.etherscan.io',
|
119
125
|
standard: 'EIP3091'
|
126
|
+
},
|
127
|
+
{
|
128
|
+
name: 'blockscout-goerli',
|
129
|
+
url: 'https://eth-goerli.blockscout.com',
|
130
|
+
icon: 'blockscout',
|
131
|
+
standard: 'EIP3091'
|
120
132
|
}
|
121
133
|
]
|
122
134
|
},
|
@@ -195,6 +207,12 @@ const chainArray = [
|
|
195
207
|
name: 'etherscan',
|
196
208
|
url: 'https://optimistic.etherscan.io',
|
197
209
|
standard: 'EIP3091'
|
210
|
+
},
|
211
|
+
{
|
212
|
+
name: 'blockscout',
|
213
|
+
url: 'https://optimism.blockscout.com',
|
214
|
+
icon: 'blockscout',
|
215
|
+
standard: 'EIP3091'
|
198
216
|
}
|
199
217
|
]
|
200
218
|
},
|
@@ -1361,7 +1379,7 @@ const chainArray = [
|
|
1361
1379
|
{
|
1362
1380
|
name: 'Decimal Smart Chain Mainnet',
|
1363
1381
|
chain: 'DSC',
|
1364
|
-
rpc: [ 'https://node.decimalchain.com/web3' ],
|
1382
|
+
rpc: [ 'https://node.decimalchain.com/web3/' ],
|
1365
1383
|
faucets: [],
|
1366
1384
|
nativeCurrency: { name: 'Decimal', symbol: 'DEL', decimals: 18 },
|
1367
1385
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -1409,7 +1427,8 @@ const chainArray = [
|
|
1409
1427
|
{
|
1410
1428
|
name: 'blockscout',
|
1411
1429
|
url: 'https://blockscout.com/poa/sokol',
|
1412
|
-
|
1430
|
+
icon: 'blockscout',
|
1431
|
+
standard: 'EIP3091'
|
1413
1432
|
}
|
1414
1433
|
]
|
1415
1434
|
},
|
@@ -1469,22 +1488,28 @@ const chainArray = [
|
|
1469
1488
|
]
|
1470
1489
|
},
|
1471
1490
|
{
|
1472
|
-
name: '
|
1473
|
-
chain: '
|
1474
|
-
rpc: [
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1491
|
+
name: 'Japan Open Chain Mainnet',
|
1492
|
+
chain: 'JOC',
|
1493
|
+
rpc: [
|
1494
|
+
'https://rpc-1.japanopenchain.org:8545',
|
1495
|
+
'https://rpc-2.japanopenchain.org:8545'
|
1496
|
+
],
|
1497
|
+
faucets: [],
|
1498
|
+
nativeCurrency: { name: 'Japan Open Chain Token', symbol: 'JOC', decimals: 18 },
|
1499
|
+
infoURL: 'https://www.japanopenchain.org/',
|
1500
|
+
shortName: 'joc',
|
1478
1501
|
chainId: 81,
|
1479
1502
|
networkId: 81,
|
1480
|
-
|
1503
|
+
icon: 'joc',
|
1481
1504
|
explorers: [
|
1482
1505
|
{
|
1483
|
-
name: '
|
1484
|
-
url: 'https://
|
1485
|
-
standard: 'EIP3091'
|
1506
|
+
name: 'Block Explorer',
|
1507
|
+
url: 'https://explorer.japanopenchain.org',
|
1508
|
+
standard: 'EIP3091',
|
1509
|
+
icon: 'joc'
|
1486
1510
|
}
|
1487
|
-
]
|
1511
|
+
],
|
1512
|
+
redFlags: [ 'reusedChainId' ]
|
1488
1513
|
},
|
1489
1514
|
{
|
1490
1515
|
name: 'Meter Mainnet',
|
@@ -1831,7 +1856,8 @@ const chainArray = [
|
|
1831
1856
|
{
|
1832
1857
|
name: 'blockscout',
|
1833
1858
|
url: 'https://blockscout.com/poa/core',
|
1834
|
-
|
1859
|
+
icon: 'blockscout',
|
1860
|
+
standard: 'EIP3091'
|
1835
1861
|
}
|
1836
1862
|
]
|
1837
1863
|
},
|
@@ -1869,7 +1895,7 @@ const chainArray = [
|
|
1869
1895
|
},
|
1870
1896
|
{
|
1871
1897
|
name: 'blockscout',
|
1872
|
-
url: 'https://blockscout.com
|
1898
|
+
url: 'https://gnosis.blockscout.com',
|
1873
1899
|
icon: 'blockscout',
|
1874
1900
|
standard: 'EIP3091'
|
1875
1901
|
}
|
@@ -2944,8 +2970,9 @@ const chainArray = [
|
|
2944
2970
|
{
|
2945
2971
|
name: 'Bitnet',
|
2946
2972
|
chain: 'BTN',
|
2947
|
-
|
2948
|
-
|
2973
|
+
icon: 'bitnet',
|
2974
|
+
rpc: [ 'https://rpc.bitnet.money', 'https://rpc.btnscan.com' ],
|
2975
|
+
faucets: [],
|
2949
2976
|
nativeCurrency: { name: 'Bitnet', symbol: 'BTN', decimals: 18 },
|
2950
2977
|
infoURL: 'https://bitnet.money',
|
2951
2978
|
shortName: 'BTN',
|
@@ -3780,6 +3807,12 @@ const chainArray = [
|
|
3780
3807
|
url: 'https://shiden.subscan.io',
|
3781
3808
|
standard: 'none',
|
3782
3809
|
icon: 'subscan'
|
3810
|
+
},
|
3811
|
+
{
|
3812
|
+
name: 'blockscout',
|
3813
|
+
url: 'https://blockscout.com/shiden',
|
3814
|
+
icon: 'blockscout',
|
3815
|
+
standard: 'EIP3091'
|
3783
3816
|
}
|
3784
3817
|
]
|
3785
3818
|
},
|
@@ -4027,7 +4060,15 @@ const chainArray = [
|
|
4027
4060
|
infoURL: 'https://optimism.io',
|
4028
4061
|
shortName: 'ogor',
|
4029
4062
|
chainId: 420,
|
4030
|
-
networkId: 420
|
4063
|
+
networkId: 420,
|
4064
|
+
explorers: [
|
4065
|
+
{
|
4066
|
+
name: 'blockscout',
|
4067
|
+
url: 'https://optimism-goerli.blockscout.com',
|
4068
|
+
icon: 'blockscout',
|
4069
|
+
standard: 'EIP3091'
|
4070
|
+
}
|
4071
|
+
]
|
4031
4072
|
},
|
4032
4073
|
{
|
4033
4074
|
name: 'PGN (Public Goods Network)',
|
@@ -4410,6 +4451,12 @@ const chainArray = [
|
|
4410
4451
|
url: 'https://astar.subscan.io',
|
4411
4452
|
standard: 'none',
|
4412
4453
|
icon: 'subscan'
|
4454
|
+
},
|
4455
|
+
{
|
4456
|
+
name: 'blockscout',
|
4457
|
+
url: 'https://blockscout.com/astar',
|
4458
|
+
icon: 'blockscout',
|
4459
|
+
standard: 'EIP3091'
|
4413
4460
|
}
|
4414
4461
|
]
|
4415
4462
|
},
|
@@ -10487,6 +10534,12 @@ const chainArray = [
|
|
10487
10534
|
name: 'ZetaChain Athens Testnet Explorer',
|
10488
10535
|
url: 'https://explorer.athens.zetachain.com',
|
10489
10536
|
standard: 'none'
|
10537
|
+
},
|
10538
|
+
{
|
10539
|
+
name: 'blockscout',
|
10540
|
+
url: 'https://zetachain-athens-3.blockscout.com',
|
10541
|
+
icon: 'blockscout',
|
10542
|
+
standard: 'EIP3091'
|
10490
10543
|
}
|
10491
10544
|
]
|
10492
10545
|
},
|
@@ -11229,7 +11282,8 @@ const chainArray = [
|
|
11229
11282
|
{
|
11230
11283
|
name: 'basescout',
|
11231
11284
|
url: 'https://base.blockscout.com',
|
11232
|
-
|
11285
|
+
icon: 'blockscout',
|
11286
|
+
standard: 'EIP3091'
|
11233
11287
|
}
|
11234
11288
|
],
|
11235
11289
|
status: 'active'
|
@@ -11833,6 +11887,44 @@ const chainArray = [
|
|
11833
11887
|
networkId: 9792,
|
11834
11888
|
explorers: []
|
11835
11889
|
},
|
11890
|
+
{
|
11891
|
+
name: 'Mind Smart Chain Testnet',
|
11892
|
+
chain: 'tMIND',
|
11893
|
+
icon: 'mindchain',
|
11894
|
+
rpc: [ 'https://testnet-msc.mindchain.info/' ],
|
11895
|
+
faucets: [ 'https://faucet.mindchain.info/' ],
|
11896
|
+
nativeCurrency: { name: 'MIND Coin', symbol: 'tMIND', decimals: 18 },
|
11897
|
+
infoURL: 'https://mindscan.info',
|
11898
|
+
shortName: 'tMIND',
|
11899
|
+
chainId: 9977,
|
11900
|
+
networkId: 9977,
|
11901
|
+
explorers: [
|
11902
|
+
{
|
11903
|
+
name: 'Mind Chain explorer',
|
11904
|
+
url: 'https://testnet.mindscan.info',
|
11905
|
+
standard: 'EIP3091'
|
11906
|
+
}
|
11907
|
+
]
|
11908
|
+
},
|
11909
|
+
{
|
11910
|
+
name: 'Mind Smart Chain Mainnet',
|
11911
|
+
chain: 'MIND',
|
11912
|
+
icon: 'mindchain',
|
11913
|
+
rpc: [ 'https://rpc-msc.mindchain.info/' ],
|
11914
|
+
faucets: [],
|
11915
|
+
nativeCurrency: { name: 'MIND Coin', symbol: 'MIND', decimals: 18 },
|
11916
|
+
infoURL: 'https://mindscan.info',
|
11917
|
+
shortName: 'MIND',
|
11918
|
+
chainId: 9996,
|
11919
|
+
networkId: 9996,
|
11920
|
+
explorers: [
|
11921
|
+
{
|
11922
|
+
name: 'Mind Chain explorer',
|
11923
|
+
url: 'https://mainnet.mindscan.info',
|
11924
|
+
standard: 'EIP3091'
|
11925
|
+
}
|
11926
|
+
]
|
11927
|
+
},
|
11836
11928
|
{
|
11837
11929
|
name: 'AltLayer Testnet',
|
11838
11930
|
chain: 'ETH',
|
@@ -11963,10 +12055,16 @@ const chainArray = [
|
|
11963
12055
|
networkId: 10200,
|
11964
12056
|
explorers: [
|
11965
12057
|
{
|
11966
|
-
name: 'blockscout',
|
12058
|
+
name: 'blockscout-chiadochain',
|
11967
12059
|
url: 'https://blockscout.chiadochain.net',
|
11968
12060
|
icon: 'blockscout',
|
11969
12061
|
standard: 'EIP3091'
|
12062
|
+
},
|
12063
|
+
{
|
12064
|
+
name: 'blockscout',
|
12065
|
+
url: 'https://gnosis-chiado.blockscout.com',
|
12066
|
+
icon: 'blockscout',
|
12067
|
+
standard: 'EIP3091'
|
11970
12068
|
}
|
11971
12069
|
]
|
11972
12070
|
},
|
@@ -12753,6 +12851,26 @@ const chainArray = [
|
|
12753
12851
|
}
|
12754
12852
|
]
|
12755
12853
|
},
|
12854
|
+
{
|
12855
|
+
name: 'Smart Trade Networks',
|
12856
|
+
chain: 'Smart Trade Networks',
|
12857
|
+
rpc: [ 'https://beefledgerwallet.com:8544' ],
|
12858
|
+
faucets: [],
|
12859
|
+
nativeCurrency: { name: 'STN', symbol: 'STN', decimals: 18 },
|
12860
|
+
infoURL: 'https://www.smarttradenetworks.com',
|
12861
|
+
shortName: 'STN',
|
12862
|
+
chainId: 18122,
|
12863
|
+
networkId: 18122,
|
12864
|
+
icon: 'stn',
|
12865
|
+
explorers: [
|
12866
|
+
{
|
12867
|
+
name: 'stnscan',
|
12868
|
+
url: 'https://stnscan.com',
|
12869
|
+
icon: 'stn',
|
12870
|
+
standard: 'none'
|
12871
|
+
}
|
12872
|
+
]
|
12873
|
+
},
|
12756
12874
|
{
|
12757
12875
|
name: 'Proof Of Memes',
|
12758
12876
|
title: 'Proof Of Memes Mainnet',
|
@@ -15026,7 +15144,8 @@ const chainArray = [
|
|
15026
15144
|
{
|
15027
15145
|
name: 'basescout',
|
15028
15146
|
url: 'https://base-goerli.blockscout.com',
|
15029
|
-
|
15147
|
+
icon: 'blockscout',
|
15148
|
+
standard: 'EIP3091'
|
15030
15149
|
}
|
15031
15150
|
]
|
15032
15151
|
},
|
@@ -16059,7 +16178,7 @@ const chainArray = [
|
|
16059
16178
|
{
|
16060
16179
|
name: 'Decimal Smart Chain Testnet',
|
16061
16180
|
chain: 'tDSC',
|
16062
|
-
rpc: [ 'https://testnet-val.decimalchain.com/web3' ],
|
16181
|
+
rpc: [ 'https://testnet-val.decimalchain.com/web3/' ],
|
16063
16182
|
faucets: [],
|
16064
16183
|
nativeCurrency: { name: 'Decimal', symbol: 'tDEL', decimals: 18 },
|
16065
16184
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -16143,6 +16262,48 @@ const chainArray = [
|
|
16143
16262
|
}
|
16144
16263
|
]
|
16145
16264
|
},
|
16265
|
+
{
|
16266
|
+
name: 'Reapchain Mainnet',
|
16267
|
+
chain: 'REAP',
|
16268
|
+
rpc: [ 'https://rpc.reapchain.org' ],
|
16269
|
+
faucets: [],
|
16270
|
+
nativeCurrency: { name: 'Reap', symbol: 'REAP', decimals: 18 },
|
16271
|
+
features: [],
|
16272
|
+
infoURL: 'https://reapchain.com',
|
16273
|
+
shortName: 'reap',
|
16274
|
+
chainId: 221230,
|
16275
|
+
networkId: 221230,
|
16276
|
+
icon: 'reapchain',
|
16277
|
+
explorers: [
|
16278
|
+
{
|
16279
|
+
name: 'Reapchain Dashboard',
|
16280
|
+
url: 'https://dashboard.reapchain.org',
|
16281
|
+
icon: 'reapchain',
|
16282
|
+
standard: 'none'
|
16283
|
+
}
|
16284
|
+
]
|
16285
|
+
},
|
16286
|
+
{
|
16287
|
+
name: 'Reapchain Testnet',
|
16288
|
+
chain: 'REAP',
|
16289
|
+
rpc: [ 'https://test-rpc.reapchain.org' ],
|
16290
|
+
faucets: [ 'http://faucet.reapchain.com' ],
|
16291
|
+
nativeCurrency: { name: 'test-Reap', symbol: 'tREAP', decimals: 18 },
|
16292
|
+
features: [],
|
16293
|
+
infoURL: 'https://reapchain.com',
|
16294
|
+
shortName: 'reap-testnet',
|
16295
|
+
chainId: 221231,
|
16296
|
+
networkId: 221231,
|
16297
|
+
icon: 'reapchain',
|
16298
|
+
explorers: [
|
16299
|
+
{
|
16300
|
+
name: 'Reapchain Testnet Dashboard',
|
16301
|
+
url: 'https://test-dashboard.reapchain.org',
|
16302
|
+
icon: 'reapchain',
|
16303
|
+
standard: 'none'
|
16304
|
+
}
|
16305
|
+
]
|
16306
|
+
},
|
16146
16307
|
{
|
16147
16308
|
name: 'Taf ECO Chain Mainnet',
|
16148
16309
|
chain: 'Taf ECO Chain',
|
@@ -17652,7 +17813,10 @@ const chainArray = [
|
|
17652
17813
|
rpc: [
|
17653
17814
|
'https://rpc.sepolia.org',
|
17654
17815
|
'https://rpc2.sepolia.org',
|
17655
|
-
'https://rpc-sepolia.rockx.com'
|
17816
|
+
'https://rpc-sepolia.rockx.com',
|
17817
|
+
'https://rpc.sepolia.ethpandaops.io',
|
17818
|
+
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
17819
|
+
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}'
|
17656
17820
|
],
|
17657
17821
|
faucets: [
|
17658
17822
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|
@@ -18078,6 +18242,12 @@ const chainArray = [
|
|
18078
18242
|
name: 'neonscan',
|
18079
18243
|
url: 'https://devnet.neonscan.org',
|
18080
18244
|
standard: 'EIP3091'
|
18245
|
+
},
|
18246
|
+
{
|
18247
|
+
name: 'blockscout',
|
18248
|
+
url: 'https://neon-devnet.blockscout.com',
|
18249
|
+
icon: 'blockscout',
|
18250
|
+
standard: 'EIP3091'
|
18081
18251
|
}
|
18082
18252
|
]
|
18083
18253
|
},
|