eth-chainlist 0.0.811 → 0.0.812

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.812 (2026-08-20)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.811 ([42bef4c](https://github.com/poowf/eth-chainlist/commit/42bef4cbe1afaacc5baeae932fd6ccd2789f0f33))
9
+ * update chain data ([4f3240d](https://github.com/poowf/eth-chainlist/commit/4f3240d312dd6bb5b0fbc406af9e3e88441fafda))
10
+
3
11
  ### 0.0.811 (2026-08-19)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -11015,6 +11015,25 @@ const chainArray = [
11015
11015
  }
11016
11016
  ]
11017
11017
  },
11018
+ {
11019
+ name: 'Nura Chain',
11020
+ chain: 'Nura',
11021
+ rpc: [ 'https://rpc.nurachain.net' ],
11022
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
11023
+ faucets: [],
11024
+ nativeCurrency: { name: 'Nura Coin', symbol: 'NURA', decimals: 18 },
11025
+ infoURL: 'https://nurachain.net',
11026
+ shortName: 'nura',
11027
+ chainId: 1020,
11028
+ networkId: 1020,
11029
+ explorers: [
11030
+ {
11031
+ name: 'Nura Explorer',
11032
+ url: 'https://explorer.nurachain.net',
11033
+ standard: 'EIP3091'
11034
+ }
11035
+ ]
11036
+ },
11018
11037
  {
11019
11038
  name: 'Sakura',
11020
11039
  chain: 'Sakura',
@@ -42442,14 +42461,33 @@ const chainArray = [
42442
42461
  chain: 'XITCOIN',
42443
42462
  faucets: [],
42444
42463
  rpc: [ 'https://network.xitcoin.org' ],
42445
- nativeCurrency: { name: 'Xitcoin', symbol: '$XTC', decimals: 8 },
42446
- infoURL: 'https://docs.xitcoin.org/',
42464
+ nativeCurrency: { name: 'Xitcoin', symbol: 'XTC', decimals: 18 },
42465
+ infoURL: 'https://xitcoin.gitbook.io/guide/',
42447
42466
  shortName: 'Xitcoin',
42448
42467
  chainId: 101088,
42449
42468
  networkId: 101088,
42450
42469
  icon: 'xitcoin',
42451
42470
  explorers: []
42452
42471
  },
42472
+ {
42473
+ name: 'Xitcoin Testnet',
42474
+ chain: 'XITCOIN',
42475
+ faucets: [ 'https://faucet-testnet.xitcoin.org/' ],
42476
+ rpc: [ 'https://evm-rpc-testnet.xitcoin.org' ],
42477
+ nativeCurrency: { name: 'Xitcoin', symbol: 'XTC', decimals: 18 },
42478
+ infoURL: 'https://xitcoin.gitbook.io/guide/',
42479
+ shortName: 'xtct',
42480
+ chainId: 101089,
42481
+ networkId: 101089,
42482
+ icon: 'xitcoin',
42483
+ explorers: [
42484
+ {
42485
+ name: 'Xitcoin Testnet Explorer',
42486
+ url: 'https://evm-explorer-testnet.xitcoin.org',
42487
+ standard: 'EIP3091'
42488
+ }
42489
+ ]
42490
+ },
42453
42491
  {
42454
42492
  name: 'Creditcoin',
42455
42493
  chain: 'CTC',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.811",
3
+ "version": "0.0.812",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "lint-staged": {