eth-chainlist 0.0.545 → 0.0.547

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.547 (2024-11-25)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.546 ([81fc6ab](https://github.com/poowf/eth-chainlist/commit/81fc6ab3f606a4c6865f17e95a92b3505c812a42))
9
+ * update chain data ([059daf4](https://github.com/poowf/eth-chainlist/commit/059daf40dfbba8490897dcf506f92b143c0b2270))
10
+
11
+ ### 0.0.546 (2024-11-24)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.545 ([79d7c24](https://github.com/poowf/eth-chainlist/commit/79d7c247b21be303470e622c04bef5cdc5e248ce))
17
+ * update chain data ([e401862](https://github.com/poowf/eth-chainlist/commit/e401862d768108e0d08a4f2d8b24e1b679d7cb64))
18
+
3
19
  ### 0.0.545 (2024-11-23)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -10183,6 +10183,18 @@ const chainArray = [
10183
10183
  }
10184
10184
  ]
10185
10185
  },
10186
+ {
10187
+ name: 'Litheum Test Network',
10188
+ chain: 'Litheum',
10189
+ rpc: [ 'https://testnet.litheum.com' ],
10190
+ faucets: [],
10191
+ nativeCurrency: { name: 'Lith', symbol: 'LTH', decimals: 9 },
10192
+ infoURL: 'https://litheum.com',
10193
+ shortName: 'lith',
10194
+ chainId: 1174,
10195
+ networkId: 1174,
10196
+ explorers: []
10197
+ },
10186
10198
  {
10187
10199
  name: 'Smart Host Teknoloji TESTNET',
10188
10200
  chain: 'SHT',
@@ -22189,15 +22201,19 @@ const chainArray = [
22189
22201
  name: 'KPA Smart Chain Testnet',
22190
22202
  chain: 'KSC',
22191
22203
  rpc: [
22192
- 'https://testnet-rpc1.koppachain.com/',
22193
- 'https://testnet-rpc2.koppachain.com/',
22194
- 'https://testnet-rpc3.koppachain.com/',
22195
- 'https://testnet-rpc4.koppachain.com/'
22204
+ 'https://tkpa-rpc1.kpachain.com/',
22205
+ 'https://tkpa-rpc2.kpachain.com/',
22206
+ 'https://tkpa-rpc3.kpachain.com/',
22207
+ 'https://tkpa-rpc4.kpachain.com/',
22208
+ 'https://testnet-rpc1.kpascan.com/',
22209
+ 'https://testnet-rpc2.kpascan.com/',
22210
+ 'https://testnet-rpc3.kpascan.com/',
22211
+ 'https://testnet-rpc4.kpascan.com/'
22196
22212
  ],
22197
- faucets: [ 'https://mint.koppachain.com' ],
22213
+ faucets: [ 'https://mint.kpachain.com' ],
22198
22214
  nativeCurrency: { name: 'KPA Smart Chain Testnet', symbol: 'tKPA', decimals: 18 },
22199
22215
  features: [],
22200
- infoURL: 'https://koppachain.com',
22216
+ infoURL: 'https://kpachain.com',
22201
22217
  shortName: 'KPA',
22202
22218
  chainId: 9091,
22203
22219
  networkId: 9091,
@@ -31968,8 +31984,8 @@ const chainArray = [
31968
31984
  title: 'Plume Sepolia L2 Rollup Devnet',
31969
31985
  chain: 'ETH',
31970
31986
  rpc: [
31971
- 'https://test-rpc.plumenetwork.xyz/http',
31972
- 'wss://test-rpc.plumenetwork.xyz/ws'
31987
+ 'https://test-rpc.plumenetwork.xyz',
31988
+ 'wss://test-rpc.plumenetwork.xyz'
31973
31989
  ],
31974
31990
  faucets: [],
31975
31991
  nativeCurrency: { name: 'Plume Sepolia Ether', symbol: 'ETH', decimals: 18 },
@@ -31989,6 +32005,33 @@ const chainArray = [
31989
32005
  ],
31990
32006
  parent: { type: 'L2', chain: 'eip155-11155111' }
31991
32007
  },
32008
+ {
32009
+ name: 'Plume Mainnet',
32010
+ title: 'Plume Ethereum L2 Rollup Mainnet',
32011
+ chain: 'ETH',
32012
+ rpc: [ 'https://rpc.plumenetwork.xyz', 'wss://rpc.plumenetwork.xyz' ],
32013
+ faucets: [],
32014
+ nativeCurrency: { name: 'Plume Ether', symbol: 'ETH', decimals: 18 },
32015
+ infoURL: 'https://www.plumenetwork.xyz/',
32016
+ shortName: 'plume',
32017
+ chainId: 98865,
32018
+ networkId: 98865,
32019
+ slip44: 1,
32020
+ icon: 'plume',
32021
+ explorers: [
32022
+ {
32023
+ name: 'Blockscout',
32024
+ url: 'https://explorer.plumenetwork.xyz',
32025
+ icon: 'blockscout',
32026
+ standard: 'EIP3091'
32027
+ }
32028
+ ],
32029
+ parent: {
32030
+ type: 'L2',
32031
+ chain: 'eip155-11155111',
32032
+ bridges: [ { url: 'https://bridge.plumenetwork.xyz' } ]
32033
+ }
32034
+ },
31992
32035
  {
31993
32036
  name: 'Ebi Chain',
31994
32037
  title: 'Ebi Chain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.545",
3
+ "version": "0.0.547",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {