eth-chainlist 0.0.135 → 0.0.137
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 +76 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.137 (2023-04-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.136 ([4a1c07b](https://github.com/poowf/eth-chainlist/commit/4a1c07baf109c631a51f7a8dbc7b37ff148108a4))
|
9
|
+
* update chain data ([1e7520b](https://github.com/poowf/eth-chainlist/commit/1e7520bb70c6c868743534225792ed56bcc0aff7))
|
10
|
+
|
11
|
+
### 0.0.136 (2023-04-25)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.135 ([bef5f83](https://github.com/poowf/eth-chainlist/commit/bef5f8356fec7f86323ad672688027ce01992d2c))
|
17
|
+
* update chain data ([7b6e7f7](https://github.com/poowf/eth-chainlist/commit/7b6e7f77fae85618519b5c92ce81078dc4a11e14))
|
18
|
+
|
3
19
|
### 0.0.135 (2023-04-24)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5464,6 +5464,26 @@ const chainArray = [
|
|
5464
5464
|
chainId: 1140,
|
5465
5465
|
networkId: 1140
|
5466
5466
|
},
|
5467
|
+
{
|
5468
|
+
name: 'Symplexia Smart Chain',
|
5469
|
+
chain: 'Plexchain',
|
5470
|
+
rpc: [ 'https://plex-rpc.plexfinance.us' ],
|
5471
|
+
faucets: [],
|
5472
|
+
nativeCurrency: { name: 'Plex Native Token', symbol: 'PLEX', decimals: 18 },
|
5473
|
+
infoURL: 'https://plexfinance.us/',
|
5474
|
+
shortName: 'Plexchain',
|
5475
|
+
chainId: 1149,
|
5476
|
+
networkId: 1149,
|
5477
|
+
icon: 'plexchain',
|
5478
|
+
explorers: [
|
5479
|
+
{
|
5480
|
+
name: 'Plexchain Explorer',
|
5481
|
+
url: 'https://explorer.plexfinance.us',
|
5482
|
+
icon: 'plexchain',
|
5483
|
+
standard: 'EIP3091'
|
5484
|
+
}
|
5485
|
+
]
|
5486
|
+
},
|
5467
5487
|
{
|
5468
5488
|
name: 'Smart Host Teknoloji TESTNET',
|
5469
5489
|
chain: 'SHT',
|
@@ -8836,6 +8856,25 @@ const chainArray = [
|
|
8836
8856
|
}
|
8837
8857
|
]
|
8838
8858
|
},
|
8859
|
+
{
|
8860
|
+
name: 'SatoshiChain Testnet',
|
8861
|
+
chain: 'SATS',
|
8862
|
+
icon: 'satoshichain',
|
8863
|
+
rpc: [ 'https://rpc.satoshichain.io' ],
|
8864
|
+
faucets: [ 'https://faucet.satoshichain.io' ],
|
8865
|
+
nativeCurrency: { name: 'SatoshiChain Coin', symbol: 'SATS', decimals: 18 },
|
8866
|
+
infoURL: 'https://satoshichain.net',
|
8867
|
+
shortName: 'sats',
|
8868
|
+
chainId: 5758,
|
8869
|
+
networkId: 5758,
|
8870
|
+
explorers: [
|
8871
|
+
{
|
8872
|
+
name: 'SatoshiChain Explorer',
|
8873
|
+
url: 'https://satoshiscan.io',
|
8874
|
+
standard: 'EIP3091'
|
8875
|
+
}
|
8876
|
+
]
|
8877
|
+
},
|
8839
8878
|
{
|
8840
8879
|
name: 'Ganache',
|
8841
8880
|
title: 'Ganache GUI Ethereum Testnet',
|
@@ -13774,6 +13813,25 @@ const chainArray = [
|
|
13774
13813
|
}
|
13775
13814
|
]
|
13776
13815
|
},
|
13816
|
+
{
|
13817
|
+
name: 'ICPlaza Mainnet',
|
13818
|
+
chain: 'ICPlaza',
|
13819
|
+
icon: 'icplaza',
|
13820
|
+
rpc: [ 'https://rpcmainnet.ic-plaza.org/' ],
|
13821
|
+
faucets: [],
|
13822
|
+
nativeCurrency: { name: 'ict', symbol: 'ict', decimals: 18 },
|
13823
|
+
infoURL: 'https://docs.ic-plaza.org/',
|
13824
|
+
shortName: 'ICPlaza',
|
13825
|
+
chainId: 142857,
|
13826
|
+
networkId: 142857,
|
13827
|
+
explorers: [
|
13828
|
+
{
|
13829
|
+
name: 'ICPlaza',
|
13830
|
+
url: 'https://browsemainnet.ic-plaza.org/index',
|
13831
|
+
standard: 'none'
|
13832
|
+
}
|
13833
|
+
]
|
13834
|
+
},
|
13777
13835
|
{
|
13778
13836
|
name: 'Taiko (Alpha-2 Testnet)',
|
13779
13837
|
chain: 'ETH',
|
@@ -15673,15 +15731,16 @@ const chainArray = [
|
|
15673
15731
|
{
|
15674
15732
|
name: 'Kanazawa',
|
15675
15733
|
title: 'Meld Testnet Kanazawa',
|
15676
|
-
chain: '
|
15734
|
+
chain: 'Kanazawa',
|
15677
15735
|
rpc: [
|
15678
15736
|
'https://rpc-kanazawa.meldlabs.dev/ext/bc/2Ci7VYrUd4fTBqGA5D2HA6UPHzQ4LQyr8rZQww9MGSv9rNkRzn/rpc'
|
15679
15737
|
],
|
15680
15738
|
faucets: [],
|
15681
15739
|
features: [],
|
15682
15740
|
nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
|
15741
|
+
icon: 'meld',
|
15683
15742
|
infoURL: 'https://meld.com',
|
15684
|
-
shortName: '
|
15743
|
+
shortName: 'kanazawa',
|
15685
15744
|
chainId: 222000222,
|
15686
15745
|
networkId: 222000222,
|
15687
15746
|
explorers: []
|
@@ -15777,6 +15836,21 @@ const chainArray = [
|
|
15777
15836
|
}
|
15778
15837
|
]
|
15779
15838
|
},
|
15839
|
+
{
|
15840
|
+
name: 'Meld',
|
15841
|
+
title: 'Meld Mainnet',
|
15842
|
+
chain: 'MELD',
|
15843
|
+
rpc: [ 'https://network-rpc.meld.com' ],
|
15844
|
+
faucets: [],
|
15845
|
+
features: [],
|
15846
|
+
nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
|
15847
|
+
icon: 'meld',
|
15848
|
+
infoURL: 'https://meld.com',
|
15849
|
+
shortName: 'meld',
|
15850
|
+
chainId: 333000333,
|
15851
|
+
networkId: 333000333,
|
15852
|
+
explorers: []
|
15853
|
+
},
|
15780
15854
|
{
|
15781
15855
|
name: 'Calypso NFT Hub (SKALE Testnet)',
|
15782
15856
|
title: 'Calypso NFT Hub Testnet',
|