forked from oliverw/miningcore
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for manual ASICBOOST nonsense for all families
Improve NICEHACK (NICEHASH) support for all families Improve job distribution for all families in order to be the fastest as possible based on the evolution made for the KASPA (KAS) family Add support for XELIS (XEL) Add support for ZANO (ZANO) Upgrade multiple NUGET packages
- Loading branch information
ceedii
committed
Feb 1, 2025
1 parent
da79dfc
commit 5bb86a0
Showing
481 changed files
with
80,958 additions
and
9,202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
"logging": { | ||
"level": "info", | ||
"enableConsoleLog": true, | ||
"enableConsoleColors": true, | ||
"logFile": "", | ||
"apiLogFile": "", | ||
"logBaseDirectory": "", | ||
"perPoolLogFile": false | ||
}, | ||
"banning": { | ||
"manager": "Integrated", | ||
"banOnJunkReceive": false, | ||
"banOnInvalidShares": false | ||
}, | ||
"notifications": { | ||
"enabled": false, | ||
"email": { | ||
"host": "smtp.example.com", | ||
"port": 587, | ||
"user": "user", | ||
"password": "password", | ||
"fromAddress": "[email protected]", | ||
"fromName": "pool support" | ||
}, | ||
"admin": { | ||
"enabled": false, | ||
"emailAddress": "[email protected]", | ||
"notifyBlockFound": true | ||
} | ||
}, | ||
"persistence": { | ||
"postgres": { | ||
"host": "127.0.0.1", | ||
"port": 5432, | ||
"user": "miningcore", | ||
"password": "password", | ||
"database": "miningcore" | ||
} | ||
}, | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"interval": 100, | ||
"shareRecoveryFile": "recovered-shares.txt" | ||
}, | ||
"api": { | ||
"enabled": true, | ||
"listenAddress": "*", | ||
"port": 4000, | ||
"metricsIpWhitelist": [], | ||
"rateLimiting": { | ||
"disabled": true, | ||
"rules": [ | ||
{ | ||
"Endpoint": "*", | ||
"Period": "1s", | ||
"Limit": 5 | ||
} | ||
], | ||
"ipWhitelist": [ | ||
"" | ||
] | ||
} | ||
}, | ||
"clusterName": "eu1", | ||
"pools": [ | ||
{ | ||
"id": "ctxc1", | ||
"enabled": true, | ||
"coin": "cortex", | ||
"address": "0x6dd47dff7cf7daae47331f7f3556c0a31ab2511b", | ||
"rewardRecipients": [ | ||
{ | ||
"type": "op", | ||
"address": "0x6dd47dff7cf7daae47331f7f3556c0a31ab2511b", | ||
"percentage": 1.0 | ||
} | ||
], | ||
"blockRefreshInterval": 120, | ||
"clientConnectionTimeout": 600, | ||
"banning": { | ||
"enabled": true, | ||
"time": 600, | ||
"invalidPercent": 50, | ||
"checkThreshold": 50 | ||
}, | ||
"ports": { | ||
"4073": { | ||
"name": "GPU-SMALL", | ||
"listenAddress": "*", | ||
"difficulty": 0.0000000008128, | ||
"varDiff": { | ||
"minDiff": 0.0000000008128, | ||
"maxDiff": null, | ||
"targetTime": 15, | ||
"retargetTime": 90, | ||
"variancePercent": 30 | ||
} | ||
} | ||
}, | ||
"chainTypeOverride": "Cortex", | ||
"daemons": [ | ||
{ | ||
"host": "127.0.0.1", | ||
"port": 8545, | ||
"user": "", | ||
"password": "" | ||
} | ||
], | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"minimumPayment": 1, | ||
"payoutScheme": "PPLNS", | ||
"payoutSchemeConfig": { | ||
"factor": 0.5 | ||
}, | ||
"gas": 21000, | ||
"maxFeePerGas": 50000000000, | ||
"BlockSearchOffset": 100, | ||
"keepUncles": false, | ||
"keepTransactionFees": false | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
"logging": { | ||
"level": "info", | ||
"enableConsoleLog": true, | ||
"enableConsoleColors": true, | ||
"logFile": "", | ||
"apiLogFile": "", | ||
"logBaseDirectory": "", | ||
"perPoolLogFile": false | ||
}, | ||
"banning": { | ||
"manager": "Integrated", | ||
"banOnJunkReceive": false, | ||
"banOnInvalidShares": false | ||
}, | ||
"notifications": { | ||
"enabled": false, | ||
"email": { | ||
"host": "smtp.example.com", | ||
"port": 587, | ||
"user": "user", | ||
"password": "password", | ||
"fromAddress": "[email protected]", | ||
"fromName": "support" | ||
}, | ||
"admin": { | ||
"enabled": false, | ||
"emailAddress": "[email protected]", | ||
"notifyBlockFound": true | ||
} | ||
}, | ||
"persistence": { | ||
"postgres": { | ||
"host": "127.0.0.1", | ||
"port": 5432, | ||
"user": "miningcore", | ||
"password": "password", | ||
"database": "miningcore" | ||
} | ||
}, | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"interval": 600, | ||
"shareRecoveryFile": "recovered-shares.txt" | ||
}, | ||
"api": { | ||
"enabled": true, | ||
"listenAddress": "*", | ||
"port": 4000, | ||
"metricsIpWhitelist": [], | ||
"rateLimiting": { | ||
"disabled": true, | ||
"rules": [ | ||
{ | ||
"Endpoint": "*", | ||
"Period": "1s", | ||
"Limit": 5 | ||
} | ||
], | ||
"ipWhitelist": [ | ||
"" | ||
] | ||
} | ||
}, | ||
"pools": [{ | ||
"id": "xel1", | ||
"enabled": true, | ||
"coin": "xelis", | ||
"address": "xel:ajnsfv065qusndt0hfsngecrnf5690drmqmc0uq0etlx8zjlcyzqq2slgvt", | ||
"rewardRecipients": [ | ||
{ | ||
"type": "op", | ||
"address": "xel:ajnsfv065qusndt0hfsngecrnf5690drmqmc0uq0etlx8zjlcyzqq2slgvt", | ||
"percentage": 1.0 | ||
} | ||
], | ||
"blockRefreshInterval": 250, | ||
"jobRebroadcastTimeout": 0, | ||
"clientConnectionTimeout": 600, | ||
"banning": { | ||
"enabled": true, | ||
"time": 600, | ||
"invalidPercent": 50, | ||
"checkThreshold": 50 | ||
}, | ||
"ports": { | ||
"4073": { | ||
"name": "GPU-SMALL", | ||
"listenAddress": "*", | ||
"difficulty": 1024000, | ||
"varDiff": { | ||
"minDiff": 512000, | ||
"maxDiff": null, | ||
"targetTime": 15, | ||
"retargetTime": 90, | ||
"variancePercent": 100, | ||
"maxDelta": 512 | ||
} | ||
} | ||
}, | ||
"daemons": [ | ||
{ | ||
"host": "127.0.0.1", | ||
"port": 8080, | ||
"user": null, | ||
"password": null | ||
}, | ||
{ | ||
"host": "127.0.0.1", | ||
"port": 8081, | ||
"user": "<user>", | ||
"password": "<password>", | ||
"category": "wallet" | ||
} | ||
], | ||
"paymentProcessing": { | ||
"enabled": true, | ||
"minimumPayment": 1, | ||
"payoutScheme": "PPLNS", | ||
"payoutSchemeConfig": { | ||
"factor": 0.5 | ||
} | ||
} | ||
}] | ||
} |
Oops, something went wrong.