eth-chainlist 0.0.164 → 0.0.166
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 +94 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.166 (2023-06-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.165 ([6c15ae8](https://github.com/poowf/eth-chainlist/commit/6c15ae8590460e72c1160cf4ce8ba389a86faba9))
|
9
|
+
* update chain data ([c1bb5e7](https://github.com/poowf/eth-chainlist/commit/c1bb5e71193e4005e7eec59aa8fc5b7de2fa0fd6))
|
10
|
+
|
11
|
+
### 0.0.165 (2023-06-08)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.164 ([eb4e5b6](https://github.com/poowf/eth-chainlist/commit/eb4e5b66876e84e94791092d3dd2c13c80d78364))
|
17
|
+
* update chain data ([6fa9042](https://github.com/poowf/eth-chainlist/commit/6fa90420f5172f52d7520885401c7961942d3894))
|
18
|
+
|
3
19
|
### 0.0.164 (2023-06-07)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3225,7 +3225,8 @@ const chainArray = [
|
|
3225
3225
|
icon: 'LaChain',
|
3226
3226
|
rpc: [
|
3227
3227
|
'https://rpc1.mainnet.lachain.network',
|
3228
|
-
'https://rpc2.mainnet.lachain.network'
|
3228
|
+
'https://rpc2.mainnet.lachain.network',
|
3229
|
+
'https://lachain.rpc-nodes.cedalio.dev'
|
3229
3230
|
],
|
3230
3231
|
faucets: [],
|
3231
3232
|
nativeCurrency: { name: 'LaCoin', symbol: 'LAC', decimals: 18 },
|
@@ -3872,7 +3873,10 @@ const chainArray = [
|
|
3872
3873
|
name: 'LaTestnet',
|
3873
3874
|
chain: 'LaTestnet',
|
3874
3875
|
icon: 'LaChain',
|
3875
|
-
rpc: [
|
3876
|
+
rpc: [
|
3877
|
+
'https://rpc.testnet.lachain.network',
|
3878
|
+
'https://lachain-testnet.rpc-nodes.cedalio.dev'
|
3879
|
+
],
|
3876
3880
|
faucets: [ 'https://faucet.lachain.network' ],
|
3877
3881
|
nativeCurrency: { name: 'Test LaCoin', symbol: 'TLA', decimals: 18 },
|
3878
3882
|
features: [ { name: 'EIP155' } ],
|
@@ -4600,6 +4604,29 @@ const chainArray = [
|
|
4600
4604
|
chainId: 777,
|
4601
4605
|
networkId: 777
|
4602
4606
|
},
|
4607
|
+
{
|
4608
|
+
name: 'MAAL Sharia Chain',
|
4609
|
+
chain: 'MAAL',
|
4610
|
+
icon: 'maal',
|
4611
|
+
rpc: [
|
4612
|
+
'https://node1-mainnet.maalscan.io/',
|
4613
|
+
'https://node2-mainnet.maalscan.io/',
|
4614
|
+
'https://node3-mainnet.maalscan.io/'
|
4615
|
+
],
|
4616
|
+
faucets: [],
|
4617
|
+
nativeCurrency: { name: 'MAAL', symbol: 'MAAL', decimals: 18 },
|
4618
|
+
infoURL: 'https://www.maalblockchain.com/',
|
4619
|
+
shortName: 'maal',
|
4620
|
+
chainId: 786,
|
4621
|
+
networkId: 786,
|
4622
|
+
explorers: [
|
4623
|
+
{
|
4624
|
+
name: 'maalscan',
|
4625
|
+
url: 'https://maalscan.io',
|
4626
|
+
standard: 'EIP3091'
|
4627
|
+
}
|
4628
|
+
]
|
4629
|
+
},
|
4603
4630
|
{
|
4604
4631
|
name: 'Acala Network',
|
4605
4632
|
chain: 'ACA',
|
@@ -4630,6 +4657,17 @@ const chainArray = [
|
|
4630
4657
|
}
|
4631
4658
|
]
|
4632
4659
|
},
|
4660
|
+
{
|
4661
|
+
name: 'Patex',
|
4662
|
+
chain: 'ETH',
|
4663
|
+
rpc: [ 'https://rpc.patex.io/' ],
|
4664
|
+
faucets: [],
|
4665
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
4666
|
+
infoURL: 'https://patex.io/',
|
4667
|
+
shortName: 'peth',
|
4668
|
+
chainId: 789,
|
4669
|
+
networkId: 789
|
4670
|
+
},
|
4633
4671
|
{
|
4634
4672
|
name: 'Lucid Blockchain',
|
4635
4673
|
chain: 'Lucid',
|
@@ -6500,6 +6538,21 @@ const chainArray = [
|
|
6500
6538
|
}
|
6501
6539
|
]
|
6502
6540
|
},
|
6541
|
+
{
|
6542
|
+
name: 'Living Assets Mainnet',
|
6543
|
+
chain: 'LAS',
|
6544
|
+
icon: 'livingassets',
|
6545
|
+
rpc: [
|
6546
|
+
'https://beta.mainnet.livingassets.io/rpc',
|
6547
|
+
'https://gamma.mainnet.livingassets.io/rpc'
|
6548
|
+
],
|
6549
|
+
faucets: [],
|
6550
|
+
nativeCurrency: { name: 'LAS', symbol: 'LAS', decimals: 18 },
|
6551
|
+
infoURL: 'https://dev.livingassets.io/',
|
6552
|
+
shortName: 'LAS',
|
6553
|
+
chainId: 1440,
|
6554
|
+
networkId: 1440
|
6555
|
+
},
|
6503
6556
|
{
|
6504
6557
|
name: 'Polygon zkEVM Testnet',
|
6505
6558
|
title: 'Polygon zkEVM Testnet',
|
@@ -9802,7 +9855,7 @@ const chainArray = [
|
|
9802
9855
|
rpc: [ 'https://api.mainnet.zetachain.com/evm' ],
|
9803
9856
|
faucets: [],
|
9804
9857
|
nativeCurrency: { name: 'Zeta', symbol: 'ZETA', decimals: 18 },
|
9805
|
-
infoURL: 'https://
|
9858
|
+
infoURL: 'https://zetachain.com/docs/',
|
9806
9859
|
shortName: 'zetachain-mainnet',
|
9807
9860
|
chainId: 7000,
|
9808
9861
|
networkId: 7000,
|
@@ -9819,10 +9872,13 @@ const chainArray = [
|
|
9819
9872
|
name: 'ZetaChain Athens Testnet',
|
9820
9873
|
chain: 'ZetaChain',
|
9821
9874
|
icon: 'zetachain',
|
9822
|
-
rpc: [
|
9875
|
+
rpc: [
|
9876
|
+
'https://zetachain-athens-evm.blockpi.network/v1/rpc/public',
|
9877
|
+
'wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket'
|
9878
|
+
],
|
9823
9879
|
faucets: [ 'https://labs.zetachain.com/get-zeta' ],
|
9824
9880
|
nativeCurrency: { name: 'Zeta', symbol: 'aZETA', decimals: 18 },
|
9825
|
-
infoURL: 'https://
|
9881
|
+
infoURL: 'https://zetachain.com/docs',
|
9826
9882
|
shortName: 'zetachain-athens',
|
9827
9883
|
chainId: 7001,
|
9828
9884
|
networkId: 7001,
|
@@ -13002,7 +13058,7 @@ const chainArray = [
|
|
13002
13058
|
icon: 'wireshape',
|
13003
13059
|
rpc: [
|
13004
13060
|
'https://rpc-floripa.wireshape.org',
|
13005
|
-
'https://floripa.rpc.thirdweb.com'
|
13061
|
+
'https://wireshape-floripa-testnet.rpc.thirdweb.com'
|
13006
13062
|
],
|
13007
13063
|
faucets: [],
|
13008
13064
|
nativeCurrency: { name: 'WIRE', symbol: 'WIRE', decimals: 18 },
|
@@ -15251,6 +15307,27 @@ const chainArray = [
|
|
15251
15307
|
}
|
15252
15308
|
]
|
15253
15309
|
},
|
15310
|
+
{
|
15311
|
+
name: 'Aves Testnet',
|
15312
|
+
chain: 'AVST',
|
15313
|
+
rpc: [ 'https://test.rpc.avescoin.io' ],
|
15314
|
+
faucets: [],
|
15315
|
+
nativeCurrency: { name: 'AvesT', symbol: 'AVST', decimals: 18 },
|
15316
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
15317
|
+
infoURL: 'https://ethereum.org',
|
15318
|
+
shortName: 'avst',
|
15319
|
+
chainId: 333331,
|
15320
|
+
networkId: 333331,
|
15321
|
+
icon: 'aves',
|
15322
|
+
explorers: [
|
15323
|
+
{
|
15324
|
+
name: 'avescan',
|
15325
|
+
url: 'https://testnet.avescoin.io',
|
15326
|
+
icon: 'avescan',
|
15327
|
+
standard: 'EIP3091'
|
15328
|
+
}
|
15329
|
+
]
|
15330
|
+
},
|
15254
15331
|
{
|
15255
15332
|
name: 'Oone Chain Testnet',
|
15256
15333
|
chain: 'OONE',
|
@@ -15572,6 +15649,17 @@ const chainArray = [
|
|
15572
15649
|
}
|
15573
15650
|
]
|
15574
15651
|
},
|
15652
|
+
{
|
15653
|
+
name: 'Patex Sepolia Testnet',
|
15654
|
+
chain: 'ETH',
|
15655
|
+
rpc: [ 'https://test-rpc.patex.io/' ],
|
15656
|
+
faucets: [],
|
15657
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
15658
|
+
infoURL: 'https://patex.io/',
|
15659
|
+
shortName: 'psep',
|
15660
|
+
chainId: 471100,
|
15661
|
+
networkId: 471100
|
15662
|
+
},
|
15575
15663
|
{
|
15576
15664
|
name: 'OpenChain Mainnet',
|
15577
15665
|
chain: 'OpenChain',
|