eth-chainlist 0.0.155 → 0.0.157
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 +128 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.157 (2023-05-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.156 ([acaca6f](https://github.com/poowf/eth-chainlist/commit/acaca6f633ef36647922eaad3e595ecb7e8ec8ce))
|
9
|
+
* update chain data ([1d7d23f](https://github.com/poowf/eth-chainlist/commit/1d7d23f6d05c2356200419e0e06a9a61baa2a7a8))
|
10
|
+
|
11
|
+
### 0.0.156 (2023-05-24)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.155 ([a700f9c](https://github.com/poowf/eth-chainlist/commit/a700f9cfdbf7a4347cc5a1f182b8c07807c1f0b8))
|
17
|
+
* update chain data ([f82197d](https://github.com/poowf/eth-chainlist/commit/f82197d76f2a2bd2dfcb7a54aca073f3822046ab))
|
18
|
+
|
3
19
|
### 0.0.155 (2023-05-23)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -4462,6 +4462,25 @@ const chainArray = [
|
|
4462
4462
|
}
|
4463
4463
|
]
|
4464
4464
|
},
|
4465
|
+
{
|
4466
|
+
name: 'Shibarium Beta',
|
4467
|
+
chain: 'Shibarium',
|
4468
|
+
icon: 'shibarium',
|
4469
|
+
rpc: [ 'https://puppynet.shibrpc.com' ],
|
4470
|
+
faucets: [],
|
4471
|
+
nativeCurrency: { name: 'BONE', symbol: 'BONE', decimals: 18 },
|
4472
|
+
infoURL: 'https://beta.shibariumtech.com',
|
4473
|
+
shortName: 'shibarium',
|
4474
|
+
chainId: 719,
|
4475
|
+
networkId: 719,
|
4476
|
+
explorers: [
|
4477
|
+
{
|
4478
|
+
name: 'shibscan',
|
4479
|
+
url: 'https://puppyscan.shib.io',
|
4480
|
+
standard: 'EIP3091'
|
4481
|
+
}
|
4482
|
+
]
|
4483
|
+
},
|
4465
4484
|
{
|
4466
4485
|
name: 'Lycan Chain',
|
4467
4486
|
chain: 'LYC',
|
@@ -5758,6 +5777,26 @@ const chainArray = [
|
|
5758
5777
|
}
|
5759
5778
|
]
|
5760
5779
|
},
|
5780
|
+
{
|
5781
|
+
name: 'Origin Testnet',
|
5782
|
+
chain: 'Origin',
|
5783
|
+
rpc: [ 'https://json-rpc.origin.uptick.network' ],
|
5784
|
+
faucets: [],
|
5785
|
+
nativeCurrency: { name: 'Origin', symbol: 'UOC', decimals: 18 },
|
5786
|
+
infoURL: 'https://www.uptick.network',
|
5787
|
+
shortName: 'auoc',
|
5788
|
+
chainId: 1170,
|
5789
|
+
networkId: 1170,
|
5790
|
+
icon: 'origin',
|
5791
|
+
explorers: [
|
5792
|
+
{
|
5793
|
+
name: 'Origin Explorer',
|
5794
|
+
url: 'https://evm-explorer.origin.uptick.network',
|
5795
|
+
icon: 'origin',
|
5796
|
+
standard: 'none'
|
5797
|
+
}
|
5798
|
+
]
|
5799
|
+
},
|
5761
5800
|
{
|
5762
5801
|
name: 'Smart Host Teknoloji TESTNET',
|
5763
5802
|
chain: 'SHT',
|
@@ -7107,10 +7146,10 @@ const chainArray = [
|
|
7107
7146
|
{
|
7108
7147
|
name: 'Super Smart Chain Testnet',
|
7109
7148
|
chain: 'TSCS',
|
7110
|
-
rpc: [ 'https://
|
7111
|
-
faucets: [ 'https://testnet.
|
7149
|
+
rpc: [ 'https://testnetrpc.scschain.com' ],
|
7150
|
+
faucets: [ 'https://testnet.scschain.com' ],
|
7112
7151
|
nativeCurrency: { name: 'Super Chain Native Token', symbol: 'TSCS', decimals: 18 },
|
7113
|
-
infoURL: 'https://testnet.
|
7152
|
+
infoURL: 'https://testnet.scschain.com',
|
7114
7153
|
shortName: 'tscs',
|
7115
7154
|
chainId: 1969,
|
7116
7155
|
networkId: 1969,
|
@@ -7118,7 +7157,7 @@ const chainArray = [
|
|
7118
7157
|
explorers: [
|
7119
7158
|
{
|
7120
7159
|
name: 'blockscout',
|
7121
|
-
url: 'https://testnetscan.
|
7160
|
+
url: 'https://testnetscan.scschain.com',
|
7122
7161
|
standard: 'EIP3091'
|
7123
7162
|
}
|
7124
7163
|
]
|
@@ -7126,10 +7165,10 @@ const chainArray = [
|
|
7126
7165
|
{
|
7127
7166
|
name: 'Super Smart Chain Mainnet',
|
7128
7167
|
chain: 'SCS',
|
7129
|
-
rpc: [ 'https://
|
7168
|
+
rpc: [ 'https://rpc.scschain.com' ],
|
7130
7169
|
faucets: [],
|
7131
7170
|
nativeCurrency: { name: 'Super Chain Native Token', symbol: 'SCS', decimals: 18 },
|
7132
|
-
infoURL: 'https://
|
7171
|
+
infoURL: 'https://scschain.com',
|
7133
7172
|
shortName: 'scs',
|
7134
7173
|
chainId: 1970,
|
7135
7174
|
networkId: 1970,
|
@@ -7137,7 +7176,7 @@ const chainArray = [
|
|
7137
7176
|
explorers: [
|
7138
7177
|
{
|
7139
7178
|
name: 'blockscout',
|
7140
|
-
url: 'https://scan.
|
7179
|
+
url: 'https://scan.scschain.com',
|
7141
7180
|
standard: 'EIP3091'
|
7142
7181
|
}
|
7143
7182
|
]
|
@@ -9508,6 +9547,30 @@ const chainArray = [
|
|
9508
9547
|
}
|
9509
9548
|
]
|
9510
9549
|
},
|
9550
|
+
{
|
9551
|
+
name: 'Fox Testnet Network',
|
9552
|
+
chain: 'FOX',
|
9553
|
+
rpc: [
|
9554
|
+
'https://rpc-testnet-v1.foxchain.app/',
|
9555
|
+
'https://rpc2-testnet-v1.foxchain.app/',
|
9556
|
+
'https://rpc3-testnet-v1.foxchain.app'
|
9557
|
+
],
|
9558
|
+
faucets: [ 'https://faucet.foxchain.app' ],
|
9559
|
+
nativeCurrency: { name: 'FOX Native Token', symbol: 'tFOX', decimals: 18 },
|
9560
|
+
infoURL: 'https://foxchain.app',
|
9561
|
+
shortName: 'fox',
|
9562
|
+
chainId: 6565,
|
9563
|
+
networkId: 6565,
|
9564
|
+
icon: 'fox',
|
9565
|
+
explorers: [
|
9566
|
+
{
|
9567
|
+
name: 'FOX Testnet Explorer',
|
9568
|
+
icon: 'fox',
|
9569
|
+
url: 'https://testnet.foxscan.app',
|
9570
|
+
standard: 'none'
|
9571
|
+
}
|
9572
|
+
]
|
9573
|
+
},
|
9511
9574
|
{
|
9512
9575
|
name: 'Pixie Chain Mainnet',
|
9513
9576
|
chain: 'PixieChain',
|
@@ -10822,6 +10885,26 @@ const chainArray = [
|
|
10822
10885
|
}
|
10823
10886
|
]
|
10824
10887
|
},
|
10888
|
+
{
|
10889
|
+
name: 'PepeNetwork Mainnet',
|
10890
|
+
chain: 'PepeNetwork',
|
10891
|
+
rpc: [ 'https://rpc-mainnet.pepenetwork.io' ],
|
10892
|
+
faucets: [],
|
10893
|
+
nativeCurrency: { name: 'Pepe', symbol: 'WPEPE', decimals: 18 },
|
10894
|
+
infoURL: 'https://pepenetwork.io',
|
10895
|
+
shortName: 'pn',
|
10896
|
+
chainId: 9779,
|
10897
|
+
networkId: 9779,
|
10898
|
+
icon: 'pepenetwork',
|
10899
|
+
explorers: [
|
10900
|
+
{
|
10901
|
+
name: 'Pepe Explorer',
|
10902
|
+
url: 'https://explorer.pepenetwork.io',
|
10903
|
+
icon: 'pepenetwork',
|
10904
|
+
standard: 'none'
|
10905
|
+
}
|
10906
|
+
]
|
10907
|
+
},
|
10825
10908
|
{
|
10826
10909
|
name: 'Carbon EVM',
|
10827
10910
|
chain: 'Carbon',
|
@@ -13040,8 +13123,8 @@ const chainArray = [
|
|
13040
13123
|
rpc: [
|
13041
13124
|
'https://rpc.goerli.linea.build',
|
13042
13125
|
'wss://rpc.goerli.linea.build',
|
13043
|
-
'https://
|
13044
|
-
'wss://
|
13126
|
+
'https://linea-goerli.infura.io/v3/${INFURA_API_KEY}',
|
13127
|
+
'wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}'
|
13045
13128
|
],
|
13046
13129
|
faucets: [ 'https://faucetlink.to/goerli' ],
|
13047
13130
|
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
@@ -15006,6 +15089,25 @@ const chainArray = [
|
|
15006
15089
|
chainId: 333999,
|
15007
15090
|
networkId: 333999
|
15008
15091
|
},
|
15092
|
+
{
|
15093
|
+
name: 'Bitfinity Network Testnet',
|
15094
|
+
chain: 'BFT',
|
15095
|
+
rpc: [ 'https://testnet.bitfinity.network' ],
|
15096
|
+
faucets: [ 'https://bitfinity.network/faucet' ],
|
15097
|
+
nativeCurrency: { name: 'BITFINITY', symbol: 'BFT', decimals: 18 },
|
15098
|
+
infoURL: 'https://bitfinity.network',
|
15099
|
+
shortName: 'Bitfinity',
|
15100
|
+
chainId: 355113,
|
15101
|
+
networkId: 355113,
|
15102
|
+
explorers: [
|
15103
|
+
{
|
15104
|
+
name: 'Bitfinity Block Explorer',
|
15105
|
+
url: 'https://explorer.bitfinity.network',
|
15106
|
+
icon: 'bitfinity',
|
15107
|
+
standard: 'EIP3091'
|
15108
|
+
}
|
15109
|
+
]
|
15110
|
+
},
|
15009
15111
|
{
|
15010
15112
|
name: 'HAPchain Testnet',
|
15011
15113
|
chain: 'HAPchain',
|
@@ -15325,9 +15427,24 @@ const chainArray = [
|
|
15325
15427
|
],
|
15326
15428
|
infoURL: 'https://etherfair.org'
|
15327
15429
|
},
|
15430
|
+
{
|
15431
|
+
name: 'Scroll Sepolia Testnet',
|
15432
|
+
chain: 'ETH',
|
15433
|
+
status: 'incubating',
|
15434
|
+
rpc: [],
|
15435
|
+
faucets: [],
|
15436
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15437
|
+
infoURL: 'https://scroll.io',
|
15438
|
+
shortName: 'scr-sepolia',
|
15439
|
+
chainId: 534351,
|
15440
|
+
networkId: 534351,
|
15441
|
+
explorers: [],
|
15442
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] }
|
15443
|
+
},
|
15328
15444
|
{
|
15329
15445
|
name: 'Scroll',
|
15330
15446
|
chain: 'ETH',
|
15447
|
+
status: 'incubating',
|
15331
15448
|
rpc: [],
|
15332
15449
|
faucets: [],
|
15333
15450
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -15341,7 +15458,7 @@ const chainArray = [
|
|
15341
15458
|
{
|
15342
15459
|
name: 'Scroll Alpha Testnet',
|
15343
15460
|
chain: 'ETH',
|
15344
|
-
status: '
|
15461
|
+
status: 'active',
|
15345
15462
|
rpc: [ 'https://alpha-rpc.scroll.io/l2' ],
|
15346
15463
|
faucets: [],
|
15347
15464
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -15366,6 +15483,7 @@ const chainArray = [
|
|
15366
15483
|
{
|
15367
15484
|
name: 'Scroll Pre-Alpha Testnet',
|
15368
15485
|
chain: 'ETH',
|
15486
|
+
status: 'deprecated',
|
15369
15487
|
rpc: [ 'https://prealpha-rpc.scroll.io/l2' ],
|
15370
15488
|
faucets: [ 'https://prealpha.scroll.io/faucet' ],
|
15371
15489
|
nativeCurrency: { name: 'Ether', symbol: 'TSETH', decimals: 18 },
|