eth-chainlist 0.0.357 → 0.0.358
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 +72 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.358 (2024-03-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.357 ([4340c9b](https://github.com/poowf/eth-chainlist/commit/4340c9b8b8d00a09b8872c2a0fb0eee3d74d8a08))
|
9
|
+
* update chain data ([a06dbcd](https://github.com/poowf/eth-chainlist/commit/a06dbcdb5c42cee9b33c0f32c0658a3ed134b094))
|
10
|
+
|
3
11
|
### 0.0.357 (2024-03-06)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -12778,6 +12778,26 @@ const chainArray = [
|
|
12778
12778
|
}
|
12779
12779
|
]
|
12780
12780
|
},
|
12781
|
+
{
|
12782
|
+
name: 'CrossFi Testnet',
|
12783
|
+
title: 'CrossFi Testnet',
|
12784
|
+
chain: 'XFI',
|
12785
|
+
rpc: [ 'https://rpc.testnet.ms' ],
|
12786
|
+
faucets: [],
|
12787
|
+
nativeCurrency: { name: 'XFI', symbol: 'XFI', decimals: 18 },
|
12788
|
+
infoURL: 'https://crossfi.org/',
|
12789
|
+
shortName: 'crossfi-testnet',
|
12790
|
+
chainId: 4157,
|
12791
|
+
networkId: 4157,
|
12792
|
+
slip44: 1,
|
12793
|
+
explorers: [
|
12794
|
+
{
|
12795
|
+
name: 'CrossFi Testnet Scan',
|
12796
|
+
url: 'https://scan.testnet.ms',
|
12797
|
+
standard: 'EIP3091'
|
12798
|
+
}
|
12799
|
+
]
|
12800
|
+
},
|
12781
12801
|
{
|
12782
12802
|
name: 'PHI Network V1',
|
12783
12803
|
chain: 'PHI V1',
|
@@ -23755,6 +23775,58 @@ const chainArray = [
|
|
23755
23775
|
}
|
23756
23776
|
]
|
23757
23777
|
},
|
23778
|
+
{
|
23779
|
+
name: 'zkLink Nova Mainnet',
|
23780
|
+
chain: 'ETH',
|
23781
|
+
rpc: [ 'https://rpc.zklink.io', 'wss://rpc.zklink.io' ],
|
23782
|
+
faucets: [],
|
23783
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
23784
|
+
infoURL: 'https://zklink.io',
|
23785
|
+
shortName: 'zklink-nova',
|
23786
|
+
chainId: 810180,
|
23787
|
+
networkId: 810180,
|
23788
|
+
slip44: 1,
|
23789
|
+
icon: 'zklink-nova',
|
23790
|
+
explorers: [
|
23791
|
+
{
|
23792
|
+
name: 'zkLink Nova Block Explorer',
|
23793
|
+
url: 'https://explorer.zklink.io',
|
23794
|
+
icon: 'zklink-nova',
|
23795
|
+
standard: 'EIP3091'
|
23796
|
+
}
|
23797
|
+
],
|
23798
|
+
parent: {
|
23799
|
+
type: 'L2',
|
23800
|
+
chain: 'eip155-59144',
|
23801
|
+
bridges: [ { url: 'https://portal.zklink.io' } ]
|
23802
|
+
}
|
23803
|
+
},
|
23804
|
+
{
|
23805
|
+
name: 'zkLink Nova Goerli Testnet',
|
23806
|
+
chain: 'ETH',
|
23807
|
+
rpc: [ 'https://goerli.rpc.zklink.io', 'wss://goerli.rpc.zklink.io' ],
|
23808
|
+
faucets: [],
|
23809
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
23810
|
+
infoURL: 'https://zklink.io',
|
23811
|
+
shortName: 'zklink-nova-goerli',
|
23812
|
+
chainId: 810182,
|
23813
|
+
networkId: 810182,
|
23814
|
+
slip44: 1,
|
23815
|
+
icon: 'zklink-nova',
|
23816
|
+
explorers: [
|
23817
|
+
{
|
23818
|
+
name: 'zkLink Nova Block Explorer',
|
23819
|
+
url: 'https://goerli.explorer.zklink.io',
|
23820
|
+
icon: 'zklink-nova',
|
23821
|
+
standard: 'EIP3091'
|
23822
|
+
}
|
23823
|
+
],
|
23824
|
+
parent: {
|
23825
|
+
type: 'L2',
|
23826
|
+
chain: 'eip155-59140',
|
23827
|
+
bridges: [ { url: 'https://goerli.portal.zklink.io' } ]
|
23828
|
+
}
|
23829
|
+
},
|
23758
23830
|
{
|
23759
23831
|
name: 'CURVE Mainnet',
|
23760
23832
|
chain: 'CURVE',
|