eth-chainlist 0.0.538 → 0.0.540

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.540 (2024-11-15)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.539 ([dd151d3](https://github.com/poowf/eth-chainlist/commit/dd151d3823b94c824e317a3028173b1942954fb8))
9
+ * update chain data ([9e83c7e](https://github.com/poowf/eth-chainlist/commit/9e83c7eefc4b115361093326d992b1c5936713b0))
10
+
11
+ ### 0.0.539 (2024-11-14)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.538 ([b465586](https://github.com/poowf/eth-chainlist/commit/b4655869dad6f24e257938a70d64f93115a2685c))
17
+ * update chain data ([f54ed95](https://github.com/poowf/eth-chainlist/commit/f54ed957c552f0dcb7b3f5846fa88c46b66fba74))
18
+
3
19
  ### 0.0.538 (2024-11-13)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3321,6 +3321,7 @@ const chainArray = [
3321
3321
  chainId: 164,
3322
3322
  networkId: 164,
3323
3323
  slip44: 1,
3324
+ icon: 'omni',
3324
3325
  explorers: [
3325
3326
  {
3326
3327
  name: 'Omni EVM and cross-chain Explorer',
@@ -3347,16 +3348,27 @@ const chainArray = [
3347
3348
  {
3348
3349
  name: 'Omni',
3349
3350
  chain: 'Omni',
3350
- status: 'incubating',
3351
- rpc: [],
3351
+ status: 'active',
3352
+ rpc: [
3353
+ 'https://mainnet.omni.network',
3354
+ 'wss://wss.mainnet.omni.network'
3355
+ ],
3352
3356
  features: [ { name: 'EIP155' } ],
3353
3357
  faucets: [],
3354
3358
  nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
3355
- infoURL: 'https://docs.omni.network/',
3359
+ infoURL: 'https://docs.omni.network',
3356
3360
  shortName: 'omni',
3357
3361
  chainId: 166,
3358
3362
  networkId: 166,
3359
- slip44: 1
3363
+ slip44: 1,
3364
+ icon: 'omni',
3365
+ explorers: [
3366
+ {
3367
+ name: 'Omni EVM and cross-chain Explorer',
3368
+ url: 'https://omniscan.network',
3369
+ standard: 'EIP3091'
3370
+ }
3371
+ ]
3360
3372
  },
3361
3373
  {
3362
3374
  name: 'Atoshi Testnet',
@@ -14914,6 +14926,19 @@ const chainArray = [
14914
14926
  ],
14915
14927
  parent: { type: 'L2', chain: 'eip155-5' }
14916
14928
  },
14929
+ {
14930
+ name: 'K2 Testnet',
14931
+ chain: 'K2',
14932
+ icon: 'karak',
14933
+ rpc: [],
14934
+ faucets: [],
14935
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
14936
+ infoURL: 'https://karak.network',
14937
+ shortName: 'K2-testnet',
14938
+ chainId: 2512,
14939
+ networkId: 2512,
14940
+ status: 'incubating'
14941
+ },
14917
14942
  {
14918
14943
  name: 'Fraxtal Testnet',
14919
14944
  chain: 'FRAX',
@@ -17198,6 +17223,25 @@ const chainArray = [
17198
17223
  }
17199
17224
  ]
17200
17225
  },
17226
+ {
17227
+ name: 'Echos Chain',
17228
+ chain: 'Echos',
17229
+ rpc: [],
17230
+ features: [],
17231
+ faucets: [],
17232
+ nativeCurrency: { name: 'USD Coin', symbol: 'USDC', decimals: 18 },
17233
+ infoURL: 'https://www.echos.fun/',
17234
+ shortName: 'echos',
17235
+ chainId: 4321,
17236
+ networkId: 4321,
17237
+ explorers: [
17238
+ {
17239
+ name: 'Echos Explorer',
17240
+ url: 'https://explorer.echos.fun',
17241
+ standard: 'none'
17242
+ }
17243
+ ]
17244
+ },
17201
17245
  {
17202
17246
  name: 'Bobafuji Testnet',
17203
17247
  chain: 'Bobafuji Testnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.538",
3
+ "version": "0.0.540",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {