eth-chainlist 0.0.108 → 0.0.109

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.109 (2023-03-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.108 ([3a682aa](https://github.com/poowf/eth-chainlist/commit/3a682aa37eb4e5c8b23e7866cab3c646074a4542))
9
+ * update chain data ([c525c83](https://github.com/poowf/eth-chainlist/commit/c525c834921c3f06b11b5eb999c3e5131f8ba6ef))
10
+
3
11
  ### 0.0.108 (2023-03-23)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2902,7 +2902,7 @@ const chainArray = [
2902
2902
  {
2903
2903
  name: 'zkSync Era Testnet',
2904
2904
  chain: 'ETH',
2905
- rpc: [ 'https://zksync2-testnet.zksync.dev' ],
2905
+ rpc: [ 'https://testnet.era.zksync.dev' ],
2906
2906
  faucets: [ 'https://goerli.portal.zksync.io/faucet' ],
2907
2907
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
2908
2908
  infoURL: 'https://era.zksync.io/docs/',
@@ -3227,7 +3227,7 @@ const chainArray = [
3227
3227
  {
3228
3228
  name: 'zkSync Era Mainnet',
3229
3229
  chain: 'ETH',
3230
- rpc: [ 'https://zksync2-mainnet.zksync.io' ],
3230
+ rpc: [ 'https://mainnet.era.zksync.io' ],
3231
3231
  faucets: [],
3232
3232
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
3233
3233
  infoURL: 'https://zksync.io/',
@@ -3246,7 +3246,7 @@ const chainArray = [
3246
3246
  parent: {
3247
3247
  type: 'L2',
3248
3248
  chain: 'eip155-1',
3249
- bridges: [ { url: 'https://portal.zksync.io/bridge' } ]
3249
+ bridges: [ { url: 'https://bridge.zksync.io/' } ]
3250
3250
  }
3251
3251
  },
3252
3252
  {
@@ -12697,6 +12697,25 @@ const chainArray = [
12697
12697
  }
12698
12698
  ]
12699
12699
  },
12700
+ {
12701
+ name: 'ADIL Devnet',
12702
+ chain: 'ADIL',
12703
+ icon: 'adil',
12704
+ rpc: [ 'https://devnet.adilchain-rpc.io' ],
12705
+ faucets: [],
12706
+ nativeCurrency: { name: 'Devnet ADIL', symbol: 'ADIL', decimals: 18 },
12707
+ infoURL: 'https://adilchain.io',
12708
+ shortName: 'dadil',
12709
+ chainId: 123456,
12710
+ networkId: 123456,
12711
+ explorers: [
12712
+ {
12713
+ name: 'ADIL Devnet Explorer',
12714
+ url: 'https://devnet.adilchain-scan.io',
12715
+ standard: 'EIP3091'
12716
+ }
12717
+ ]
12718
+ },
12700
12719
  {
12701
12720
  name: 'ETND Chain Mainnets',
12702
12721
  chain: 'ETND',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {