eth-chainlist 0.0.507 → 0.0.509

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +200 -19
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.509 (2024-10-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.508 ([6d7200d](https://github.com/poowf/eth-chainlist/commit/6d7200d8a4ca6c37d24a4070c6ab5ed6bc700a71))
9
+ * update chain data ([61c3aac](https://github.com/poowf/eth-chainlist/commit/61c3aaca06ba53b5570c5475051e5fe6c3c9ae4f))
10
+
11
+ ### 0.0.508 (2024-10-05)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.507 ([d5cab33](https://github.com/poowf/eth-chainlist/commit/d5cab332bf4229967d5e8239b87a8e6f16d0d3e5))
17
+ * update chain data ([5ee8140](https://github.com/poowf/eth-chainlist/commit/5ee814032a2e12af1dd4aedaddf7e94e54c2fe72))
18
+
3
19
  ### 0.0.507 (2024-10-04)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -4442,6 +4442,24 @@ const chainArray = [
4442
4442
  }
4443
4443
  ]
4444
4444
  },
4445
+ {
4446
+ name: 'Glide L1 Protocol XP',
4447
+ chain: 'GLXP',
4448
+ icon: 'glide',
4449
+ rpc: [
4450
+ 'https://rpc-api.glideprotocol.xyz/l1-rpc/',
4451
+ 'wss://rpc-api.glideprotocol.xyz/l1-rpc/'
4452
+ ],
4453
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
4454
+ faucets: [],
4455
+ nativeCurrency: { name: 'Glide XP', symbol: 'GLXP', decimals: 18 },
4456
+ infoURL: 'https://glideprotocol.xyz',
4457
+ shortName: 'glide',
4458
+ chainId: 251,
4459
+ networkId: 251,
4460
+ slip44: 60,
4461
+ status: 'active'
4462
+ },
4445
4463
  {
4446
4464
  name: 'Fraxtal',
4447
4465
  chain: 'FRAX',
@@ -4462,6 +4480,32 @@ const chainArray = [
4462
4480
  ],
4463
4481
  status: 'active'
4464
4482
  },
4483
+ {
4484
+ name: 'Glide L2 Protocol XP',
4485
+ chain: 'GLXP',
4486
+ icon: 'glide',
4487
+ rpc: [
4488
+ 'https://rpc-api.glideprotocol.xyz/l2-rpc/',
4489
+ 'wss://rpc-api.glideprotocol.xyz/l2-rpc/'
4490
+ ],
4491
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
4492
+ faucets: [],
4493
+ nativeCurrency: { name: 'Glide XP', symbol: 'GLXP', decimals: 18 },
4494
+ infoURL: 'https://glideprotocol.xyz',
4495
+ shortName: 'glidexp',
4496
+ chainId: 253,
4497
+ networkId: 253,
4498
+ explorers: [
4499
+ {
4500
+ name: 'glidescan',
4501
+ url: 'https://blockchain-explorer.glideprotocol.xyz',
4502
+ icon: 'blockscout',
4503
+ standard: 'EIP3091'
4504
+ }
4505
+ ],
4506
+ parent: { type: 'L2', chain: 'eip155-251' },
4507
+ status: 'active'
4508
+ },
4465
4509
  {
4466
4510
  name: 'Swan Chain Mainnet',
4467
4511
  chain: 'SWAN',
@@ -7112,6 +7156,52 @@ const chainArray = [
7112
7156
  bridges: [ { url: 'https://redstone.xyz/deposit' } ]
7113
7157
  }
7114
7158
  },
7159
+ {
7160
+ name: 'Matchain',
7161
+ chain: 'Matchain',
7162
+ icon: 'matchain',
7163
+ rpc: [ 'https://rpc.matchain.io' ],
7164
+ faucets: [],
7165
+ nativeCurrency: { name: 'BNB', symbol: 'BNB', decimals: 18 },
7166
+ infoURL: 'https://www.matchain.io',
7167
+ shortName: 'Matchain',
7168
+ chainId: 698,
7169
+ networkId: 698,
7170
+ slip44: 714,
7171
+ explorers: [
7172
+ {
7173
+ name: 'Matchscan',
7174
+ url: 'https://matchscan.io',
7175
+ icon: 'matchain',
7176
+ standard: 'EIP3091'
7177
+ }
7178
+ ],
7179
+ parent: {
7180
+ type: 'L2',
7181
+ chain: 'eip155-56',
7182
+ bridges: [ { url: 'https://bnb-bridge.matchain.io' } ]
7183
+ }
7184
+ },
7185
+ {
7186
+ name: 'Matchain Testnet',
7187
+ chain: 'Matchain',
7188
+ icon: 'matchain',
7189
+ rpc: [ 'https://testnet-rpc.matchain.io' ],
7190
+ faucets: [],
7191
+ nativeCurrency: { name: 'BNB', symbol: 'BNB', decimals: 18 },
7192
+ infoURL: 'https://www.matchain.io',
7193
+ shortName: 'tMatchain',
7194
+ chainId: 699,
7195
+ networkId: 699,
7196
+ explorers: [
7197
+ {
7198
+ name: 'Matchscan Testnet',
7199
+ url: 'https://testnet.matchscan.io',
7200
+ standard: 'EIP3091',
7201
+ icon: 'matchain'
7202
+ }
7203
+ ]
7204
+ },
7115
7205
  {
7116
7206
  name: 'Star Social Testnet',
7117
7207
  chain: 'SNS',
@@ -14172,19 +14262,19 @@ const chainArray = [
14172
14262
  parent: { type: 'L2', chain: 'eip155-248' }
14173
14263
  },
14174
14264
  {
14175
- name: 'Karak Mainnet',
14176
- chain: 'Karak',
14265
+ name: 'K2 Mainnet',
14266
+ chain: 'K2',
14177
14267
  icon: 'karak',
14178
14268
  rpc: [ 'https://rpc.karak.network' ],
14179
14269
  faucets: [],
14180
14270
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
14181
14271
  infoURL: 'https://karak.network',
14182
- shortName: 'karak-mainnet',
14272
+ shortName: 'K2-mainnet',
14183
14273
  chainId: 2410,
14184
14274
  networkId: 2410,
14185
14275
  explorers: [
14186
14276
  {
14187
- name: 'Karak Mainnet Explorer',
14277
+ name: 'K2 Mainnet Explorer',
14188
14278
  url: 'https://explorer.karak.network',
14189
14279
  standard: 'EIP3091'
14190
14280
  }
@@ -19440,6 +19530,34 @@ const chainArray = [
19440
19530
  }
19441
19531
  ]
19442
19532
  },
19533
+ {
19534
+ name: 'Vexon Testnet',
19535
+ chain: 'Vexon',
19536
+ rpc: [
19537
+ 'https://rpc-testnet-asia1.vexonhub.org',
19538
+ 'https://rpc-testnet-europe1.vexonhub.org',
19539
+ 'https://rpc-testnet-01.vexonhub.org'
19540
+ ],
19541
+ faucets: [ 'https://faucet-drip.vexonhub.org' ],
19542
+ nativeCurrency: {
19543
+ name: 'Vexon Testnet Native Token',
19544
+ symbol: 'tVEX',
19545
+ decimals: 18
19546
+ },
19547
+ infoURL: 'https://vexonhub.org',
19548
+ shortName: 'vexon',
19549
+ chainId: 7879,
19550
+ networkId: 7879,
19551
+ icon: 'vexon',
19552
+ explorers: [
19553
+ {
19554
+ name: 'Vexon Testnet Explorer',
19555
+ url: 'https://testnet.vexonhub.org',
19556
+ standard: 'EIP3091',
19557
+ icon: 'vexon'
19558
+ }
19559
+ ]
19560
+ },
19443
19561
  {
19444
19562
  name: 'Kinto Mainnet',
19445
19563
  chain: 'Kinto Mainnet',
@@ -20982,7 +21100,14 @@ const chainArray = [
20982
21100
  chainId: 9070,
20983
21101
  networkId: 9070,
20984
21102
  icon: 'apexfusion',
20985
- explorers: []
21103
+ explorers: [
21104
+ {
21105
+ name: 'apexfusion',
21106
+ url: 'https://explorer.nexus.testnet.apexfusion.org',
21107
+ icon: 'apexfusion',
21108
+ standard: 'EIP3091'
21109
+ }
21110
+ ]
20986
21111
  },
20987
21112
  {
20988
21113
  name: 'Genesis Coin',
@@ -21279,6 +21404,24 @@ const chainArray = [
21279
21404
  }
21280
21405
  ]
21281
21406
  },
21407
+ {
21408
+ name: 'Tabi Testnetv2',
21409
+ chain: 'TabiNetworkv2',
21410
+ rpc: [ 'https://rpc.testnetv2.tabichain.com' ],
21411
+ faucets: [ 'https://carnival.tabichain.com' ],
21412
+ nativeCurrency: { name: 'Tabi', symbol: 'TABI', decimals: 18 },
21413
+ infoURL: 'https://www.tabichain.com',
21414
+ shortName: 'tabitestv2',
21415
+ chainId: 9788,
21416
+ networkId: 9788,
21417
+ explorers: [
21418
+ {
21419
+ name: 'Tabi Testnet V2 Explorer',
21420
+ url: 'https://testnetv2.tabiscan.com',
21421
+ standard: 'none'
21422
+ }
21423
+ ]
21424
+ },
21282
21425
  {
21283
21426
  name: 'Tabi Testnet',
21284
21427
  chain: 'TabiNetwork',
@@ -21588,6 +21731,25 @@ const chainArray = [
21588
21731
  }
21589
21732
  ]
21590
21733
  },
21734
+ {
21735
+ name: 'MFEV CHAIN MAINNET',
21736
+ chain: 'MFEV CHAIN',
21737
+ rpc: [ 'https://rpc.mfevscan.com' ],
21738
+ faucets: [],
21739
+ nativeCurrency: { name: 'MFEV', symbol: 'MFEV', decimals: 18 },
21740
+ infoURL: 'https://mfevscan.com',
21741
+ shortName: 'mfevscan',
21742
+ chainId: 9982,
21743
+ networkId: 9982,
21744
+ slip44: 108,
21745
+ explorers: [
21746
+ {
21747
+ name: 'MFEV CHAIN',
21748
+ url: 'https://mfevscan.com',
21749
+ standard: 'EIP3091'
21750
+ }
21751
+ ]
21752
+ },
21591
21753
  {
21592
21754
  name: 'Agung Network',
21593
21755
  chain: 'Agung',
@@ -28217,6 +28379,21 @@ const chainArray = [
28217
28379
  }
28218
28380
  ]
28219
28381
  },
28382
+ {
28383
+ name: 'Geist Mainnet',
28384
+ chain: 'Geist',
28385
+ rpc: [],
28386
+ faucets: [],
28387
+ nativeCurrency: { name: 'Aavegotchi GHST Token', symbol: 'GHST', decimals: 18 },
28388
+ features: [],
28389
+ infoURL: 'https://playongeist.com',
28390
+ shortName: 'Geist',
28391
+ chainId: 63157,
28392
+ networkId: 63157,
28393
+ status: 'incubating',
28394
+ icon: 'geist',
28395
+ explorers: []
28396
+ },
28220
28397
  {
28221
28398
  name: 'CratD2C Testnet',
28222
28399
  chain: 'CRATD2C',
@@ -31258,27 +31435,16 @@ const chainArray = [
31258
31435
  {
31259
31436
  name: 'Taiko Katla L2',
31260
31437
  chain: 'ETH',
31261
- status: 'active',
31438
+ status: 'deprecated',
31262
31439
  icon: 'taiko',
31263
- rpc: [
31264
- 'https://rpc.katla.taiko.xyz',
31265
- 'wss://ws.katla.taiko.xyz',
31266
- 'https://taiko-katla.drpc.org',
31267
- 'wss://taiko-katla.drpc.org'
31268
- ],
31440
+ rpc: [],
31269
31441
  faucets: [],
31270
31442
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
31271
31443
  infoURL: 'https://taiko.xyz',
31272
31444
  shortName: 'tko-katla',
31273
31445
  chainId: 167008,
31274
31446
  networkId: 167008,
31275
- explorers: [
31276
- {
31277
- name: 'blockscout',
31278
- url: 'https://explorer.katla.taiko.xyz',
31279
- standard: 'EIP3091'
31280
- }
31281
- ]
31447
+ explorers: []
31282
31448
  },
31283
31449
  {
31284
31450
  name: 'Taiko Hekla L2',
@@ -33608,6 +33774,21 @@ const chainArray = [
33608
33774
  }
33609
33775
  ]
33610
33776
  },
33777
+ {
33778
+ name: 'Polter Testnet',
33779
+ chain: 'Geist',
33780
+ rpc: [],
33781
+ faucets: [],
33782
+ nativeCurrency: { name: 'Polter GHST', symbol: 'GHST', decimals: 18 },
33783
+ features: [],
33784
+ infoURL: 'https://playongeist.com',
33785
+ shortName: 'poltergeist',
33786
+ chainId: 631571,
33787
+ networkId: 631571,
33788
+ status: 'incubating',
33789
+ icon: 'polterGeist',
33790
+ explorers: []
33791
+ },
33611
33792
  {
33612
33793
  name: 'Bear Network Chain Mainnet',
33613
33794
  chain: 'BRNKC',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.507",
3
+ "version": "0.0.509",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {