eth-chainlist 0.0.142 → 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 +16 -0
- package/data/chain.js +71 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
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
|
+
|
11
|
+
### 0.0.143 (2023-05-05)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.142 ([fdc9188](https://github.com/poowf/eth-chainlist/commit/fdc9188dc3f5bd0c1e012fc3616d363be4d71f23))
|
17
|
+
* update chain data ([abb0fb1](https://github.com/poowf/eth-chainlist/commit/abb0fb1348b4d2cf3d6f7022e47eae742e99840d))
|
18
|
+
|
3
19
|
### 0.0.142 (2023-05-04)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1991,6 +1991,26 @@ const chainArray = [
|
|
1991
1991
|
networkId: 111,
|
1992
1992
|
icon: 'etherlite'
|
1993
1993
|
},
|
1994
|
+
{
|
1995
|
+
name: 'Coinbit Mainnet',
|
1996
|
+
chain: 'Coinbit',
|
1997
|
+
rpc: [ 'https://coinbit-rpc-mainnet.chain.sbcrypto.app' ],
|
1998
|
+
faucets: [],
|
1999
|
+
nativeCurrency: { name: 'Gas IDR', symbol: 'GIDR', decimals: 18 },
|
2000
|
+
infoURL: 'https://crypto.stockbit.com/',
|
2001
|
+
shortName: 'coinbit',
|
2002
|
+
chainId: 112,
|
2003
|
+
networkId: 112,
|
2004
|
+
icon: 'coinbit',
|
2005
|
+
explorers: [
|
2006
|
+
{
|
2007
|
+
name: 'blockscout',
|
2008
|
+
url: 'https://coinbit-explorer.chain.sbcrypto.app',
|
2009
|
+
icon: 'blockscout',
|
2010
|
+
standard: 'EIP3091'
|
2011
|
+
}
|
2012
|
+
]
|
2013
|
+
},
|
1994
2014
|
{
|
1995
2015
|
name: 'Dehvo',
|
1996
2016
|
chain: 'Dehvo',
|
@@ -2479,6 +2499,27 @@ const chainArray = [
|
|
2479
2499
|
}
|
2480
2500
|
]
|
2481
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
|
+
},
|
2482
2523
|
{
|
2483
2524
|
name: 'OEBlock Testnet',
|
2484
2525
|
chain: 'OEBt',
|
@@ -3564,7 +3605,7 @@ const chainArray = [
|
|
3564
3605
|
explorers: [
|
3565
3606
|
{
|
3566
3607
|
name: 'Cronos Testnet Explorer',
|
3567
|
-
url: 'https://
|
3608
|
+
url: 'https://explorer.cronos.org/testnet',
|
3568
3609
|
standard: 'none'
|
3569
3610
|
}
|
3570
3611
|
]
|
@@ -3728,14 +3769,20 @@ const chainArray = [
|
|
3728
3769
|
name: 'LA Testnet',
|
3729
3770
|
chain: 'LATestnet',
|
3730
3771
|
rpc: [ 'https://rpc.testnet.lachain.network' ],
|
3731
|
-
faucets: [],
|
3772
|
+
faucets: [ 'https://faucet.lachain.network' ],
|
3732
3773
|
nativeCurrency: { name: 'Test La Coin', symbol: 'TLA', decimals: 18 },
|
3733
3774
|
features: [ { name: 'EIP155' } ],
|
3734
3775
|
infoURL: '',
|
3735
3776
|
shortName: 'latestnet',
|
3736
3777
|
chainId: 418,
|
3737
3778
|
networkId: 418,
|
3738
|
-
explorers: [
|
3779
|
+
explorers: [
|
3780
|
+
{
|
3781
|
+
name: 'LA Testnet Explorer',
|
3782
|
+
url: 'https://testexplorer.lachain.network',
|
3783
|
+
standard: 'EIP3091'
|
3784
|
+
}
|
3785
|
+
]
|
3739
3786
|
},
|
3740
3787
|
{
|
3741
3788
|
name: 'Optimism Goerli Testnet',
|
@@ -6308,6 +6355,27 @@ const chainArray = [
|
|
6308
6355
|
}
|
6309
6356
|
]
|
6310
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
|
+
},
|
6311
6379
|
{
|
6312
6380
|
name: 'Catecoin Chain Mainnet',
|
6313
6381
|
chain: 'Catechain',
|