eth-chainlist 0.0.325 → 0.0.327
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 +136 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.327 (2024-01-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.326 ([efc0959](https://github.com/poowf/eth-chainlist/commit/efc09595c4a8f8678ca393de32b90cc72f15fd9a))
|
9
|
+
* update chain data ([c90a6df](https://github.com/poowf/eth-chainlist/commit/c90a6df68c2988934141379755a39bba81e4eddc))
|
10
|
+
|
11
|
+
### 0.0.326 (2024-01-26)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.325 ([aea4e70](https://github.com/poowf/eth-chainlist/commit/aea4e705a215f01578c6b18c1b5dfba0d78de525))
|
17
|
+
* update chain data ([da8aa94](https://github.com/poowf/eth-chainlist/commit/da8aa947e8f6a881319fdbd2d545f9cc769a89d5))
|
18
|
+
|
3
19
|
### 0.0.325 (2024-01-25)
|
4
20
|
|
5
21
|
|
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',
|
@@ -16327,6 +16403,25 @@ const chainArray = [
|
|
16327
16403
|
}
|
16328
16404
|
]
|
16329
16405
|
},
|
16406
|
+
{
|
16407
|
+
name: 'Eclipse Subnet',
|
16408
|
+
chain: 'ECLIPSE',
|
16409
|
+
rpc: [ 'https://subnets.avax.network/eclipse/testnet/rpc' ],
|
16410
|
+
features: [ { name: 'EIP1559' } ],
|
16411
|
+
faucets: [],
|
16412
|
+
nativeCurrency: { name: 'Eclipse', symbol: 'ECLP', decimals: 16 },
|
16413
|
+
infoURL: 'http://eclipsenet.io',
|
16414
|
+
shortName: 'eclipse',
|
16415
|
+
chainId: 17172,
|
16416
|
+
networkId: 17172,
|
16417
|
+
explorers: [
|
16418
|
+
{
|
16419
|
+
name: 'ECLIPSE Explorer',
|
16420
|
+
url: 'https://subnets-test.avax.network/eclipse',
|
16421
|
+
standard: 'EIP3091'
|
16422
|
+
}
|
16423
|
+
]
|
16424
|
+
},
|
16330
16425
|
{
|
16331
16426
|
name: 'Palette Chain Testnet',
|
16332
16427
|
chain: 'PLT',
|
@@ -16875,6 +16970,25 @@ const chainArray = [
|
|
16875
16970
|
chainId: 24734,
|
16876
16971
|
networkId: 37480
|
16877
16972
|
},
|
16973
|
+
{
|
16974
|
+
name: 'LiquidLayer Mainnet',
|
16975
|
+
chain: 'LiquidLayer',
|
16976
|
+
icon: 'lila',
|
16977
|
+
rpc: [ 'https://mainnet.liquidlayer.network' ],
|
16978
|
+
faucets: [],
|
16979
|
+
nativeCurrency: { name: 'LiquidLayer', symbol: 'LILA', decimals: 18 },
|
16980
|
+
infoURL: 'https://scan.liquidlayer.network',
|
16981
|
+
shortName: 'LILA',
|
16982
|
+
chainId: 25186,
|
16983
|
+
networkId: 25186,
|
16984
|
+
explorers: [
|
16985
|
+
{
|
16986
|
+
name: 'LiquidLayer Mainnet Explorer',
|
16987
|
+
url: 'https://scan.liquidlayer.network',
|
16988
|
+
standard: 'EIP3091'
|
16989
|
+
}
|
16990
|
+
]
|
16991
|
+
},
|
16878
16992
|
{
|
16879
16993
|
name: 'Hammer Chain Mainnet',
|
16880
16994
|
chain: 'HammerChain',
|
@@ -19708,6 +19822,25 @@ const chainArray = [
|
|
19708
19822
|
}
|
19709
19823
|
]
|
19710
19824
|
},
|
19825
|
+
{
|
19826
|
+
name: 'LiquidLayer Testnet',
|
19827
|
+
chain: 'LILA',
|
19828
|
+
icon: 'lila',
|
19829
|
+
rpc: [ 'https://testnet.liquidlayer.network' ],
|
19830
|
+
faucets: [ 'https://claim.liquidlayer.network' ],
|
19831
|
+
nativeCurrency: { name: 'LiquidLayer Testnet', symbol: 'LILA', decimals: 18 },
|
19832
|
+
infoURL: 'https://testnet-scan.liquidlayer.network',
|
19833
|
+
shortName: 'tLILA',
|
19834
|
+
chainId: 93572,
|
19835
|
+
networkId: 93572,
|
19836
|
+
explorers: [
|
19837
|
+
{
|
19838
|
+
name: 'LiquidLayer Testnet Explorer',
|
19839
|
+
url: 'https://testnet-scan.liquidlayer.network',
|
19840
|
+
standard: 'EIP3091'
|
19841
|
+
}
|
19842
|
+
]
|
19843
|
+
},
|
19711
19844
|
{
|
19712
19845
|
name: 'Mantis Testnet (Hexapod)',
|
19713
19846
|
chain: 'Mantis',
|
@@ -22171,12 +22304,12 @@ const chainArray = [
|
|
22171
22304
|
infoURL: 'https://docs.astria.org',
|
22172
22305
|
shortName: 'ria-dev',
|
22173
22306
|
nativeCurrency: { name: 'RIA', symbol: 'RIA', decimals: 18 },
|
22174
|
-
rpc: [ 'https://rpc.evm.dusk-
|
22175
|
-
faucets: [ 'https://faucet.evm.dusk-
|
22307
|
+
rpc: [ 'https://rpc.evm.dusk-3.devnet.astria.org' ],
|
22308
|
+
faucets: [ 'https://faucet.evm.dusk-3.devnet.astria.org/' ],
|
22176
22309
|
explorers: [
|
22177
22310
|
{
|
22178
22311
|
name: 'Astria EVM Dusknet Explorer',
|
22179
|
-
url: 'https://explorer.evm.dusk-
|
22312
|
+
url: 'https://explorer.evm.dusk-3.devnet.astria.org',
|
22180
22313
|
standard: 'EIP3091'
|
22181
22314
|
}
|
22182
22315
|
]
|