Merge pull request #2 from crystaleum/update

Update
This commit is contained in:
Interchained
2021-01-04 16:53:42 -05:00
committed by GitHub
4 changed files with 26 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
{
"poolHost": "your.pool.host",
"coin": "Arqma",
"symbol": "ARQ",
"coinUnits": 1000000000,
@@ -8,7 +7,9 @@
"coinDifficultyTarget": 120,
"blockchainExplorer": "http://blockexplorer.arqma.com/block/{id}",
"transactionExplorer": "http://blockexplorer.arqma.com/tx/{id}",
"includeHeight": false,
"includeAlgo": null,
"isRandomX": false,
"daemonType": "default",
"cnAlgorithm": "cryptonight_pico",
"cnVariant": 2,
@@ -27,7 +28,9 @@
},
"childPools": [{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "CyprusCoin",
"childDaemon": {
"host": "1.2.3.4",
@@ -41,7 +44,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "Turtlecoin",
"childDaemon": {
"host": "1.2.3.4",
@@ -55,7 +60,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "Plenteum",
"childDaemon": {
"host": "1.2.3.4",
@@ -69,7 +76,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "Iridium",
"childDaemon": {
"host": "1.2.3.4",
@@ -83,7 +92,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "Tritanium",
"childDaemon": {
"host": "1.2.3.4",
@@ -97,7 +108,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "WrkzCoin",
"childDaemon": {
"host": "1.2.3.4",
@@ -111,7 +124,9 @@
},
{
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": null,
"subAddressPrefix": null,
"coin": "Elphyrecoin2",
"childDaemon": {
"host": "1.2.3.4",
@@ -129,7 +144,9 @@
"mergedMining": true,
"clusterForks": 5,
"poolAddress": "** Your pool wallet address **",
"pubAddressPrefix": null,
"intAddressPrefix": 1141703,
"subAddressPrefix": null,
"blockRefreshInterval": 1000,
"minerTimeout": 900,
"sslCert": "cert.pem",

View File

@@ -1,4 +1,4 @@
crystaleum-nodejs-pool
cryptonote-nodejs-pool
======================
High performance Node.js (with native C addons) mining pool for Crystaleum. Comes with lightweight example front-end script which uses the pool's AJAX API.

View File

@@ -24,6 +24,7 @@ exports.instanceId = function () {
/**
* Validate miner address
**/
var addressBase58 = parseInt(cnUtil.address_decode(new Buffer(config.poolAddress)).toString());
var addressBase58Prefix = config.poolServer.pubAddressPrefix ? parseInt(config.poolServer.pubAddressPrefix) : parseInt(cnUtil.address_decode(Buffer.from(config.poolServer.poolAddress)).toString());
let integratedAddressBase58Prefix = config.poolServer.intAddressPrefix ? parseInt(config.poolServer.intAddressPrefix) : addressBase58Prefix + 1;

View File

@@ -4,9 +4,9 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
<title>Arqma with PLE or XCY or TRTL Mining Pool - Merged Mining by Muscleman</title>
<meta name="Description" content="Arqma with PLE or XCY or TRTL Mining Pool by Muscleman. Cryptocurrency mining. Mine direct to exchange or wallet. Low pool fees and fast payments!">
<meta name="keywords" content="Arqma, turtle, ple, xcy, Merged, mining, pool, muscleman, cryptocurrency, exchange, bitrex, coinmarketcap, tradeogre, payments, coinbase, escodex, bitrex">
<title>Arqma with PLE or XCY or TRTL Mining Pool</title>
<meta name="Description" content="Arqma with PLE or XCY or TRTL Mining Pool. Cryptocurrency mining. Mine direct to exchange or wallet. Low pool fees and fast payments!">
<meta name="keywords" content="Arqma, turtle, ple, xcy, Merged, mining, pool, cryptocurrency, exchange, bitrex, coinmarketcap, tradeogre, payments, coinbase, escodex, bitrex">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-timeago/1.6.3/jquery.timeago.min.js"></script>
@@ -92,7 +92,7 @@
<!-- Footer -->
<footer>
<div class="text-muted">
<span data-tkey="poweredBy">Powered by</span> <a target="_blank" href="https://github.com/muscleman/cryptonote-nodejs-pool"><i class="fa fa-github"></i> cryptonote-nodejs-pool</a>
<span data-tkey="poweredBy">Powered by</span> <a target="_blank" href="https://github.com/dvandal/cryptonote-nodejs-pool"><i class="fa fa-github"></i> cryptonote-nodejs-pool</a>
<span id="poolVersion"></span>
<span class="hidden-xs"><span data-tkey="openSource">open sourced under the</span> <a href="http://www.gnu.org/licenses/gpl-2.0.html">GPL</a></span>
</div>
@@ -302,4 +302,4 @@ $(function(){
</script>
</body>
</html>
</html>