eth-chainlist 0.0.305 → 0.0.306

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.306 (2023-12-16)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.305 ([5341204](https://github.com/poowf/eth-chainlist/commit/53412040e6fd983dd428fe027d7b8ec89eb835e7))
9
+ * update chain data ([f697d3c](https://github.com/poowf/eth-chainlist/commit/f697d3cbee93dc835183bee87641ace289875326))
10
+
3
11
  ### 0.0.305 (2023-12-15)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -9179,6 +9179,26 @@ const chainArray = [
9179
9179
  }
9180
9180
  ]
9181
9181
  },
9182
+ {
9183
+ name: 'Kyoto Testnet',
9184
+ chain: 'KYOTO',
9185
+ rpc: [ 'https://rpc.testnet.kyotoprotocol.io:8545' ],
9186
+ faucets: [ 'https://faucet.kyotoprotocol.io' ],
9187
+ nativeCurrency: { name: 'Kyoto', symbol: 'KYOTO', decimals: 18 },
9188
+ features: [ { name: 'EIP155' } ],
9189
+ infoURL: 'https://kyotoprotocol.io',
9190
+ shortName: 'kyoto-testnet',
9191
+ chainId: 1998,
9192
+ networkId: 1998,
9193
+ slip44: 1,
9194
+ explorers: [
9195
+ {
9196
+ name: 'Kyotoscan',
9197
+ url: 'https://testnet.kyotoscan.io',
9198
+ standard: 'EIP3091'
9199
+ }
9200
+ ]
9201
+ },
9182
9202
  {
9183
9203
  name: 'Dogechain Mainnet',
9184
9204
  chain: 'DC',
@@ -15255,6 +15275,26 @@ const chainArray = [
15255
15275
  }
15256
15276
  ]
15257
15277
  },
15278
+ {
15279
+ name: 'Immutable zkEVM',
15280
+ chain: 'Immutable zkEVM',
15281
+ rpc: [ 'https://rpc.immutable.com' ],
15282
+ faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
15283
+ nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 },
15284
+ infoURL: 'https://www.immutable.com',
15285
+ shortName: 'imx',
15286
+ chainId: 13371,
15287
+ networkId: 13371,
15288
+ icon: 'immutable',
15289
+ explorers: [
15290
+ {
15291
+ name: 'Immutable explorer',
15292
+ url: 'https://explorer.immutable.com',
15293
+ standard: 'EIP3091',
15294
+ icon: 'immutable'
15295
+ }
15296
+ ]
15297
+ },
15258
15298
  {
15259
15299
  name: 'Phoenix Mainnet',
15260
15300
  chain: 'Phoenix',
@@ -20504,7 +20544,10 @@ const chainArray = [
20504
20544
  name: 'Arbitrum Sepolia',
20505
20545
  title: 'Arbitrum Sepolia Rollup Testnet',
20506
20546
  chain: 'ETH',
20507
- rpc: [ 'https://sepolia-rollup.arbitrum.io/rpc' ],
20547
+ rpc: [
20548
+ 'https://sepolia-rollup.arbitrum.io/rpc',
20549
+ 'https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}'
20550
+ ],
20508
20551
  faucets: [],
20509
20552
  nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
20510
20553
  infoURL: 'https://arbitrum.io',
@@ -21134,7 +21177,7 @@ const chainArray = [
21134
21177
  shortName: 'ria-dev',
21135
21178
  nativeCurrency: { name: 'RIA', symbol: 'RIA', decimals: 18 },
21136
21179
  rpc: [ 'https://rpc.evm.dusk-2.devnet.astria.org' ],
21137
- faucets: [ 'https://faucet.evm.dusk-1.devnet.astria.org/' ],
21180
+ faucets: [ 'https://faucet.evm.dusk-2.devnet.astria.org/' ],
21138
21181
  explorers: [
21139
21182
  {
21140
21183
  name: 'Astria EVM Dusknet Explorer',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.305",
3
+ "version": "0.0.306",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {