eth-chainlist 0.0.188 → 0.0.189

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.189 (2023-07-19)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.188 ([52aaa41](https://github.com/poowf/eth-chainlist/commit/52aaa41da55d93246cd783be5474781117dcd550))
9
+ * update chain data ([0cdd477](https://github.com/poowf/eth-chainlist/commit/0cdd477ee26abb084dd45d42e109d324bbc4c7d8))
10
+
3
11
  ### 0.0.188 (2023-07-18)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -8148,6 +8148,25 @@ const chainArray = [
8148
8148
  }
8149
8149
  ]
8150
8150
  },
8151
+ {
8152
+ name: 'Antofy Mainnet',
8153
+ chain: 'ABN',
8154
+ icon: 'antofy',
8155
+ rpc: [ 'https://rpc.antofy.io' ],
8156
+ faucets: [ 'https://faucet.antofy.io' ],
8157
+ nativeCurrency: { name: 'Antofy', symbol: 'ABN', decimals: 18 },
8158
+ infoURL: 'https://antofy.io',
8159
+ shortName: 'ABNm',
8160
+ chainId: 2202,
8161
+ networkId: 2202,
8162
+ explorers: [
8163
+ {
8164
+ name: 'Antofy Mainnet',
8165
+ url: 'https://antofyscan.com',
8166
+ standard: 'EIP3091'
8167
+ }
8168
+ ]
8169
+ },
8151
8170
  {
8152
8171
  name: 'Bitcoin EVM',
8153
8172
  chain: 'Bitcoin EVM',
@@ -9689,6 +9708,7 @@ const chainArray = [
9689
9708
  {
9690
9709
  name: 'Mantle',
9691
9710
  chain: 'ETH',
9711
+ icon: 'mantle',
9692
9712
  rpc: [ 'https://rpc.mantle.xyz' ],
9693
9713
  faucets: [],
9694
9714
  nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
@@ -9702,7 +9722,12 @@ const chainArray = [
9702
9722
  url: 'https://explorer.mantle.xyz',
9703
9723
  standard: 'EIP3091'
9704
9724
  }
9705
- ]
9725
+ ],
9726
+ parent: {
9727
+ type: 'L2',
9728
+ chain: 'eip155-1',
9729
+ bridges: [ { url: 'https://bridge.mantle.xyz' } ]
9730
+ }
9706
9731
  },
9707
9732
  {
9708
9733
  name: 'Mantle Testnet',
@@ -10636,6 +10661,26 @@ const chainArray = [
10636
10661
  }
10637
10662
  ]
10638
10663
  },
10664
+ {
10665
+ name: 'ARDENIUM Athena',
10666
+ chain: 'ATHENA',
10667
+ rpc: [ 'https://rpc-athena.ardescan.com/' ],
10668
+ faucets: [ 'https://faucet-athena.ardescan.com/' ],
10669
+ nativeCurrency: { name: 'ARD', symbol: 'tARD', decimals: 18 },
10670
+ infoURL: 'https://ardenium.org',
10671
+ shortName: 'ard',
10672
+ chainId: 7895,
10673
+ networkId: 7895,
10674
+ icon: 'ard',
10675
+ explorers: [
10676
+ {
10677
+ name: 'ARDENIUM Athena Explorer',
10678
+ icon: 'ard',
10679
+ url: 'https://testnet.ardscan.com',
10680
+ standard: 'none'
10681
+ }
10682
+ ]
10683
+ },
10639
10684
  {
10640
10685
  name: 'DOS Chain',
10641
10686
  chain: 'DOS',
@@ -11653,7 +11698,10 @@ const chainArray = [
11653
11698
  icon: 'gonchain',
11654
11699
  rpc: [
11655
11700
  'https://node1.testnet.gaiaopen.network',
11656
- 'http://database1.gaiaopen.network'
11701
+ 'https://node1.mainnet.gon.network',
11702
+ 'https://node2.mainnet.gon.network',
11703
+ 'https://node3.mainnet.gon.network',
11704
+ 'https://node4.mainnet.gon.network'
11657
11705
  ],
11658
11706
  faucets: [],
11659
11707
  nativeCurrency: { name: 'Gon Token', symbol: 'GT', decimals: 18 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {