eth-chainlist 0.0.390 → 0.0.392

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 +337 -25
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.392 (2024-05-02)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.391 ([67e850f](https://github.com/poowf/eth-chainlist/commit/67e850f923e9e25df91e7327b8baca631f73aa85))
9
+ * update chain data ([301736d](https://github.com/poowf/eth-chainlist/commit/301736d63ecf0880fc5ff0d57d8de34d47000e32))
10
+
11
+ ### 0.0.391 (2024-05-01)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.390 ([8d5f1bc](https://github.com/poowf/eth-chainlist/commit/8d5f1bce34d52da2843c9253234226913911ace8))
17
+ * update chain data ([da636a8](https://github.com/poowf/eth-chainlist/commit/da636a82c4e38e38e010bcf004db0554e04a694e))
18
+
3
19
  ### 0.0.390 (2024-04-30)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -8034,6 +8034,33 @@ const chainArray = [
8034
8034
  networkId: 1010,
8035
8035
  slip44: 1020
8036
8036
  },
8037
+ {
8038
+ name: 'Rebus Mainnet',
8039
+ title: 'Rebuschain Mainnet',
8040
+ chain: 'REBUS',
8041
+ rpc: [ 'https://apievm.rebuschain.com/rpc' ],
8042
+ faucets: [],
8043
+ nativeCurrency: { name: 'Rebus', symbol: 'REBUS', decimals: 18 },
8044
+ infoURL: 'https://www.rebuschain.com',
8045
+ shortName: 'rebus',
8046
+ chainId: 1011,
8047
+ networkId: 1011,
8048
+ icon: 'rebus',
8049
+ explorers: [
8050
+ {
8051
+ name: 'Rebus EVM Explorer (Blockscout)',
8052
+ url: 'https://evm.rebuschain.com',
8053
+ icon: 'rebus',
8054
+ standard: 'none'
8055
+ },
8056
+ {
8057
+ name: 'Rebus Cosmos Explorer (ping.pub)',
8058
+ url: 'https://cosmos.rebuschain.com',
8059
+ icon: 'rebus',
8060
+ standard: 'none'
8061
+ }
8062
+ ]
8063
+ },
8037
8064
  {
8038
8065
  name: 'Newton',
8039
8066
  chain: 'NEW',
@@ -11074,6 +11101,35 @@ const chainArray = [
11074
11101
  }
11075
11102
  ]
11076
11103
  },
11104
+ {
11105
+ name: 'Adiri',
11106
+ title: 'Telcoin Network Testnet',
11107
+ chain: 'TEL',
11108
+ icon: 'telcoin',
11109
+ rpc: [
11110
+ 'https://rpc.telcoin.network',
11111
+ 'https://adiri.tel',
11112
+ 'https://node1.telcoin.network',
11113
+ 'https://node2.telcoin.network',
11114
+ 'https://node3.telcoin.network',
11115
+ 'https://node4.telcoin.network'
11116
+ ],
11117
+ faucets: [ 'https://telcoin.network/faucet' ],
11118
+ nativeCurrency: { name: 'Telcoin', symbol: 'TEL', decimals: 18 },
11119
+ infoURL: 'https://telcoin.network',
11120
+ shortName: 'tel',
11121
+ chainId: 2017,
11122
+ networkId: 2017,
11123
+ slip44: 1,
11124
+ explorers: [
11125
+ {
11126
+ name: 'telscan',
11127
+ url: 'https://telscan.io',
11128
+ icon: 'telcoin',
11129
+ standard: 'EIP3091'
11130
+ }
11131
+ ]
11132
+ },
11077
11133
  {
11078
11134
  name: 'PublicMint Devnet',
11079
11135
  title: 'Public Mint Devnet',
@@ -11706,6 +11762,42 @@ const chainArray = [
11706
11762
  }
11707
11763
  ]
11708
11764
  },
11765
+ {
11766
+ name: 'Oneness Network',
11767
+ chain: 'Oneness',
11768
+ rpc: [ 'https://rpc.onenesslabs.io/' ],
11769
+ faucets: [],
11770
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
11771
+ infoURL: '',
11772
+ shortName: 'oneness',
11773
+ chainId: 2140,
11774
+ networkId: 2140,
11775
+ explorers: [
11776
+ {
11777
+ name: 'oneness-mainnet',
11778
+ url: 'https://scan.onenesslabs.io',
11779
+ standard: 'EIP3091'
11780
+ }
11781
+ ]
11782
+ },
11783
+ {
11784
+ name: 'Oneness TestNet',
11785
+ chain: 'Oneness-Testnet',
11786
+ rpc: [ 'https://rpc.testnet.onenesslabs.io/' ],
11787
+ faucets: [],
11788
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
11789
+ infoURL: '',
11790
+ shortName: 'oneness-testnet',
11791
+ chainId: 2141,
11792
+ networkId: 2141,
11793
+ explorers: [
11794
+ {
11795
+ name: 'oneness-testnet',
11796
+ url: 'https://scan.testnet.onenesslabs.io',
11797
+ standard: 'EIP3091'
11798
+ }
11799
+ ]
11800
+ },
11709
11801
  {
11710
11802
  name: 'BOSagora Mainnet',
11711
11803
  chain: 'ETH',
@@ -12973,6 +13065,33 @@ const chainArray = [
12973
13065
  }
12974
13066
  ]
12975
13067
  },
13068
+ {
13069
+ name: 'Rebus Testnet',
13070
+ title: 'Rebuschain Testnet',
13071
+ chain: 'REBUS',
13072
+ rpc: [ 'https://testnet.rebus.money/rpc' ],
13073
+ faucets: [],
13074
+ nativeCurrency: { name: 'Rebus', symbol: 'REBUS', decimals: 18 },
13075
+ infoURL: 'https://www.rebuschain.com',
13076
+ shortName: 'rebus-testnet',
13077
+ chainId: 3033,
13078
+ networkId: 3033,
13079
+ icon: 'rebus',
13080
+ explorers: [
13081
+ {
13082
+ name: 'Rebus EVM Explorer (Blockscout)',
13083
+ url: 'https://evm.testnet.rebus.money',
13084
+ icon: 'rebus',
13085
+ standard: 'none'
13086
+ },
13087
+ {
13088
+ name: 'Rebus Cosmos Explorer (ping.pub)',
13089
+ url: 'https://testnet.rebus.money/rebustestnet',
13090
+ icon: 'rebus',
13091
+ standard: 'none'
13092
+ }
13093
+ ]
13094
+ },
12976
13095
  {
12977
13096
  name: 'Bifrost Mainnet',
12978
13097
  title: 'Bifrost Network Mainnet',
@@ -12996,12 +13115,32 @@ const chainArray = [
12996
13115
  }
12997
13116
  ]
12998
13117
  },
13118
+ {
13119
+ name: 'Movement EVM',
13120
+ chain: 'MOVE',
13121
+ rpc: [],
13122
+ faucets: [],
13123
+ nativeCurrency: { name: 'Move', symbol: 'MOVE', decimals: 18 },
13124
+ infoURL: 'https://movementlabs.xyz',
13125
+ shortName: 'move',
13126
+ chainId: 3073,
13127
+ networkId: 3073,
13128
+ icon: 'move',
13129
+ explorers: [
13130
+ {
13131
+ name: 'mevm explorer',
13132
+ url: 'https://explorer.movementlabs.xyz',
13133
+ standard: 'none'
13134
+ }
13135
+ ],
13136
+ status: 'incubating'
13137
+ },
12999
13138
  {
13000
13139
  name: 'Immu3 EVM',
13001
13140
  chain: 'EVMCC',
13002
13141
  rpc: [
13003
- 'https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network',
13004
- 'wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network'
13142
+ 'https://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network',
13143
+ 'wss://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network'
13005
13144
  ],
13006
13145
  faucets: [],
13007
13146
  nativeCurrency: { name: 'IMMU', symbol: 'IMMU', decimals: 18 },
@@ -13122,23 +13261,16 @@ const chainArray = [
13122
13261
  slip44: 1
13123
13262
  },
13124
13263
  {
13125
- name: 'Web3Q Testnet',
13126
- chain: 'Web3Q',
13127
- rpc: [ 'https://testnet.web3q.io:8545' ],
13264
+ name: 'EthStorage Testnet',
13265
+ chain: 'EthStorage',
13266
+ rpc: [ 'http://testnet.ethstorage.io:9540' ],
13128
13267
  faucets: [],
13129
- nativeCurrency: { name: 'Web3Q', symbol: 'W3Q', decimals: 18 },
13130
- infoURL: 'https://testnet.web3q.io/home.w3q/',
13131
- shortName: 'w3q-t',
13268
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
13269
+ infoURL: 'https://ethstorage.io/',
13270
+ shortName: 'es-t',
13132
13271
  chainId: 3333,
13133
13272
  networkId: 3333,
13134
- slip44: 1,
13135
- explorers: [
13136
- {
13137
- name: 'w3q-testnet',
13138
- url: 'https://explorer.testnet.web3q.io',
13139
- standard: 'EIP3091'
13140
- }
13141
- ]
13273
+ slip44: 1
13142
13274
  },
13143
13275
  {
13144
13276
  name: 'Web3Q Galileo',
@@ -13829,6 +13961,25 @@ const chainArray = [
13829
13961
  }
13830
13962
  ]
13831
13963
  },
13964
+ {
13965
+ name: 'GAN Testnet',
13966
+ chain: 'GAN',
13967
+ icon: 'gpu',
13968
+ rpc: [ 'https://rpc.gpu.net' ],
13969
+ faucets: [],
13970
+ nativeCurrency: { name: 'GP Token', symbol: 'GP', decimals: 18 },
13971
+ infoURL: 'https://docs.gpu.net/',
13972
+ shortName: 'GANTestnet',
13973
+ chainId: 4048,
13974
+ networkId: 4048,
13975
+ explorers: [
13976
+ {
13977
+ name: 'ganscan',
13978
+ url: 'https://ganscan.gpu.net',
13979
+ standard: 'none'
13980
+ }
13981
+ ]
13982
+ },
13832
13983
  {
13833
13984
  name: 'Bobaopera Testnet',
13834
13985
  chain: 'Bobaopera Testnet',
@@ -20461,6 +20612,25 @@ const chainArray = [
20461
20612
  bridges: [ { url: 'https://sepolia-bridge.nanon.network' } ]
20462
20613
  }
20463
20614
  },
20615
+ {
20616
+ name: 'zeroone Mainnet Subnet',
20617
+ chain: 'ZEROONEMAI',
20618
+ rpc: [ 'https://subnets.avax.network/zeroonemai/mainnet/rpc' ],
20619
+ features: [ { name: 'EIP1559' } ],
20620
+ faucets: [],
20621
+ nativeCurrency: { name: 'ZERO', symbol: 'ZERO', decimals: 18 },
20622
+ infoURL: 'https://zeroone.art/',
20623
+ shortName: 'zeroonemai',
20624
+ chainId: 27827,
20625
+ networkId: 27827,
20626
+ explorers: [
20627
+ {
20628
+ name: 'ZEROONEMAI Explorer',
20629
+ url: 'https://subnets.avax.network/zeroonemai',
20630
+ standard: 'EIP3091'
20631
+ }
20632
+ ]
20633
+ },
20464
20634
  {
20465
20635
  name: 'Vizing Testnet',
20466
20636
  title: 'Vizing Testnet',
@@ -20689,6 +20859,66 @@ const chainArray = [
20689
20859
  }
20690
20860
  ]
20691
20861
  },
