eth-chainlist 0.0.478 → 0.0.479

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.479 (2024-08-30)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.478 ([d5a25de](https://github.com/poowf/eth-chainlist/commit/d5a25de494191de80d88dbec9e3012d09932a79b))
9
+ * update chain data ([4ec1258](https://github.com/poowf/eth-chainlist/commit/4ec125868963d5e49258001643b8b11d95c0e643))
10
+
3
11
  ### 0.0.478 (2024-08-29)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -182,6 +182,7 @@ const chainArray = [
182
182
  shortName: 'tch',
183
183
  chainId: 7,
184
184
  networkId: 7,
185
+ icon: 'tch',
185
186
  explorers: [
186
187
  {
187
188
  name: 'Thaichain Explorer',
@@ -3397,6 +3398,26 @@ const chainArray = [
3397
3398
  networkId: 170,
3398
3399
  slip44: 1
3399
3400
  },
3401
+ {
3402
+ name: 'CO2e Ledger',
3403
+ chain: 'CO2E',
3404
+ rpc: [ 'https://rpc.co2ledger.xyz' ],
3405
+ faucets: [],
3406
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3407
+ nativeCurrency: { name: 'CO2e Token', symbol: 'CO2E', decimals: 18 },
3408
+ infoURL: 'https://co2ledger.xyz',
3409
+ shortName: 'CO2e',
3410
+ chainId: 171,
3411
+ networkId: 171,
3412
+ icon: 'co2e',
3413
+ explorers: [
3414
+ {
3415
+ name: 'CO2e Explorer',
3416
+ url: 'https://exp.co2ledger.xyz',
3417
+ standard: 'EIP3091'
3418
+ }
3419
+ ]
3420
+ },
3400
3421
  {
3401
3422
  name: 'Latam-Blockchain Resil Testnet',
3402
3423
  chain: 'Resil',
@@ -11056,7 +11077,7 @@ const chainArray = [
11056
11077
  rpc: [ 'https://mainnet.pivotalprotocol.com' ],
11057
11078
  faucets: [],
11058
11079
  shortName: 'pivotal-mainnet',
11059
- nativeCurrency: { name: 'Pivotal Plus', symbol: 'PLUS', decimals: 18 },
11080
+ nativeCurrency: { name: 'Pivotal ETH', symbol: 'ETH', decimals: 18 },
11060
11081
  infoURL: 'http://thepivotal.xyz/',
11061
11082
  explorers: [
11062
11083
  {
@@ -22776,7 +22797,7 @@ const chainArray = [
22776
22797
  rpc: [ 'https://sepolia.pivotalprotocol.com' ],
22777
22798
  faucets: [],
22778
22799
  shortName: 'pivotal-sepolia',
22779
- nativeCurrency: { name: 'Pivotal Plus', symbol: 'PLUS', decimals: 18 },
22800
+ nativeCurrency: { name: 'Pivotal ETH', symbol: 'ETH', decimals: 18 },
22780
22801
  infoURL: 'http://thepivotal.xyz/',
22781
22802
  explorers: [
22782
22803
  {
@@ -27247,11 +27268,11 @@ const chainArray = [
27247
27268
  {
27248
27269
  name: 'eCredits Testnet',
27249
27270
  chain: 'ECS',
27250
- rpc: [ 'https://rpc.tst.ecredits.com' ],
27271
+ rpc: [],
27251
27272
  faucets: [ 'https://faucet.tst.ecredits.com' ],
27252
27273
  nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 },
27253
27274
  infoURL: 'https://ecredits.com',
27254
- shortName: 'ecs-testnet',
27275
+ shortName: 'ecs-testnet-old',
27255
27276
  chainId: 63001,
27256
27277
  networkId: 63001,
27257
27278
  slip44: 1,
@@ -27263,6 +27284,29 @@ const chainArray = [
27263
27284
  icon: 'ecredits',
27264
27285
  standard: 'EIP3091'
27265
27286
  }
27287
+ ],
27288
+ status: 'deprecated'
27289
+ },
27290
+ {
27291
+ name: 'eSync Network Testnet',
27292
+ title: 'eSync Network Testnet',
27293
+ chain: 'ECS',
27294
+ rpc: [ 'http://rpc.tst.esync.network' ],
27295
+ faucets: [ 'https://faucet.tst.ecredits.com' ],
27296
+ nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 },
27297
+ infoURL: 'https://esync.network',
27298
+ shortName: 'esync-testnet',
27299
+ chainId: 63002,
27300
+ networkId: 63002,
27301
+ slip44: 1,
27302
+ icon: 'esync',
27303
+ explorers: [
27304
+ {
27305
+ name: 'eSync Network Testnet Explorer',
27306
+ url: 'https://explorer.tst.esync.network',
27307
+ icon: 'esync',
27308
+ standard: 'EIP3091'
27309
+ }
27266
27310
  ]
27267
27311
  },
27268
27312
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.478",
3
+ "version": "0.0.479",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {