eth-chainlist 0.0.325 → 0.0.326
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 +114 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.326 (2024-01-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.325 ([aea4e70](https://github.com/poowf/eth-chainlist/commit/aea4e705a215f01578c6b18c1b5dfba0d78de525))
|
9
|
+
* update chain data ([da8aa94](https://github.com/poowf/eth-chainlist/commit/da8aa947e8f6a881319fdbd2d545f9cc769a89d5))
|
10
|
+
|
3
11
|
### 0.0.325 (2024-01-25)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -4621,6 +4621,59 @@ const chainArray = [
|
|
4621
4621
|
}
|
4622
4622
|
]
|
4623
4623
|
},
|
4624
|
+
{
|
4625
|
+
name: 'ZKAmoeba Testnet',
|
4626
|
+
chain: 'FIL',
|
4627
|
+
rpc: [
|
4628
|
+
'https://rpc.testnet.zkamoeba.com:4050/',
|
4629
|
+
'https://rpc1.testnet.zkamoeba.com:4050/'
|
4630
|
+
],
|
4631
|
+
faucets: [],
|
4632
|
+
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
4633
|
+
infoURL: 'https://testnet.zkamoeba.com',
|
4634
|
+
shortName: 'zkamoeba-test',
|
4635
|
+
chainId: 380,
|
4636
|
+
networkId: 380,
|
4637
|
+
icon: 'zkamoeba-micro',
|
4638
|
+
explorers: [
|
4639
|
+
{
|
4640
|
+
name: 'ZKAmoeba Test Explorer',
|
4641
|
+
url: 'https://testnetexplorer.zkamoeba.com',
|
4642
|
+
icon: 'zkamoeba-micro',
|
4643
|
+
standard: 'EIP3091'
|
4644
|
+
}
|
4645
|
+
],
|
4646
|
+
parent: {
|
4647
|
+
type: 'L2',
|
4648
|
+
chain: 'eip155-314',
|
4649
|
+
bridges: [ { url: 'https://testnet.zkamoeba.com/en/bridge' } ]
|
4650
|
+
}
|
4651
|
+
},
|
4652
|
+
{
|
4653
|
+
name: 'ZKAmoeba Mainnet',
|
4654
|
+
chain: 'FIL',
|
4655
|
+
rpc: [ 'https://rpc.mainnet.zkamoeba.com/rpc' ],
|
4656
|
+
faucets: [],
|
4657
|
+
nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
|
4658
|
+
infoURL: 'https://www.zkamoeba.com',
|
4659
|
+
shortName: 'zkamoeba',
|
4660
|
+
chainId: 381,
|
4661
|
+
networkId: 381,
|
4662
|
+
icon: 'zkamoeba-micro',
|
4663
|
+
explorers: [
|
4664
|
+
{
|
4665
|
+
name: 'ZKAmoeba Explorer',
|
4666
|
+
url: 'https://explorer.zkamoeba.com',
|
4667
|
+
icon: 'zkamoeba-micro',
|
4668
|
+
standard: 'EIP3091'
|
4669
|
+
}
|
4670
|
+
],
|
4671
|
+
parent: {
|
4672
|
+
type: 'L2',
|
4673
|
+
chain: 'eip155-314',
|
4674
|
+
bridges: [ { url: 'https://www.zkamoeba.com/en/bridge' } ]
|
4675
|
+
}
|
4676
|
+
},
|
4624
4677
|
{
|
4625
4678
|
name: 'Lisinski',
|
4626
4679
|
chain: 'CRO',
|
@@ -13769,6 +13822,29 @@ const chainArray = [
|
|
13769
13822
|
}
|
13770
13823
|
]
|
13771
13824
|
},
|
13825
|
+
{
|
13826
|
+
name: 'Kinto Mainnet',
|
13827
|
+
chain: 'Kinto Mainnet',
|
13828
|
+
rpc: [
|
13829
|
+
'https://rpc.kinto.xyz/http',
|
13830
|
+
'https://kinto-mainnet.calderachain.xyz/http'
|
13831
|
+
],
|
13832
|
+
faucets: [],
|
13833
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
13834
|
+
infoURL: 'https://kinto.xyz',
|
13835
|
+
shortName: 'kintoMainnet',
|
13836
|
+
chainId: 7887,
|
13837
|
+
networkId: 7887,
|
13838
|
+
icon: 'kinto',
|
13839
|
+
explorers: [
|
13840
|
+
{
|
13841
|
+
name: 'Kinto Explorer',
|
13842
|
+
url: 'https://explorer.kinto.xyz',
|
13843
|
+
icon: 'kinto',
|
13844
|
+
standard: 'EIP3091'
|
13845
|
+
}
|
13846
|
+
]
|
13847
|
+
},
|
13772
13848
|
{
|
13773
13849
|
name: 'ARDENIUM Athena',
|
13774
13850
|
chain: 'ATHENA',
|
@@ -16875,6 +16951,25 @@ const chainArray = [
|
|
16875
16951
|
chainId: 24734,
|
16876
16952
|
networkId: 37480
|
16877
16953
|
},
|
16954
|
+
{
|
16955
|
+
name: 'LiquidLayer Mainnet',
|
16956
|
+
chain: 'LiquidLayer',
|
16957
|
+
icon: 'lila',
|
16958
|
+
rpc: [ 'https://mainnet.liquidlayer.network' ],
|
16959
|
+
faucets: [],
|
16960
|
+
nativeCurrency: { name: 'LiquidLayer', symbol: 'LILA', decimals: 18 },
|
16961
|
+
infoURL: 'https://scan.liquidlayer.network',
|
16962
|
+
shortName: 'LILA',
|
16963
|
+
chainId: 25186,
|
16964
|
+
networkId: 25186,
|
16965
|
+
explorers: [
|
16966
|
+
{
|
16967
|
+
name: 'LiquidLayer Mainnet Explorer',
|
16968
|
+
url: 'https://scan.liquidlayer.network',
|
16969
|
+
standard: 'EIP3091'
|
16970
|
+
}
|
16971
|
+
]
|
16972
|
+
},
|
16878
16973
|
{
|
16879
16974
|
name: 'Hammer Chain Mainnet',
|
16880
16975
|
chain: 'HammerChain',
|
@@ -19708,6 +19803,25 @@ const chainArray = [
|
|
19708
19803
|
}
|
19709
19804
|
]
|
19710
19805
|
},
|
19806
|
+
{
|
19807
|
+
name: 'LiquidLayer Testnet',
|
19808
|
+
chain: 'LILA',
|
19809
|
+
icon: 'lila',
|
19810
|
+
rpc: [ 'https://testnet.liquidlayer.network' ],
|
19811
|
+
faucets: [ 'https://claim.liquidlayer.network' ],
|
19812
|
+
nativeCurrency: { name: 'LiquidLayer Testnet', symbol: 'LILA', decimals: 18 },
|
19813
|
+
infoURL: 'https://testnet-scan.liquidlayer.network',
|
19814
|
+
shortName: 'tLILA',
|
19815
|
+
chainId: 93572,
|
19816
|
+
networkId: 93572,
|
19817
|
+
explorers: [
|
19818
|
+
{
|
19819
|
+
name: 'LiquidLayer Testnet Explorer',
|
19820
|
+
url: 'https://testnet-scan.liquidlayer.network',
|
19821
|
+
standard: 'EIP3091'
|
19822
|
+
}
|
19823
|
+
]
|
19824
|
+
},
|
19711
19825
|
{
|
19712
19826
|
name: 'Mantis Testnet (Hexapod)',
|
19713
19827
|
chain: 'Mantis',
|