20862
+ {
20863
+ name: 'Movement EVM Legacy',
20864
+ chain: 'MOVE',
20865
+ rpc: [],
20866
+ faucets: [],
20867
+ nativeCurrency: { name: 'Move', symbol: 'MOVE', decimals: 18 },
20868
+ infoURL: 'https://movementlabs.xyz',
20869
+ shortName: 'moveleg',
20870
+ chainId: 30730,
20871
+ networkId: 30730,
20872
+ icon: 'move',
20873
+ explorers: [
20874
+ {
20875
+ name: 'mevm explorer',
20876
+ url: 'https://explorer.movementlabs.xyz',
20877
+ standard: 'none'
20878
+ }
20879
+ ],
20880
+ status: 'incubating'
20881
+ },
20882
+ {
20883
+ name: 'Movement EVM Devnet',
20884
+ chain: 'MOVE',
20885
+ rpc: [],
20886
+ faucets: [],
20887
+ nativeCurrency: { name: 'Move', symbol: 'MOVE', decimals: 18 },
20888
+ infoURL: 'https://movementlabs.xyz',
20889
+ shortName: 'movedev',
20890
+ chainId: 30731,
20891
+ networkId: 30731,
20892
+ icon: 'move',
20893
+ explorers: [
20894
+ {
20895
+ name: 'mevm explorer',
20896
+ url: 'https://explorer.movementlabs.xyz',
20897
+ standard: 'none'
20898
+ }
20899
+ ],
20900
+ status: 'incubating'
20901
+ },
20902
+ {
20903
+ name: 'Movement EVM Testnet',
20904
+ chain: 'MOVE',
20905
+ rpc: [],
20906
+ faucets: [],
20907
+ nativeCurrency: { name: 'Move', symbol: 'MOVE', decimals: 18 },
20908
+ infoURL: 'https://movementlabs.xyz',
20909
+ shortName: 'movetest',
20910
+ chainId: 30732,
20911
+ networkId: 30732,
20912
+ icon: 'move',
20913
+ explorers: [
20914
+ {
20915
+ name: 'mevm explorer',
20916
+ url: 'https://explorer.movementlabs.xyz',
20917
+ standard: 'none'
20918
+ }
20919
+ ],
20920
+ status: 'incubating'
20921
+ },
20692
20922
  {
20693
20923
  name: 'Ethersocial Network',
20694
20924
  chain: 'ESN',
@@ -21935,6 +22165,30 @@ const chainArray = [
21935
22165
  }
21936
22166
  ]
21937
22167
  },
22168
+ {
22169
+ name: 'DODOchain testnet',
22170
+ title: 'DODOchain testnet',
22171
+ chain: 'DODOchain',
22172
+ icon: 'dodochain_testnet',
22173
+ rpc: [
22174
+ 'https://dodochain-testnet.alt.technology',
22175
+ 'wss://dodochain-testnet.alt.technology/ws'
22176
+ ],
22177
+ faucets: [],
22178
+ nativeCurrency: { name: 'Berd', symbol: 'BERD', decimals: 18 },
22179
+ infoURL: 'https://www.dodochain.com',
22180
+ shortName: 'dodochain',
22181
+ chainId: 53457,
22182
+ networkId: 53457,
22183
+ explorers: [
22184
+ {
22185
+ name: 'DODOchain Testnet (Sepolia) Explorer',
22186
+ url: 'https://testnet-scan.dodochain.com',
22187
+ icon: 'dodochain_testnet',
22188
+ standard: 'EIP3091'
22189
+ }
22190
+ ]
22191
+ },
21938
22192
  {
21939
22193
  name: 'DFK Chain',
21940
22194
  chain: 'DFK',
@@ -22123,6 +22377,25 @@ const chainArray = [
22123
22377
  bridges: [ { url: 'https://gateway.boba.network' } ]
22124
22378
  }
22125
22379
  },
