eth-chainlist 0.0.183 → 0.0.184

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.184 (2023-07-14)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.183 ([8296b7b](https://github.com/poowf/eth-chainlist/commit/8296b7b89d5cc412663ef3f38b6a84b4a05c02e9))
9
+ * update chain data ([b4950e7](https://github.com/poowf/eth-chainlist/commit/b4950e780d12b2a84b353fd10bc471f7b8bcd1aa))
10
+
3
11
  ### 0.0.183 (2023-07-13)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -10880,14 +10880,27 @@ const chainArray = [
10880
10880
  {
10881
10881
  name: 'Base',
10882
10882
  chain: 'ETH',
10883
- rpc: [],
10883
+ rpc: [ 'https://developer-access-mainnet.base.org/' ],
10884
10884
  faucets: [],
10885
10885
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
10886
10886
  infoURL: 'https://base.org',
10887
10887
  shortName: 'base',
10888
10888
  chainId: 8453,
10889
10889
  networkId: 8453,
10890
- status: 'incubating'
10890
+ icon: 'base',
10891
+ explorers: [
10892
+ {
10893
+ name: 'basescan',
10894
+ url: 'https://basescan.org',
10895
+ standard: 'none'
10896
+ },
10897
+ {
10898
+ name: 'basescout',
10899
+ url: 'https://base.blockscout.com',
10900
+ standard: 'none'
10901
+ }
10902
+ ],
10903
+ status: 'active'
10891
10904
  },
10892
10905
  {
10893
10906
  name: 'Toki Network',
@@ -12621,6 +12634,25 @@ const chainArray = [
12621
12634
  }
12622
12635
  ]
12623
12636
  },
12637
+ {
12638
+ name: 'Antofy Testnet',
12639
+ chain: 'ABN',
12640
+ icon: 'antofy',
12641
+ rpc: [ 'https://testnet-rpc.antofy.io' ],
12642
+ faucets: [ 'https://faucet.antofy.io' ],
12643
+ nativeCurrency: { name: 'Antofy', symbol: 'ABN', decimals: 18 },
12644
+ infoURL: 'https://antofy.io',
12645
+ shortName: 'ABNt',
12646
+ chainId: 23006,
12647
+ networkId: 23006,
12648
+ explorers: [
12649
+ {
12650
+ name: 'Antofy Testnet',
12651
+ url: 'https://test.antofyscan.com',
12652
+ standard: 'EIP3091'
12653
+ }
12654
+ ]
12655
+ },
12624
12656
  {
12625
12657
  name: 'Opside Testnet',
12626
12658
  chain: 'Opside',
@@ -14526,6 +14558,7 @@ const chainArray = [
14526
14558
  shortName: 'basegor',
14527
14559
  chainId: 84531,
14528
14560
  networkId: 84531,
14561
+ icon: 'baseTestnet',
14529
14562
  explorers: [
14530
14563
  {
14531
14564
  name: 'basescan',
@@ -17534,7 +17567,7 @@ const chainArray = [
17534
17567
  {
17535
17568
  name: 'Neon EVM MainNet',
17536
17569
  chain: 'Solana',
17537
- rpc: [ 'https://mainnet.neonevm.org' ],
17570
+ rpc: [],
17538
17571
  faucets: [],
17539
17572
  icon: 'neon',
17540
17573
  nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.183",
3
+ "version": "0.0.184",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {