eth-chainlist 0.0.226 → 0.0.227

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.227 (2023-09-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.226 ([696f6f1](https://github.com/poowf/eth-chainlist/commit/696f6f149c26d71857b4b3d71f2c506f07d4a381))
9
+ * update chain data ([37457f0](https://github.com/poowf/eth-chainlist/commit/37457f080256426400e4a2cbe57afe1550175750))
10
+
3
11
  ### 0.0.226 (2023-09-04)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -1957,6 +1957,7 @@ const chainArray = [
1957
1957
  {
1958
1958
  name: 'Worldland Mainnet',
1959
1959
  chain: 'Worldland',
1960
+ icon: 'worldland',
1960
1961
  rpc: [ 'https://seoul.worldland.foundation' ],
1961
1962
  faucets: [],
1962
1963
  nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
@@ -3354,6 +3355,31 @@ const chainArray = [
3354
3355
  }
3355
3356
  ]
3356
3357
  },
3358
+ {
3359
+ name: 'Kroma',
3360
+ chain: 'ETH',
3361
+ rpc: [ 'https://api.kroma.network' ],
3362
+ faucets: [],
3363
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
3364
+ infoURL: 'https://kroma.network',
3365
+ icon: 'kroma',
3366
+ shortName: 'kroma',
3367
+ chainId: 255,
3368
+ networkId: 255,
3369
+ explorers: [
3370
+ {
3371
+ name: 'blockscout',
3372
+ url: 'https://blockscout.kroma.network',
3373
+ icon: 'blockscout',
3374
+ standard: 'EIP3091'
3375
+ }
3376
+ ],
3377
+ parent: {
3378
+ type: 'L2',
3379
+ chain: 'eip155-1',
3380
+ bridges: [ { url: 'https://kroma.network/bridge' } ]
3381
+ }
3382
+ },
3357
3383
  {
3358
3384
  name: 'Huobi ECO Chain Testnet',
3359
3385
  chain: 'Heco',
@@ -13041,6 +13067,7 @@ const chainArray = [
13041
13067
  {
13042
13068
  name: 'Worldland Testnet',
13043
13069
  chain: 'Worldland',
13070
+ icon: 'worldland',
13044
13071
  rpc: [ 'https://gwangju.worldland.foundation' ],
13045
13072
  faucets: [],
13046
13073
  nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
@@ -18022,6 +18049,30 @@ const chainArray = [
18022
18049
  bridges: [ { url: 'https://bridge.arbitrum.io/' } ]
18023
18050
  }
18024
18051
  },
18052
+ {
18053
+ name: 'Arbitrum Sepolia',
18054
+ title: 'Arbitrum Sepolia Rollup Testnet',
18055
+ chain: 'ETH',
18056
+ rpc: [ 'https://sepolia-rollup.abitrum.io/rpc' ],
18057
+ faucets: [],
18058
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
18059
+ infoURL: 'https://arbitrum.io',
18060
+ shortName: 'arb-sep',
18061
+ chainId: 421614,
18062
+ networkId: 421614,
18063
+ explorers: [
18064
+ {
18065
+ name: 'Arbitrum Sepolia Rollup Testnet Explorer',
18066
+ url: 'https://sepolia-explorer.arbitrum.io',
18067
+ standard: 'EIP3091'
18068
+ }
18069
+ ],
18070
+ parent: {
18071
+ type: 'L2',
18072
+ chain: 'eip155-11155111',
18073
+ bridges: [ { url: 'https://bridge.arbitrum.io' } ]
18074
+ }
18075
+ },
18025
18076
  {
18026
18077
  name: 'Fastex Chain testnet',
18027
18078
  chain: 'FTN',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.226",
3
+ "version": "0.0.227",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {