eth-chainlist 0.0.355 → 0.0.357

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +140 -49
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.357 (2024-03-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.356 ([bf93fe8](https://github.com/poowf/eth-chainlist/commit/bf93fe87a4b87d09e6643997179441d618b73b43))
9
+ * update chain data ([6ba1373](https://github.com/poowf/eth-chainlist/commit/6ba1373099a9a8991678073d296438d36a913379))
10
+
11
+ ### 0.0.356 (2024-03-05)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.355 ([0cf6877](https://github.com/poowf/eth-chainlist/commit/0cf6877516121b9b76b310d974a52503ee4284d8))
17
+ * update chain data ([fbeae3a](https://github.com/poowf/eth-chainlist/commit/fbeae3a5712dcbb2d8e9f04d5e71de9319ab42e5))
18
+
3
19
  ### 0.0.355 (2024-03-04)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -1179,8 +1179,8 @@ const chainArray = [
1179
1179
  'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
1180
1180
  'https://syscoin.public-rpc.com',
1181
1181
  'wss://rpc.syscoin.org/wss',
1182
- 'https://syscoin-evm-rpc.publicnode.com',
1183
- 'wss://syscoin-evm-rpc.publicnode.com'
1182
+ 'https://syscoin-evm.publicnode.com',
1183
+ 'wss://syscoin-evm.publicnode.com'
1184
1184
  ],
1185
1185
  faucets: [ 'https://faucet.syscoin.org' ],
1186
1186
  nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
@@ -3275,6 +3275,19 @@ const chainArray = [
3275
3275
  }
3276
3276
  ]
3277
3277
  },
3278
+ {
3279
+ name: 'FileFileGo',
3280
+ chain: 'FFG',
3281
+ icon: 'ffgIcon',
3282
+ rpc: [ 'https://rpc.filefilego.com/rpc' ],
3283
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3284
+ faucets: [],
3285
+ nativeCurrency: { name: 'FFG', symbol: 'FFG', decimals: 18 },
3286
+ infoURL: 'https://filefilego.com',
3287
+ shortName: 'ffg',
3288
+ chainId: 191,
3289
+ networkId: 191
3290
+ },
3278
3291
  {
3279
3292
  name: 'Crypto Emergency',
3280
3293
  chain: 'CEM',
@@ -5485,7 +5498,12 @@ const chainArray = [
5485
5498
  {
5486
5499
  name: 'Rollux Mainnet',
5487
5500
  chain: 'SYS',
5488
- rpc: [ 'https://rpc.rollux.com', 'wss://rpc.rollux.com/wss' ],
5501
+ rpc: [
5502
+ 'https://rpc.rollux.com',
5503
+ 'wss://rpc.rollux.com/wss',
5504
+ 'https://rollux.rpc.syscoin.org',
5505
+ 'wss://rollux.rpc.syscoin.org/wss'
5506
+ ],
5489
5507
  faucets: [ 'https://rollux.id/faucetapp' ],
5490
5508
  nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
5491
5509
  infoURL: 'https://rollux.com',
@@ -5756,6 +5774,25 @@ const chainArray = [
5756
5774
  }
5757
5775
  ]
5758
5776
  },
5777
+ {
5778
+ name: 'FlowEVM PreviewNet',
5779
+ chain: 'FlowEVM',
5780
+ rpc: [ 'https://previewnet.evm.nodes.onflow.org' ],
5781
+ faucets: [ 'https://previewnet-faucet.onflow.org' ],
5782
+ nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
5783
+ infoURL: 'https://developers.flow.com/evm/about',
5784
+ shortName: 'flowevm-preview',
5785
+ chainId: 646,
5786
+ networkId: 646,
5787
+ icon: 'flowevm',
5788
+ explorers: [
5789
+ {
5790
+ name: 'Flow Diver',
5791
+ url: 'https://previewnet.flowdiver.io',
5792
+ standard: 'none'
5793
+ }
5794
+ ]
5795
+ },
5759
5796
  {
5760
5797
  name: 'SX Network Testnet',
5761
5798
  chain: 'SX',
@@ -6185,6 +6222,25 @@ const chainArray = [
6185
6222
  }
6186
6223
  ]
6187
6224
  },
6225
+ {
6226
+ name: 'FlowEVM Mainnet',
6227
+ chain: 'FlowEVM',
6228
+ rpc: [ 'https://mainnet.evm.nodes.onflow.org' ],
6229
+ faucets: [],
6230
+ nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
6231
+ infoURL: 'https://developers.flow.com/evm/about',
6232
+ shortName: 'flowevm-mainnet',
6233
+ chainId: 747,
6234
+ networkId: 747,
6235
+ icon: 'flowevm',
6236
+ explorers: [
6237
+ {
6238
+ name: 'Flow Diver',
6239
+ url: 'https://flowdiver.io',
6240
+ standard: 'none'
6241
+ }
6242
+ ]
6243
+ },
6188
6244
  {
6189
6245
  name: 'QL1',
6190
6246
  chain: 'QOM',
@@ -11318,6 +11374,20 @@ const chainArray = [
11318
11374
  ],
11319
11375
  status: 'active'
11320
11376
  },
11377
+ {
11378
+ name: 'inEVM Mainnet',
11379
+ chain: 'inEVM',
11380
+ icon: 'inevm',
11381
+ rpc: [ 'https://mainnet.rpc.inevm.com/http' ],
11382
+ faucets: [],
11383
+ nativeCurrency: { name: 'Injective', symbol: 'INJ', decimals: 18 },
11384
+ infoURL: 'https://inevm.com',
11385
+ shortName: 'inevm',
11386
+ chainId: 2525,
11387
+ networkId: 2525,
11388
+ explorers: [],
11389
+ status: 'active'
11390
+ },
11321
11391
  {
11322
11392
  name: 'Kortho Mainnet',
11323
11393
  chain: 'Kortho Chain',
@@ -11699,12 +11769,12 @@ const chainArray = [
11699
11769
  title: 'Bifrost Network Mainnet',
11700
11770
  chain: 'BFC',
11701
11771
  rpc: [
11702
- 'https://public-01.mainnet.thebifrost.io/rpc',
11703
- 'https://public-02.mainnet.thebifrost.io/rpc'
11772
+ 'https://public-01.mainnet.bifrostnetwork.com/rpc',
11773
+ 'https://public-02.mainnet.bifrostnetwork.com/rpc'
11704
11774
  ],
11705
11775
  faucets: [],
11706
11776
  nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 },
11707
- infoURL: 'https://thebifrost.io',
11777
+ infoURL: 'https://bifrostnetwork.com',
11708
11778
  shortName: 'bfc',
11709
11779
  chainId: 3068,
11710
11780
  networkId: 3068,
@@ -11712,7 +11782,7 @@ const chainArray = [
11712
11782
  explorers: [
11713
11783
  {
11714
11784
  name: 'explorer-thebifrost',
11715
- url: 'https://explorer.mainnet.thebifrost.io',
11785
+ url: 'https://explorer.mainnet.bifrostnetwork.com',
11716
11786
  standard: 'EIP3091'
11717
11787
  }
11718
11788
  ]
@@ -12171,16 +12241,25 @@ const chainArray = [
12171
12241
  shortName: 'astrzk',
12172
12242
  title: 'Astar zkEVM Mainnet',
12173
12243
  chain: 'ETH',
12174
- icon: 'astarzk',
12175
- rpc: [],
12244
+ icon: 'astar',
12245
+ rpc: [ 'https://rpc.startale.com/astar-zkevm' ],
12176
12246
  faucets: [],
12177
12247
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
12178
12248
  infoURL: 'https://astar.network',
12179
12249
  chainId: 3776,
12180
12250
  networkId: 3776,
12181
- explorers: [],
12182
- parent: { type: 'L2', chain: 'eip155-1', bridges: [] },
12183
- status: 'incubating'
12251
+ explorers: [
12252
+ {
12253
+ name: 'Blockscout Astar zkEVM explorer',
12254
+ url: 'https://astar-zkevm.explorer.startale.com',
12255
+ standard: 'EIP3091'
12256
+ }
12257
+ ],
12258
+ parent: {
12259
+ type: 'L2',
12260
+ chain: 'eip155-1',
12261
+ bridges: [ { url: 'https://portal.astar.network' } ]
12262
+ }
12184
12263
  },
12185
12264
  {
12186
12265
  name: 'AlveyChain Mainnet',
@@ -13597,8 +13676,8 @@ const chainArray = [
13597
13676
  rpc: [
13598
13677
  'https://rpc.tanenbaum.io',
13599
13678
  'wss://rpc.tanenbaum.io/wss',
13600
- 'https://syscoin-tanenbaum-evm-rpc.publicnode.com',
13601
- 'wss://syscoin-tanenbaum-evm-rpc.publicnode.com'
13679
+ 'https://syscoin-tanenbaum-evm.publicnode.com',
13680
+ 'wss://syscoin-tanenbaum-evm.publicnode.com'
13602
13681
  ],
13603
13682
  faucets: [ 'https://faucet.tanenbaum.io' ],
13604
13683
  nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
@@ -14466,14 +14545,9 @@ const chainArray = [
14466
14545
  chain: 'Canto',
14467
14546
  rpc: [
14468
14547
  'https://canto.slingshot.finance',
14469
- 'https://canto.neobase.one',
14548
+ 'https://canto-rpc.ansybl.io',
14470
14549
  'https://mainnode.plexnode.org:8545',
14471
- 'https://canto.gravitychain.io/',
14472
- 'https://canto.evm.chandrastation.com/',
14473
- 'https://jsonrpc.canto.nodestake.top/',
14474
- 'https://canto.dexvaults.com/',
14475
- 'wss://canto.gravitychain.io:8546',
14476
- 'wss://canto.dexvaults.com/ws'
14550
+ 'https://canto.gravitychain.io/'
14477
14551
  ],
14478
14552
  faucets: [],
14479
14553
  nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 },
@@ -14483,19 +14557,14 @@ const chainArray = [
14483
14557
  networkId: 7700,
14484
14558
  explorers: [
14485
14559
  {
14486
- name: 'Canto EVM Explorer (Blockscout)',
14487
- url: 'https://evm.explorer.canto.io',
14488
- standard: 'none'
14489
- },
14490
- {
14491
- name: 'Canto Cosmos Explorer',
14492
- url: 'https://cosmos-explorers.neobase.one',
14493
- standard: 'none'
14560
+ name: 'Canto Explorer (OKLink)',
14561
+ url: 'https://www.oklink.com/canto',
14562
+ standard: 'EIP3091'
14494
14563
  },
14495
14564
  {
14496
14565
  name: 'Canto EVM Explorer (Blockscout)',
14497
14566
  url: 'https://tuber.build',
14498
- standard: 'none'
14567
+ standard: 'EIP3091'
14499
14568
  },
14500
14569
  {
14501
14570
  name: 'dexguru',
@@ -19243,12 +19312,12 @@ const chainArray = [
19243
19312
  title: 'Bifrost Network Testnet',
19244
19313
  chain: 'BFC',
19245
19314
  rpc: [
19246
- 'https://public-01.testnet.thebifrost.io/rpc',
19247
- 'https://public-02.testnet.thebifrost.io/rpc'
19315
+ 'https://public-01.testnet.bifrostnetwork.com/rpc',
19316
+ 'https://public-02.testnet.bifrostnetwork.com/rpc'
19248
19317
  ],
19249
19318
  faucets: [],
19250
19319
  nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 },
19251
- infoURL: 'https://thebifrost.io',
19320
+ infoURL: 'https://bifrostnetwork.com',
19252
19321
  shortName: 'tbfc',
19253
19322
  chainId: 49088,
19254
19323
  networkId: 49088,
@@ -19257,7 +19326,7 @@ const chainArray = [
19257
19326
  explorers: [
19258
19327
  {
19259
19328
  name: 'explorer-thebifrost',
19260
- url: 'https://explorer.testnet.thebifrost.io',
19329
+ url: 'https://explorer.testnet.bifrostnetwork.com',
19261
19330
  standard: 'EIP3091'
19262
19331
  }
19263
19332
  ]
@@ -19651,7 +19720,9 @@ const chainArray = [
19651
19720
  rpc: [
19652
19721
  'https://rpc-tanenbaum.rollux.com',
19653
19722
  'https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}',
19654
- 'wss://rpc-tanenbaum.rollux.com/wss'
19723
+ 'wss://rpc-tanenbaum.rollux.com/wss',
19724
+ 'https://rollux.rpc.tanenbaum.io',
19725
+ 'wss://rollux.rpc.tanenbaum.io/wss'
19655
19726
  ],
19656
19727
  faucets: [ 'https://rollux.id/faucetapp' ],
19657
19728
  nativeCurrency: { name: 'Testnet Syscoin', symbol: 'TSYS', decimals: 18 },
@@ -23291,22 +23362,22 @@ const chainArray = [
23291
23362
  ]
23292
23363
  },
23293
23364
  {
23294
- name: 'ethereum Fair',
23365
+ name: 'DisChain',
23295
23366
  chainId: 513100,
23296
23367
  networkId: 513100,
23297
- shortName: 'ethf',
23298
- chain: 'ETHF',
23299
- nativeCurrency: { name: 'EthereumFair', symbol: 'ETHF', decimals: 18 },
23300
- rpc: [ 'https://rpc.etherfair.org' ],
23368
+ shortName: 'dis',
23369
+ chain: 'DIS',
23370
+ nativeCurrency: { name: 'DisChain', symbol: 'DIS', decimals: 18 },
23371
+ rpc: [ 'https://rpc.dischain.xyz' ],
23301
23372
  faucets: [],
23302
23373
  explorers: [
23303
23374
  {
23304
- name: 'etherfair',
23305
- url: 'https://www.oklink.com/ethf',
23375
+ name: 'DisChain',
23376
+ url: 'https://www.oklink.com/dis',
23306
23377
  standard: 'EIP3091'
23307
23378
  }
23308
23379
  ],
23309
- infoURL: 'https://etherfair.org'
23380
+ infoURL: 'https://dischain.xyz'
23310
23381
  },
23311
23382
  {
23312
23383
  name: 'Scroll Sepolia Testnet',
@@ -24408,7 +24479,7 @@ const chainArray = [
24408
24479
  networkId: 6038361,
24409
24480
  explorers: [
24410
24481
  {
24411
- name: 'Blockscout zKyoto chain explorer',
24482
+ name: 'Blockscout zKyoto explorer',
24412
24483
  url: 'https://astar-zkyoto.blockscout.com',
24413
24484
  standard: 'EIP3091'
24414
24485
  }
@@ -24420,8 +24491,7 @@ const chainArray = [
24420
24491
  { url: 'https://portal.astar.network' },
24421
24492
  { url: 'https://bridge.gelato.network/bridge/astar-zkyoto' }
24422
24493
  ]
24423
- },
24424
- status: 'incubating'
24494
+ }
24425
24495
  },
24426
24496
  {
24427
24497
  name: 'Saakuru Mainnet',
@@ -25176,6 +25246,27 @@ const chainArray = [
25176
25246
  },
25177
25247
  {
25178
25248
  name: 'Autonity Piccadilly (Barada) Testnet',
25249
+ status: 'deprecated',
25250
+ chain: 'AUT',
25251
+ rpc: [],
25252
+ faucets: [],
25253
+ nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
25254
+ infoURL: 'https://autonity.org/',
25255
+ shortName: 'piccadilly-01',
25256
+ chainId: 65100001,
25257
+ networkId: 65100001,
25258
+ slip44: 1,
25259
+ icon: 'autonity',
25260
+ explorers: [
25261
+ {
25262
+ name: 'autonity-blockscout',
25263
+ url: 'https://piccadilly.autonity.org',
25264
+ standard: 'EIP3091'
25265
+ }
25266
+ ]
25267
+ },
25268
+ {
25269
+ name: 'Autonity Piccadilly (Sumida) Testnet',
25179
25270
  chain: 'AUT',
25180
25271
  rpc: [
25181
25272
  'https://rpc1.piccadilly.autonity.org/',
@@ -25184,9 +25275,9 @@ const chainArray = [
25184
25275
  faucets: [],
25185
25276
  nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
25186
25277
  infoURL: 'https://autonity.org/',
25187
- shortName: 'piccadilly-01',
25188
- chainId: 65100001,
25189
- networkId: 65100001,
25278
+ shortName: 'piccadilly-02',
25279
+ chainId: 65100002,
25280
+ networkId: 65100002,
25190
25281
  slip44: 1,
25191
25282
  icon: 'autonity',
25192
25283
  explorers: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.355",
3
+ "version": "0.0.357",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {