eth-chainlist 0.0.68 → 0.0.70
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.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +191 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.70 (2023-02-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.69 ([503a5c0](https://github.com/poowf/eth-chainlist/commit/503a5c0c9ff962d52e85962a673c6e9baf241c30))
|
9
|
+
* update chain data ([4e90f5f](https://github.com/poowf/eth-chainlist/commit/4e90f5fd438ded414019a13ed62f873c069ecf39))
|
10
|
+
|
11
|
+
### 0.0.69 (2023-02-02)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.68 ([af3515a](https://github.com/poowf/eth-chainlist/commit/af3515aa81e28654af2dc74be35554edaea4f346))
|
17
|
+
* update chain data ([ee2f351](https://github.com/poowf/eth-chainlist/commit/ee2f351868b6352cdb41fb2123bb6a8ac0a1be47))
|
18
|
+
|
3
19
|
### 0.0.68 (2023-02-01)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2278,6 +2278,25 @@ const chainArray = [
|
|
2278
2278
|
chainId: 163,
|
2279
2279
|
networkId: 163
|
2280
2280
|
},
|
2281
|
+
{
|
2282
|
+
name: 'Atoshi Testnet',
|
2283
|
+
chain: 'ATOSHI',
|
2284
|
+
icon: 'atoshi',
|
2285
|
+
rpc: [ 'https://node.atoshi.io/' ],
|
2286
|
+
faucets: [],
|
2287
|
+
nativeCurrency: { name: 'ATOSHI', symbol: 'ATOS', decimals: 18 },
|
2288
|
+
infoURL: 'https://atoshi.org',
|
2289
|
+
shortName: 'atoshi',
|
2290
|
+
chainId: 167,
|
2291
|
+
networkId: 167,
|
2292
|
+
explorers: [
|
2293
|
+
{
|
2294
|
+
name: 'atoshiscan',
|
2295
|
+
url: 'https://scan.atoverse.info',
|
2296
|
+
standard: 'EIP3091'
|
2297
|
+
}
|
2298
|
+
]
|
2299
|
+
},
|
2281
2300
|
{
|
2282
2301
|
name: 'AIOZ Network',
|
2283
2302
|
chain: 'AIOZ',
|
@@ -4598,6 +4617,54 @@ const chainArray = [
|
|
4598
4617
|
}
|
4599
4618
|
]
|
4600
4619
|
},
|
4620
|
+
{
|
4621
|
+
name: 'Core Blockchain Testnet',
|
4622
|
+
chain: 'Core',
|
4623
|
+
icon: 'core',
|
4624
|
+
rpc: [ 'https://rpc.test.btcs.network/' ],
|
4625
|
+
faucets: [ 'https://scan.test.btcs.network/faucet' ],
|
4626
|
+
nativeCurrency: {
|
4627
|
+
name: 'Core Blockchain Testnet Native Token',
|
4628
|
+
symbol: 'tCORE',
|
4629
|
+
decimals: 18
|
4630
|
+
},
|
4631
|
+
infoURL: 'https://www.coredao.org',
|
4632
|
+
shortName: 'tcore',
|
4633
|
+
chainId: 1115,
|
4634
|
+
networkId: 1115,
|
4635
|
+
explorers: [
|
4636
|
+
{
|
4637
|
+
name: 'Core Scan Testnet',
|
4638
|
+
url: 'https://scan.test.btcs.network',
|
4639
|
+
icon: 'core',
|
4640
|
+
standard: 'EIP3091'
|
4641
|
+
}
|
4642
|
+
]
|
4643
|
+
},
|
4644
|
+
{
|
4645
|
+
name: 'Core Blockchain Mainnet',
|
4646
|
+
chain: 'Core',
|
4647
|
+
icon: 'core',
|
4648
|
+
rpc: [ 'https://rpc.coredao.org/' ],
|
4649
|
+
faucets: [],
|
4650
|
+
nativeCurrency: {
|
4651
|
+
name: 'Core Blockchain Native Token',
|
4652
|
+
symbol: 'CORE',
|
4653
|
+
decimals: 18
|
4654
|
+
},
|
4655
|
+
infoURL: 'https://www.coredao.org',
|
4656
|
+
shortName: 'core',
|
4657
|
+
chainId: 1116,
|
4658
|
+
networkId: 1116,
|
4659
|
+
explorers: [
|
4660
|
+
{
|
4661
|
+
name: 'Core Scan',
|
4662
|
+
url: 'https://scan.coredao.org',
|
4663
|
+
icon: 'core',
|
4664
|
+
standard: 'EIP3091'
|
4665
|
+
}
|
4666
|
+
]
|
4667
|
+
},
|
4601
4668
|
{
|
4602
4669
|
name: 'DeFiChain EVM Network Mainnet',
|
4603
4670
|
chain: 'defichain-evm',
|
@@ -5332,18 +5399,26 @@ const chainArray = [
|
|
5332
5399
|
name: 'Kerleano',
|
5333
5400
|
title: 'Proof of Carbon Reduction testnet',
|
5334
5401
|
chain: 'CRC',
|
5335
|
-
status: '
|
5402
|
+
status: 'active',
|
5336
5403
|
rpc: [
|
5337
5404
|
'https://cacib-saturn-test.francecentral.cloudapp.azure.com',
|
5338
5405
|
'wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443'
|
5339
5406
|
],
|
5340
|
-
faucets: [
|
5407
|
+
faucets: [
|
5408
|
+
'https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md'
|
5409
|
+
],
|
5341
5410
|
nativeCurrency: { name: 'Carbon Reduction Coin', symbol: 'CRC', decimals: 18 },
|
5342
5411
|
infoURL: 'https://github.com/ethereum-pocr/kerleano',
|
5343
5412
|
shortName: 'kerleano',
|
5344
5413
|
chainId: 1804,
|
5345
5414
|
networkId: 1804,
|
5346
|
-
explorers: [
|
5415
|
+
explorers: [
|
5416
|
+
{
|
5417
|
+
name: 'Lite Explorer',
|
5418
|
+
url: 'https://ethereum-pocr.github.io/explorer/kerleano',
|
5419
|
+
standard: 'EIP3091'
|
5420
|
+
}
|
5421
|
+
]
|
5347
5422
|
},
|
5348
5423
|
{
|
5349
5424
|
name: 'Rabbit Analog Testnet Chain',
|
@@ -6290,15 +6365,24 @@ const chainArray = [
|
|
6290
6365
|
name: 'PoCRNet',
|
6291
6366
|
title: 'Proof of Carbon Reduction mainnet',
|
6292
6367
|
chain: 'CRC',
|
6293
|
-
status: '
|
6294
|
-
rpc: [
|
6368
|
+
status: 'active',
|
6369
|
+
rpc: [
|
6370
|
+
'https://pocrnet.westeurope.cloudapp.azure.com/http',
|
6371
|
+
'wss://pocrnet.westeurope.cloudapp.azure.com/ws'
|
6372
|
+
],
|
6295
6373
|
faucets: [],
|
6296
6374
|
nativeCurrency: { name: 'Carbon Reduction Coin', symbol: 'CRC', decimals: 18 },
|
6297
|
-
infoURL: 'https://github.com/ethereum-pocr',
|
6375
|
+
infoURL: 'https://github.com/ethereum-pocr/pocrnet',
|
6298
6376
|
shortName: 'pocrnet',
|
6299
6377
|
chainId: 2606,
|
6300
6378
|
networkId: 2606,
|
6301
|
-
explorers: [
|
6379
|
+
explorers: [
|
6380
|
+
{
|
6381
|
+
name: 'Lite Explorer',
|
6382
|
+
url: 'https://ethereum-pocr.github.io/explorer/pocrnet',
|
6383
|
+
standard: 'EIP3091'
|
6384
|
+
}
|
6385
|
+
]
|
6302
6386
|
},
|
6303
6387
|
{
|
6304
6388
|
name: 'Redlight Chain Mainnet',
|
@@ -7615,6 +7699,7 @@ const chainArray = [
|
|
7615
7699
|
{
|
7616
7700
|
name: 'Shardeum Liberty 1.X',
|
7617
7701
|
chain: 'Shardeum',
|
7702
|
+
icon: 'shardeum',
|
7618
7703
|
rpc: [ 'https://liberty10.shardeum.org/' ],
|
7619
7704
|
faucets: [ 'https://faucet.liberty10.shardeum.org' ],
|
7620
7705
|
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
@@ -7624,9 +7709,9 @@ const chainArray = [
|
|
7624
7709
|
networkId: 8080,
|
7625
7710
|
explorers: [
|
7626
7711
|
{
|
7627
|
-
name: '
|
7712
|
+
name: 'Shardeum Scan',
|
7628
7713
|
url: 'https://explorer-liberty10.shardeum.org',
|
7629
|
-
standard: '
|
7714
|
+
standard: 'none'
|
7630
7715
|
}
|
7631
7716
|
],
|
7632
7717
|
redFlags: [ 'reusedChainId' ]
|
@@ -7634,6 +7719,7 @@ const chainArray = [
|
|
7634
7719
|
{
|
7635
7720
|
name: 'Shardeum Liberty 2.X',
|
7636
7721
|
chain: 'Shardeum',
|
7722
|
+
icon: 'shardeum',
|
7637
7723
|
rpc: [ 'https://liberty20.shardeum.org/' ],
|
7638
7724
|
faucets: [ 'https://faucet.liberty20.shardeum.org' ],
|
7639
7725
|
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
@@ -7643,9 +7729,29 @@ const chainArray = [
|
|
7643
7729
|
networkId: 8081,
|
7644
7730
|
explorers: [
|
7645
7731
|
{
|
7646
|
-
name: '
|
7732
|
+
name: 'Shardeum Scan',
|
7647
7733
|
url: 'https://explorer-liberty20.shardeum.org',
|
7648
|
-
standard: '
|
7734
|
+
standard: 'none'
|
7735
|
+
}
|
7736
|
+
],
|
7737
|
+
redFlags: [ 'reusedChainId' ]
|
7738
|
+
},
|
7739
|
+
{
|
7740
|
+
name: 'Shardeum Sphinx 1.X',
|
7741
|
+
chain: 'Shardeum',
|
7742
|
+
icon: 'shardeum',
|
7743
|
+
rpc: [ 'https://sphinx.shardeum.org/' ],
|
7744
|
+
faucets: [ 'https://faucet-sphinx.shardeum.org/' ],
|
7745
|
+
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
7746
|
+
infoURL: 'https://docs.shardeum.org/',
|
7747
|
+
shortName: 'Sphinx10',
|
7748
|
+
chainId: 8082,
|
7749
|
+
networkId: 8082,
|
7750
|
+
explorers: [
|
7751
|
+
{
|
7752
|
+
name: 'Shardeum Scan',
|
7753
|
+
url: 'https://explorer-sphinx.shardeum.org',
|
7754
|
+
standard: 'none'
|
7649
7755
|
}
|
7650
7756
|
],
|
7651
7757
|
redFlags: [ 'reusedChainId' ]
|
@@ -7831,6 +7937,18 @@ const chainArray = [
|
|
7831
7937
|
}
|
7832
7938
|
]
|
7833
7939
|
},
|
7940
|
+
{
|
7941
|
+
name: 'TMY Chain',
|
7942
|
+
chain: 'TMY',
|
7943
|
+
icon: 'ethereum',
|
7944
|
+
rpc: [ 'https://node1.tmyblockchain.org/rpc' ],
|
7945
|
+
faucets: [ 'https://faucet.tmychain.org/' ],
|
7946
|
+
nativeCurrency: { name: 'TMY', symbol: 'TMY', decimals: 18 },
|
7947
|
+
infoURL: 'https://tmychain.org/',
|
7948
|
+
shortName: 'tmy',
|
7949
|
+
chainId: 8768,
|
7950
|
+
networkId: 8768
|
7951
|
+
},
|
7834
7952
|
{
|
7835
7953
|
name: 'Unique',
|
7836
7954
|
icon: 'unique',
|
@@ -9852,7 +9970,7 @@ const chainArray = [
|
|
9852
9970
|
{
|
9853
9971
|
name: 'Liveplex OracleEVM',
|
9854
9972
|
chain: 'Liveplex OracleEVM Network',
|
9855
|
-
rpc: [ 'https://oracle.liveplex.io' ],
|
9973
|
+
rpc: [ 'https://rpc.oracle.liveplex.io' ],
|
9856
9974
|
faucets: [],
|
9857
9975
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
9858
9976
|
infoURL: '',
|
@@ -10495,6 +10613,25 @@ const chainArray = [
|
|
10495
10613
|
}
|
10496
10614
|
]
|
10497
10615
|
},
|
10616
|
+
{
|
10617
|
+
name: 'Chiliz Scoville Testnet',
|
10618
|
+
chain: 'CHZ',
|
10619
|
+
rpc: [ 'https://scoville-rpc.chiliz.com' ],
|
10620
|
+
faucets: [ 'https://scoville-faucet.chiliz.com' ],
|
10621
|
+
nativeCurrency: { name: 'Chiliz', symbol: 'CHZ', decimals: 18 },
|
10622
|
+
icon: 'chiliz',
|
10623
|
+
infoURL: 'https://www.chiliz.com/en/chain',
|
10624
|
+
shortName: 'chz',
|
10625
|
+
chainId: 88880,
|
10626
|
+
networkId: 88880,
|
10627
|
+
explorers: [
|
10628
|
+
{
|
10629
|
+
name: 'scoville-explorer',
|
10630
|
+
url: 'https://scoville-explorer.chiliz.com',
|
10631
|
+
standard: 'none'
|
10632
|
+
}
|
10633
|
+
]
|
10634
|
+
},
|
10498
10635
|
{
|
10499
10636
|
name: 'IVAR Chain Mainnet',
|
10500
10637
|
chain: 'IVAR',
|
@@ -12552,6 +12689,48 @@ const chainArray = [
|
|
12552
12689
|
networkId: 61717561,
|
12553
12690
|
slip44: 61717561
|
12554
12691
|
},
|
12692
|
+
{
|
12693
|
+
name: 'Autonity Bakerloo (Thames) Testnet',
|
12694
|
+
chain: 'AUT',
|
12695
|
+
rpc: [
|
12696
|
+
'https://rpc1.bakerloo.autonity.org/',
|
12697
|
+
'wss://rpc1.bakerloo.autonity.org/ws/'
|
12698
|
+
],
|
12699
|
+
faucets: [ 'https://faucet.autonity.org/' ],
|
12700
|
+
nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 },
|
12701
|
+
infoURL: 'https://autonity.org/',
|
12702
|
+
shortName: 'bakerloo-0',
|
12703
|
+
chainId: 65010000,
|
12704
|
+
networkId: 65010000,
|
12705
|
+
explorers: [
|
12706
|
+
{
|
12707
|
+
name: 'autonity-blockscout',
|
12708
|
+
url: 'https://bakerloo.autonity.org',
|
12709
|
+
standard: 'EIP3091'
|
12710
|
+
}
|
12711
|
+
]
|
12712
|
+
},
|
12713
|
+
{
|
12714
|
+
name: 'Autonity Piccadilly (Thames) Testnet',
|
12715
|
+
chain: 'AUT',
|
12716
|
+
rpc: [
|
12717
|
+
'https://rpc1.piccadilly.autonity.org/',
|
12718
|
+
'wss://rpc1.piccadilly.autonity.org/ws/'
|
12719
|
+
],
|
12720
|
+
faucets: [ 'https://faucet.autonity.org/' ],
|
12721
|
+
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|
12722
|
+
infoURL: 'https://autonity.org/',
|
12723
|
+
shortName: 'piccadilly-0',
|
12724
|
+
chainId: 65100000,
|
12725
|
+
networkId: 65100000,
|
12726
|
+
explorers: [
|
12727
|
+
{
|
12728
|
+
name: 'autonity-blockscout',
|
12729
|
+
url: 'https://piccadilly.autonity.org',
|
12730
|
+
standard: 'EIP3091'
|
12731
|
+
}
|
12732
|
+
]
|
12733
|
+
},
|
12555
12734
|
{
|
12556
12735
|
name: 'Joys Digital TestNet',
|
12557
12736
|
chain: 'TOYS',
|