eth-chainlist 0.0.68 → 0.0.69
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 +8 -0
- package/data/chain.js +104 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.69 (2023-02-02)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.68 ([af3515a](https://github.com/poowf/eth-chainlist/commit/af3515aa81e28654af2dc74be35554edaea4f346))
|
9
|
+
* update chain data ([ee2f351](https://github.com/poowf/eth-chainlist/commit/ee2f351868b6352cdb41fb2123bb6a8ac0a1be47))
|
10
|
+
|
3
11
|
### 0.0.68 (2023-02-01)
|
4
12
|
|
5
13
|
|
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',
|
@@ -7831,6 +7915,18 @@ const chainArray = [
|
|
7831
7915
|
}
|
7832
7916
|
]
|
7833
7917
|
},
|
7918
|
+
{
|
7919
|
+
name: 'TMY Chain',
|
7920
|
+
chain: 'TMY',
|
7921
|
+
icon: 'ethereum',
|
7922
|
+
rpc: [ 'https://node1.tmyblockchain.org/rpc' ],
|
7923
|
+
faucets: [ 'https://faucet.tmychain.org/' ],
|
7924
|
+
nativeCurrency: { name: 'TMY', symbol: 'TMY', decimals: 18 },
|
7925
|
+
infoURL: 'https://tmychain.org/',
|
7926
|
+
shortName: 'tmy',
|
7927
|
+
chainId: 8768,
|
7928
|
+
networkId: 8768
|
7929
|
+
},
|
7834
7930
|
{
|
7835
7931
|
name: 'Unique',
|
7836
7932
|
icon: 'unique',
|
@@ -9852,7 +9948,7 @@ const chainArray = [
|
|
9852
9948
|
{
|
9853
9949
|
name: 'Liveplex OracleEVM',
|
9854
9950
|
chain: 'Liveplex OracleEVM Network',
|
9855
|
-
rpc: [ 'https://oracle.liveplex.io' ],
|
9951
|
+
rpc: [ 'https://rpc.oracle.liveplex.io' ],
|
9856
9952
|
faucets: [],
|
9857
9953
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
9858
9954
|
infoURL: '',
|