eth-chainlist 0.0.143 → 0.0.144
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 +51 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.144 (2023-05-06)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.143 ([bd23ac1](https://github.com/poowf/eth-chainlist/commit/bd23ac19774e1db718ba77bd9701d92ec302371e))
|
9
|
+
* update chain data ([166e767](https://github.com/poowf/eth-chainlist/commit/166e767d896f64cbbbf5f825c234f268ce1fff98))
|
10
|
+
|
3
11
|
### 0.0.143 (2023-05-05)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2499,6 +2499,27 @@ const chainArray = [
|
|
2499
2499
|
}
|
2500
2500
|
]
|
2501
2501
|
},
|
2502
|
+
{
|
2503
|
+
name: 'Tenet Testnet',
|
2504
|
+
title: 'Tenet Testnet',
|
2505
|
+
chain: 'TENET',
|
2506
|
+
icon: 'tenet',
|
2507
|
+
rpc: [ 'https://rpc.testnet.tenet.org' ],
|
2508
|
+
faucets: [ 'https://faucet.testnet.tenet.org' ],
|
2509
|
+
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
2510
|
+
infoURL: 'https://tenet.org/',
|
2511
|
+
shortName: 'tenet-testnet',
|
2512
|
+
chainId: 155,
|
2513
|
+
networkId: 155,
|
2514
|
+
explorers: [
|
2515
|
+
{
|
2516
|
+
name: 'TenetScan Testnet',
|
2517
|
+
url: 'https://testnet.tenetscan.io',
|
2518
|
+
icon: 'tenet',
|
2519
|
+
standard: 'EIP3091'
|
2520
|
+
}
|
2521
|
+
]
|
2522
|
+
},
|
2502
2523
|
{
|
2503
2524
|
name: 'OEBlock Testnet',
|
2504
2525
|
chain: 'OEBt',
|
@@ -3584,7 +3605,7 @@ const chainArray = [
|
|
3584
3605
|
explorers: [
|
3585
3606
|
{
|
3586
3607
|
name: 'Cronos Testnet Explorer',
|
3587
|
-
url: 'https://
|
3608
|
+
url: 'https://explorer.cronos.org/testnet',
|
3588
3609
|
standard: 'none'
|
3589
3610
|
}
|
3590
3611
|
]
|
@@ -3748,14 +3769,20 @@ const chainArray = [
|
|
3748
3769
|
name: 'LA Testnet',
|
3749
3770
|
chain: 'LATestnet',
|
3750
3771
|
rpc: [ 'https://rpc.testnet.lachain.network' ],
|
3751
|
-
faucets: [],
|
3772
|
+
faucets: [ 'https://faucet.lachain.network' ],
|
3752
3773
|
nativeCurrency: { name: 'Test La Coin', symbol: 'TLA', decimals: 18 },
|
3753
3774
|
features: [ { name: 'EIP155' } ],
|
3754
3775
|
infoURL: '',
|
3755
3776
|
shortName: 'latestnet',
|
3756
3777
|
chainId: 418,
|
3757
3778
|
networkId: 418,
|
3758
|
-
explorers: [
|
3779
|
+
explorers: [
|
3780
|
+
{
|
3781
|
+
name: 'LA Testnet Explorer',
|
3782
|
+
url: 'https://testexplorer.lachain.network',
|
3783
|
+
standard: 'EIP3091'
|
3784
|
+
}
|
3785
|
+
]
|
3759
3786
|
},
|
3760
3787
|
{
|
3761
3788
|
name: 'Optimism Goerli Testnet',
|
@@ -6328,6 +6355,27 @@ const chainArray = [
|
|
6328
6355
|
}
|
6329
6356
|
]
|
6330
6357
|
},
|
6358
|
+
{
|
6359
|
+
name: 'Tenet',
|
6360
|
+
title: 'Tenet Mainnet',
|
6361
|
+
chain: 'TENET',
|
6362
|
+
icon: 'tenet',
|
6363
|
+
rpc: [ 'https://rpc.tenet.org' ],
|
6364
|
+
faucets: [],
|
6365
|
+
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
6366
|
+
infoURL: 'https://tenet.org/',
|
6367
|
+
shortName: 'tenet',
|
6368
|
+
chainId: 1559,
|
6369
|
+
networkId: 1559,
|
6370
|
+
explorers: [
|
6371
|
+
{
|
6372
|
+
name: 'TenetScan Mainnet',
|
6373
|
+
url: 'https://tenetscan.io',
|
6374
|
+
icon: 'tenet',
|
6375
|
+
standard: 'EIP3091'
|
6376
|
+
}
|
6377
|
+
]
|
6378
|
+
},
|
6331
6379
|
{
|
6332
6380
|
name: 'Catecoin Chain Mainnet',
|
6333
6381
|
chain: 'Catechain',
|