22380
+ {
22381
+ name: 'Testnet Zeroone Subnet',
22382
+ chain: 'TESTNETZER',
22383
+ rpc: [ 'https://subnets.avax.network/testnetzer/testnet/rpc' ],
22384
+ features: [ { name: 'EIP1559' } ],
22385
+ faucets: [],
22386
+ nativeCurrency: { name: 'ZERO', symbol: 'ZERO', decimals: 18 },
22387
+ infoURL: 'https://zeroone.art/',
22388
+ shortName: 'testnetzer',
22389
+ chainId: 56400,
22390
+ networkId: 56400,
22391
+ explorers: [
22392
+ {
22393
+ name: 'TESTNETZER Explorer',
22394
+ url: 'https://subnets-test.avax.network/testnetzer',
22395
+ standard: 'EIP3091'
22396
+ }
22397
+ ]
22398
+ },
22126
22399
  {
22127
22400
  name: 'VELO Labs Mainnet',
22128
22401
  chain: 'NOVA chain',
@@ -22439,14 +22712,28 @@ const chainArray = [
22439
22712
  {
22440
22713
  name: 'BOB',
22441
22714
  chain: 'ETH',
22442
- rpc: [],
22715
+ rpc: [ 'https://rpc.gobob.xyz', 'wss://rpc.gobob.xyz' ],
22443
22716
  faucets: [],
22444
22717
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
22445
22718
  infoURL: 'https://gobob.xyz',
22446
22719
  shortName: 'bob',
22447
22720
  chainId: 60808,
22448
22721
  networkId: 60808,
22449
- status: 'incubating'
22722
+ icon: 'bob',
22723
+ explorers: [
22724
+ {
22725
+ name: 'bobscout',
22726
+ url: 'https://explorer.gobob.xyz',
22727
+ icon: 'blockscout',
22728
+ standard: 'EIP3091'
22729
+ }
22730
+ ],
22731
+ status: 'active',
22732
+ parent: {
22733
+ type: 'L2',
22734
+ chain: 'eip155-1',
22735
+ bridges: [ { url: 'https://app.gobob.xyz' } ]
22736
+ }
22450
22737
  },
22451
22738
  {
22452
22739
  name: 'KaiChain',
@@ -27869,14 +28156,19 @@ const chainArray = [
27869
28156
  ]
27870
28157
  },
27871
28158
  {
27872
- name: 'Reactive Network Testnet Kopli',
28159
+ name: 'Reactive Kopli',
28160
+ title: 'Reactive Network Testnet Kopli',
27873
28161
  chain: 'REACT',
27874
- rpc: [ 'https://kopli-rpc.reactive.network' ],
28162
+ rpc: [
28163
+ 'https://kopli-rpc.reactive.network',
28164
+ 'http://kopli-rpc.rkt.ink'
28165
+ ],
27875
28166
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
27876
- faucets: [],
27877
- nativeCurrency: { name: 'React', symbol: 'REACT', decimals: 18 },
28167
+ faucets: [ 'https://dev.reactive.network/docs/kopli-testnet#faucet' ],
28168
+ nativeCurrency: { name: 'Kopli React', symbol: 'REACT', decimals: 18 },
27878
28169
  infoURL: 'https://reactive.network',
27879
- shortName: 'react',
28170
+ shortName: 'kreact',
28171
+ icon: 'reactive',
27880
28172
  chainId: 5318008,
27881
28173
  networkId: 5318008,
27882
28174
  explorers: [
@@ -30025,6 +30317,26 @@ const chainArray = [
30025
30317
  networkId: 1666900001,
30026
30318
  explorers: []
30027
30319
  },
30320
+ {
30321
+ name: 'Kakarot Sepolia',
30322
+ chain: 'ETH',
30323
+ icon: 'kakarot',
30324
+ rpc: [ 'https://sepolia-rpc.kakarot.org' ],
30325
+ faucets: [],
30326
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
30327
+ infoURL: 'https://kakarot.org',
30328
+ shortName: 'kkrt-sepolia',
30329
+ chainId: 1802203764,
30330
+ networkId: 1802203764,
30331
+ explorers: [
30332
+ {
30333
+ name: 'Kakarot Scan',
30334
+ url: 'https://sepolia.kakarotscan.org',
30335
+ standard: 'EIP3091'
30336
+ }
30337
+ ],
30338
+ parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] }
30339
+ },
30028
30340
  {
30029
30341
  name: 'RARI Chain Testnet',
30030
30342
  chain: 'RARI',
@@ -30239,14 +30551,14 @@ const chainArray = [
30239
30551
  status: 'active'
30240
30552
  },
30241
30553
  {
30242
- name: 'Kakarot Sepolia',
30554
+ name: 'Kakarot Sepolia Deprecated',
30243
30555
  chain: 'ETH',
30244
30556
  icon: 'kakarot',
30245
30557
  rpc: [],
30246
30558
  faucets: [],
30247
30559
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
30248
30560
  infoURL: 'https://kakarot.org',
30249
- shortName: 'kkrt-sepolia',
30561
+ shortName: 'kkrt-sepolia-deprecated',
30250
30562
  chainId: 107107114116,
30251
30563
  networkId: 107107114116,
30252
30564
  explorers: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.390",
3
+ "version": "0.0.392",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {