eth-chainlist 0.0.301 → 0.0.302

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.302 (2023-12-10)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.301 ([9f36190](https://github.com/poowf/eth-chainlist/commit/9f361900e938fbb84118fe27139896890a1c2b51))
9
+ * update chain data ([50a578d](https://github.com/poowf/eth-chainlist/commit/50a578d405724c15518a4ec26b6fe6473843a2bf))
10
+
3
11
  ### 0.0.301 (2023-12-09)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -10093,6 +10093,49 @@ const chainArray = [
10093
10093
  }
10094
10094
  ]
10095
10095
  },
10096
+ {
10097
+ name: 'Hybrid Chain Network Testnet',
10098
+ chain: 'HYBRID',
10099
+ rpc: [ 'https://rpc-testnet.hybridchain.ai/' ],
10100
+ faucets: [ 'https://faucet-testnet.hybridchain.ai' ],
10101
+ nativeCurrency: { name: 'Hybrid Chain Native Token', symbol: 'tHRC', decimals: 18 },
10102
+ infoURL: 'https://hybridchain.ai',
10103
+ shortName: 'thrc',
10104
+ chainId: 2458,
10105
+ networkId: 2458,
10106
+ icon: 'hybrid',
10107
+ explorers: [
10108
+ {
10109
+ name: 'Hybrid Chain Explorer Testnet',
10110
+ icon: 'hybrid',
10111
+ url: 'https://testnet.hybridscan.ai',
10112
+ standard: 'none'
10113
+ }
10114
+ ]
10115
+ },
10116
+ {
10117
+ name: 'Hybrid Chain Network Mainnet',
10118
+ chain: 'HYBRID',
10119
+ rpc: [
10120
+ 'https://coredata-mainnet.hybridchain.ai/',
10121
+ 'https://rpc-mainnet.hybridchain.ai'
10122
+ ],
10123
+ faucets: [ 'https://faucet-testnet.hybridchain.ai' ],
10124
+ nativeCurrency: { name: 'Hybrid Chain Native Token', symbol: 'HRC', decimals: 18 },
10125
+ infoURL: 'https://hybridchain.ai',
10126
+ shortName: 'hrc',
10127
+ chainId: 2468,
10128
+ networkId: 2468,
10129
+ icon: 'hybrid',
10130
+ explorers: [
10131
+ {
10132
+ name: 'Hybrid Chain Explorer Mainnet',
10133
+ icon: 'hybrid',
10134
+ url: 'https://hybridscan.ai',
10135
+ standard: 'none'
10136
+ }
10137
+ ]
10138
+ },
10096
10139
  {
10097
10140
  name: 'Unicorn Ultra Nebulas Testnet',
10098
10141
  chain: 'u2u',
@@ -11853,6 +11896,7 @@ const chainArray = [
11853
11896
  shortName: 'hmnd',
11854
11897
  chainId: 5234,
11855
11898
  networkId: 5234,
11899
+ icon: 'humanode',
11856
11900
  explorers: [
11857
11901
  {
11858
11902
  name: 'Subscan',
@@ -14992,6 +15036,7 @@ const chainArray = [
14992
15036
  shortName: 'hmnd-t5',
14993
15037
  chainId: 14853,
14994
15038
  networkId: 14853,
15039
+ icon: 'humanode',
14995
15040
  explorers: []
14996
15041
  },
14997
15042
  {
@@ -21702,28 +21747,6 @@ const chainArray = [
21702
21747
  networkId: 61717561,
21703
21748
  slip44: 61717561
21704
21749
  },
21705
- {
21706
- name: 'Autonity Bakerloo (Barada) Testnet',
21707
- chain: 'AUT',
21708
- rpc: [
21709
- 'https://rpc1.bakerloo.autonity.org/',
21710
- 'wss://rpc1.bakerloo.autonity.org/ws/'
21711
- ],
21712
- faucets: [ 'https://faucet.autonity.org/' ],
21713
- nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 },
21714
- infoURL: 'https://autonity.org/',
21715
- shortName: 'bakerloo-01',
21716
- chainId: 65010001,
21717
- networkId: 65010001,
21718
- icon: 'autonity',
21719
- explorers: [
21720
- {
21721
- name: 'autonity-blockscout',
21722
- url: 'https://bakerloo.autonity.org',
21723
- standard: 'EIP3091'
21724
- }
21725
- ]
21726
- },
21727
21750
  {
21728
21751
  name: 'Autonity Piccadilly (Thames) Testnet',
21729
21752
  chain: 'AUT',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.301",
3
+ "version": "0.0.302",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {