eth-chainlist 0.0.15 → 0.0.17

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +174 -23
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.17 (2022-11-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.16 ([802b7fd](https://github.com/poowf/eth-chainlist/commit/802b7fd06279be15d422430d8f56c19ed949d7aa))
9
+ * update chain data ([8cc0258](https://github.com/poowf/eth-chainlist/commit/8cc02583444e0bce7f3adb6e5118b2f96c44dca7))
10
+
11
+ ### 0.0.16 (2022-11-23)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.15 ([3fb3fe1](https://github.com/poowf/eth-chainlist/commit/3fb3fe1bea11c7f047ef6feb470eff580e4fd248))
17
+ * update chain data ([74bbff1](https://github.com/poowf/eth-chainlist/commit/74bbff1fa35cbecd5363d904e976c40905d6b68c))
18
+
3
19
  ### 0.0.15 (2022-11-22)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -9,6 +9,7 @@ const chainArray = [
9
9
  'https://api.mycryptoapi.com/eth',
10
10
  'https://cloudflare-eth.com'
11
11
  ],
12
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
12
13
  faucets: [],
13
14
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
14
15
  infoURL: 'https://ethereum.org',
@@ -90,8 +91,8 @@ const chainArray = [
90
91
  ]
91
92
  },
92
93
  {
93
- name: 'Görli',
94
- title: 'Ethereum Testnet Görli',
94
+ name: 'Goerli',
95
+ title: 'Ethereum Testnet Goerli',
95
96
  chain: 'ETH',
96
97
  rpc: [
97
98
  'https://goerli.infura.io/v3/${INFURA_API_KEY}',
@@ -103,7 +104,7 @@ const chainArray = [
103
104
  'https://goerli-faucet.slock.it?address=${ADDRESS}',
104
105
  'https://faucet.goerli.mudit.blog'
105
106
  ],
106
- nativeCurrency: { name: 'Görli Ether', symbol: 'ETH', decimals: 18 },
107
+ nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
107
108
  infoURL: 'https://goerli.net/#about',
108
109
  shortName: 'gor',
109
110
  chainId: 5,
@@ -688,7 +689,7 @@ const chainArray = [
688
689
  'https://docs.crab.network/dvm/wallets/dvm-metamask#apply-for-the-test-token'
689
690
  ],
690
691
  nativeCurrency: {
691
- name: 'Pangolin Network Native Token',
692
+ name: 'Pangolin Network Native Token',
692
693
  symbol: 'PRING',
693
694
  decimals: 18
694
695
  },
@@ -728,7 +729,7 @@ const chainArray = [
728
729
  rpc: [ 'https://pangoro-rpc.darwinia.network' ],
729
730
  faucets: [],
730
731
  nativeCurrency: {
731
- name: 'Pangoro Network Native Token',
732
+ name: 'Pangoro Network Native Token',
732
733
  symbol: 'ORING',
733
734
  decimals: 18
734
735
  },
@@ -1923,8 +1924,9 @@ const chainArray = [
1923
1924
  chain: 'DeBank',
1924
1925
  rpc: [],
1925
1926
  faucets: [],
1927
+ icon: 'debank',
1926
1928
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
1927
- infoURL: '',
1929
+ infoURL: 'https://debank.com',
1928
1930
  shortName: 'debank-testnet',
1929
1931
  chainId: 115,
1930
1932
  networkId: 115,
@@ -1935,8 +1937,9 @@ const chainArray = [
1935
1937
  chain: 'DeBank',
1936
1938
  rpc: [],
1937
1939
  faucets: [],
1940
+ icon: 'debank',
1938
1941
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
1939
- infoURL: '',
1942
+ infoURL: 'https://debank.com',
1940
1943
  shortName: 'debank-mainnet',
1941
1944
  chainId: 116,
1942
1945
  networkId: 116,
@@ -2052,6 +2055,24 @@ const chainArray = [
2052
2055
  }
2053
2056
  ]
2054
2057
  },
2058
+ {
2059
+ name: 'Alyx Chain Testnet',
2060
+ chain: 'Alyx Chain Testnet',
2061
+ rpc: [ 'https://testnet-rpc.alyxchain.com' ],
2062
+ faucets: [ 'https://faucet.alyxchain.com' ],
2063
+ nativeCurrency: { name: 'Alyx Testnet Native Token', symbol: 'ALYX', decimals: 18 },
2064
+ infoURL: 'https://www.alyxchain.com',
2065
+ shortName: 'AlyxTestnet',
2066
+ chainId: 135,
2067
+ networkId: 135,
2068
+ explorers: [
2069
+ {
2070
+ name: 'alyx testnet scan',
2071
+ url: 'https://testnet.alyxscan.com',
2072
+ standard: 'EIP3091'
2073
+ }
2074
+ ]
2075
+ },
2055
2076
  {
2056
2077
  name: 'Polygon Mainnet',
2057
2078
  chain: 'Polygon',
@@ -2641,7 +2662,7 @@ const chainArray = [
2641
2662
  ]
2642
2663
  },
2643
2664
  {
2644
- name: 'Filecoin Mainnet',
2665
+ name: 'Filecoin - Mainnet',
2645
2666
  chain: 'FIL',
2646
2667
  status: 'incubating',
2647
2668
  rpc: [ 'https://api.node.glif.io/rpc/v0' ],
@@ -2937,7 +2958,7 @@ const chainArray = [
2937
2958
  chain: 'ETH',
2938
2959
  rpc: [ 'https://goerli.optimism.io/' ],
2939
2960
  faucets: [],
2940
- nativeCurrency: { name: 'Görli Ether', symbol: 'ETH', decimals: 18 },
2961
+ nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
2941
2962
  infoURL: 'https://optimism.io',
2942
2963
  shortName: 'ogor',
2943
2964
  chainId: 420,
@@ -3353,6 +3374,27 @@ const chainArray = [
3353
3374
  }
3354
3375
  ]
3355
3376
  },
3377
+ {
3378
+ name: 'QL1',
3379
+ chain: 'QOM',
3380
+ status: 'incubating',
3381
+ rpc: [ 'https://mainnet.qom.one:8545' ],
3382
+ faucets: [],
3383
+ nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 },
3384
+ infoURL: 'https://qom.one',
3385
+ shortName: 'qom',
3386
+ chainId: 766,
3387
+ networkId: 766,
3388
+ icon: 'qom',
3389
+ explorers: [
3390
+ {
3391
+ name: 'QL1 Mainnet Explorer',
3392
+ url: 'https://mainnet.qom.one',
3393
+ icon: 'qom',
3394
+ standard: 'EIP3091'
3395
+ }
3396
+ ]
3397
+ },
3356
3398
  {
3357
3399
  name: 'OpenChain Testnet',
3358
3400
  chain: 'OpenChain Testnet',
@@ -4073,6 +4115,35 @@ const chainArray = [
4073
4115
  }
4074
4116
  ]
4075
4117
  },
4118
+ {
4119
+ name: 'DeFiChain EVM Network Mainnet',
4120
+ chain: 'defichain-evm',
4121
+ status: 'incubating',
4122
+ rpc: [],
4123
+ faucets: [],
4124
+ nativeCurrency: { name: 'DeFiChain', symbol: 'DFI', decimals: 18 },
4125
+ infoURL: 'https://meta.defichain.com/',
4126
+ shortName: 'DFI',
4127
+ chainId: 1130,
4128
+ networkId: 1130,
4129
+ slip44: 1130,
4130
+ icon: 'defichain-network',
4131
+ explorers: []
4132
+ },
4133
+ {
4134
+ name: 'DeFiChain EVM Network Testnet',
4135
+ chain: 'defichain-evm-testnet',
4136
+ status: 'incubating',
4137
+ rpc: [],
4138
+ faucets: [],
4139
+ nativeCurrency: { name: 'DeFiChain', symbol: 'DFI', decimals: 18 },
4140
+ infoURL: 'https://meta.defichain.com/',
4141
+ shortName: 'DFI-T',
4142
+ chainId: 1131,
4143
+ networkId: 1131,
4144
+ icon: 'defichain-network',
4145
+ explorers: []
4146
+ },
4076
4147
  {
4077
4148
  name: 'MathChain',
4078
4149
  chain: 'MATH',
@@ -4439,6 +4510,24 @@ const chainArray = [
4439
4510
  }
4440
4511
  ]
4441
4512
  },
4513
+ {
4514
+ name: 'Alyx Mainnet',
4515
+ chain: 'ALYX',
4516
+ rpc: [ 'https://rpc.alyxchain.com' ],
4517
+ faucets: [],
4518
+ nativeCurrency: { name: 'Alyx Chain Native Token', symbol: 'ALYX', decimals: 18 },
4519
+ infoURL: 'https://www.alyxchain.com',
4520
+ shortName: 'alyx',
4521
+ chainId: 1314,
4522
+ networkId: 1314,
4523
+ explorers: [
4524
+ {
4525
+ name: 'alyxscan',
4526
+ url: 'https://www.alyxscan.com',
4527
+ standard: 'EIP3091'
4528
+ }
4529
+ ]
4530
+ },
4442
4531
  {
4443
4532
  name: 'Aitd Mainnet',
4444
4533
  chain: 'AITD',
@@ -5408,6 +5497,25 @@ const chainArray = [
5408
5497
  }
5409
5498
  ]
5410
5499
  },
5500
+ {
5501
+ name: 'BitYuan Mainnet',
5502
+ chain: 'BTY',
5503
+ rpc: [ 'https://mainnet.bityuan.com/eth' ],
5504
+ faucets: [],
5505
+ nativeCurrency: { name: 'BTY', symbol: 'BTY', decimals: 18 },
5506
+ infoURL: 'https://www.bityuan.com',
5507
+ shortName: 'bty',
5508
+ chainId: 2999,
5509
+ networkId: 2999,
5510
+ icon: 'bty',
5511
+ explorers: [
5512
+ {
5513
+ name: 'BitYuan Block Chain Explorer',
5514
+ url: 'https://mainnet.bityuan.com',
5515
+ standard: 'none'
5516
+ }
5517
+ ]
5518
+ },
5411
5519
  {
5412
5520
  name: 'CENNZnet Rata',
5413
5521
  chain: 'CENNZnet',
@@ -5460,7 +5568,7 @@ const chainArray = [
5460
5568
  ]
5461
5569
  },
5462
5570
  {
5463
- name: 'Filecoin Buildernet',
5571
+ name: 'Filecoin - Buildernet',
5464
5572
  chain: 'FIL',
5465
5573
  status: 'incubating',
5466
5574
  rpc: [],
@@ -5602,6 +5710,7 @@ const chainArray = [
5602
5710
  {
5603
5711
  name: 'Pandonet',
5604
5712
  chain: 'Pando',
5713
+ icon: 'pando',
5605
5714
  rpc: [ 'https://eth-rpc-api.pandoproject.org/rpc' ],
5606
5715
  faucets: [],
5607
5716
  nativeCurrency: { name: 'Pando token ', symbol: 'PTX', decimals: 18 },
@@ -5620,6 +5729,7 @@ const chainArray = [
5620
5729
  {
5621
5730
  name: 'Pando Testnet',
5622
5731
  chain: 'Pando',
5732
+ icon: 'pando',
5623
5733
  rpc: [ 'https://testnet.ethrpc.pandoproject.org/rpc' ],
5624
5734
  faucets: [],
5625
5735
  nativeCurrency: { name: 'Pando token ', symbol: 'PTX', decimals: 18 },
@@ -7495,7 +7605,7 @@ const chainArray = [
7495
7605
  ]
7496
7606
  },
7497
7607
  {
7498
- name: 'Optimism Bedrock: Goerli Alpha Testnet',
7608
+ name: 'Optimism Bedrock (Goerli Alpha Testnet)',
7499
7609
  chain: 'ETH',
7500
7610
  rpc: [
7501
7611
  'https://alpha-1-replica-0.bedrock-goerli.optimism.io',
@@ -7504,7 +7614,7 @@ const chainArray = [
7504
7614
  'https://alpha-1-replica-2.bedrock-goerli.optimism.io'
7505
7615
  ],
7506
7616
  faucets: [],
7507
- nativeCurrency: { name: 'Görli Ether', symbol: 'ETH', decimals: 18 },
7617
+ nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
7508
7618
  infoURL: 'https://community.optimism.io/docs/developers/bedrock',
7509
7619
  shortName: 'obgor',
7510
7620
  chainId: 28528,
@@ -7568,7 +7678,7 @@ const chainArray = [
7568
7678
  ]
7569
7679
  },
7570
7680
  {
7571
- name: 'Filecoin Wallaby testnet',
7681
+ name: 'Filecoin - Wallaby testnet',
7572
7682
  chain: 'FIL',
7573
7683
  status: 'incubating',
7574
7684
  rpc: [ 'https://wallaby.node.glif.io/rpc/v0' ],
@@ -9273,7 +9383,7 @@ const chainArray = [
9273
9383
  explorers: []
9274
9384
  },
9275
9385
  {
9276
- name: 'Filecoin Calibration testnet',
9386
+ name: 'Filecoin - Calibration testnet',
9277
9387
  chain: 'FIL',
9278
9388
  status: 'incubating',
9279
9389
  rpc: [ 'https://api.calibration.node.glif.io/rpc/v0' ],
@@ -9430,19 +9540,19 @@ const chainArray = [
9430
9540
  }
9431
9541
  },
9432
9542
  {
9433
- name: 'Arbitrum Görli',
9434
- title: 'Arbitrum Görli Rollup Testnet',
9543
+ name: 'Arbitrum Goerli',
9544
+ title: 'Arbitrum Goerli Rollup Testnet',
9435
9545
  chainId: 421613,
9436
9546
  shortName: 'arb-goerli',
9437
9547
  chain: 'ETH',
9438
9548
  networkId: 421613,
9439
- nativeCurrency: { name: 'Arbitrum Görli Ether', symbol: 'AGOR', decimals: 18 },
9549
+ nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', decimals: 18 },
9440
9550
  rpc: [ 'https://goerli-rollup.arbitrum.io/rpc/' ],
9441
9551
  faucets: [],
9442
9552
  infoURL: 'https://arbitrum.io/',
9443
9553
  explorers: [
9444
9554
  {
9445
- name: 'Arbitrum Görli Rollup Explorer',
9555
+ name: 'Arbitrum Goerli Rollup Explorer',
9446
9556
  url: 'https://goerli-rollup-explorer.arbitrum.io',
9447
9557
  standard: 'EIP3091'
9448
9558
  }
@@ -9576,7 +9686,7 @@ const chainArray = [
9576
9686
  parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
9577
9687
  },
9578
9688
  {
9579
- name: 'Scroll Görli Testnet',
9689
+ name: 'Scroll Goerli Testnet',
9580
9690
  chain: 'ETH',
9581
9691
  rpc: [],
9582
9692
  faucets: [],
@@ -9618,6 +9728,26 @@ const chainArray = [
9618
9728
  networkId: 666666,
9619
9729
  slip44: 60
9620
9730
  },
9731
+ {
9732
+ name: 'OctaSpace',
9733
+ chain: 'OCTA',
9734
+ rpc: [ 'https://rpc.octa.space', 'wss://rpc.octa.space' ],
9735
+ faucets: [],
9736
+ nativeCurrency: { name: 'OctaSpace', symbol: 'OCTA', decimals: 18 },
9737
+ infoURL: 'https://octa.space',
9738
+ shortName: 'octa',
9739
+ chainId: 800001,
9740
+ networkId: 800001,
9741
+ icon: 'octaspace',
9742
+ explorers: [
9743
+ {
9744
+ name: 'blockscout',
9745
+ url: 'https://explorer.octa.space',
9746
+ icon: 'blockscout',
9747
+ standard: 'EIP3091'
9748
+ }
9749
+ ]
9750
+ },
9621
9751
  {
9622
9752
  name: '4GoodNetwork',
9623
9753
  chain: '4GN',
@@ -9912,7 +10042,7 @@ const chainArray = [
9912
10042
  ]
9913
10043
  },
9914
10044
  {
9915
- name: 'Filecoin Butterfly testnet',
10045
+ name: 'Filecoin - Butterfly testnet',
9916
10046
  chain: 'FIL',
9917
10047
  status: 'incubating',
9918
10048
  rpc: [],
@@ -9972,6 +10102,27 @@ const chainArray = [
9972
10102
  }
9973
10103
  ]
9974
10104
  },
10105
+ {
10106
+ name: 'QL1 Testnet',
10107
+ chain: 'QOM',
10108
+ status: 'incubating',
10109
+ rpc: [ 'https://testnet.qom.one:8545' ],
10110
+ faucets: [ 'https://faucet.qom.one' ],
10111
+ nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 },
10112
+ infoURL: 'https://qom.one',
10113
+ shortName: 'tqom',
10114
+ chainId: 7668378,
10115
+ networkId: 7668378,
10116
+ icon: 'qom',
10117
+ explorers: [
10118
+ {
10119
+ name: 'QL1 Testnet Explorer',
10120
+ url: 'https://testnet.qom.one',
10121
+ icon: 'qom',
10122
+ standard: 'EIP3091'
10123
+ }
10124
+ ]
10125
+ },
9975
10126
  {
9976
10127
  name: 'Musicoin',
9977
10128
  chain: 'MUSIC',
@@ -10180,7 +10331,7 @@ const chainArray = [
10180
10331
  slip44: 344
10181
10332
  },
10182
10333
  {
10183
- name: 'Filecoin Local testnet',
10334
+ name: 'Filecoin - Local testnet',
10184
10335
  chain: 'FIL',
10185
10336
  status: 'incubating',
10186
10337
  rpc: [],
@@ -10338,7 +10489,7 @@ const chainArray = [
10338
10489
  ]
10339
10490
  },
10340
10491
  {
10341
- name: 'Calypso NFT Hub | SKALE Testnet',
10492
+ name: 'Calypso NFT Hub (SKALE Testnet)',
10342
10493
  title: 'Calypso NFT Hub Testnet',
10343
10494
  chain: 'staging-utter-unripe-menkar',
10344
10495
  rpc: [
@@ -10498,7 +10649,7 @@ const chainArray = [
10498
10649
  ]
10499
10650
  },
10500
10651
  {
10501
- name: 'Calypso NFT Hub | SKALE',
10652
+ name: 'Calypso NFT Hub (SKALE)',
10502
10653
  title: 'Calypso NFT Hub Mainnet',
10503
10654
  chain: 'honorable-steel-rasalhague',
10504
10655
  rpc: [ 'https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague' ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {