Created
September 7, 2018 21:11
-
-
Save JulienKode/a841bfcea592f62138a449daa9663353 to your computer and use it in GitHub Desktop.
Pool config xmr-stak
This file contains hidden or 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
/* | |
* pool_address - Pool address should be in the form "pool.supportxmr.com:3333". Only stratum pools are supported. | |
* wallet_address - Your wallet, or pool login. | |
* rig_id - Rig identifier for pool-side statistics (needs pool support). | |
* pool_password - Can be empty in most cases or "x". | |
* use_nicehash - Limit the nonce to 3 bytes as required by nicehash. | |
* use_tls - This option will make us connect using Transport Layer Security. | |
* tls_fingerprint - Server's SHA256 fingerprint. If this string is non-empty then we will check the server's cert against it. | |
* pool_weight - Pool weight is a number telling the miner how important the pool is. Miner will mine mostly at the pool | |
* with the highest weight, unless the pool fails. Weight must be an integer larger than 0. | |
* | |
* We feature pools up to 1MH/s. For a more complete list see M5M400's pool list at www.moneropools.com | |
*/ | |
"pool_list" : | |
[ | |
{"pool_address" : "pool.aeonpool.net:3333", "wallet_address" : "WmtYRfYx39HDZWMATkQxCWgTFQSkL8LVqgJaFmz1NpAT1tYcoUgFnLwR6PaLNtMyP36dDqiFPNwrwgThGsEYpfgm2ayxpU1YR", "rig_id" : "", "pool_password" : "x", "use_nicehash" : true, "use_tls" : false, "tls_fingerprint" : "", "pool_weight" : 1 }, | |
], | |
/* | |
* Currency to mine. Supported values: | |
* | |
* aeon7 (use this for Aeon's new PoW) | |
* bbscoin (automatic switch with block version 3 to cryptonight_v7) | |
* bittube (uses cyrptonight_bittube2 algorithm) | |
* graft | |
* haven (automatic switch with block version 3 to cryptonight_haven) | |
* intense | |
* masari | |
* monero7 (use this for Monero's new PoW) | |
* ryo | |
* turtlecoin | |
* | |
* Native algorithms which not depends on any block versions: | |
* | |
* # 1MiB scratchpad memory | |
* cryptonight_lite | |
* cryptonight_lite_v7 | |
* cryptonight_lite_v7_xor (algorithm used by ipbc) | |
* # 2MiB scratchpad memory | |
* cryptonight | |
* cryptonight_v7 | |
* # 4MiB scratchpad memory | |
* cyrptonight_bittube2 | |
* cryptonight_haven | |
* cryptonight_heavy | |
*/ | |
"currency" : "aeon7", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment