I'm kinda liking the 3rd option as it gives miners another shake at earning while making it more worthwhile to mine, I also like the short POW versus the long before transitioning to POS. I however cannot solomine with my rigs so would only be able to mine if a pool was avail.
I suspect that the pools would drop us like a hot rock as the reward goes down. That said, the big boys will not be too interested anyway so the diff rate will stay low. Anticipating that, and because of the closure of my pool of choice, I decided to take a look at solo mining last week. Although I thought it might be challenging - it is delightfully straightforward if you know where the bunkers are, and just takes a little twiddling to set up. I have that process nailed down now, so if 'The Faithful' want a 'howto' on solo mining I will be happy to write that up or even do a short video of the process.
With difficulties in low single figures, even a GPU can solo mine effectively using your normal miner software of choice and the solarcoin wallet as the 'server'.
T
Yeah I have 3 290x cards I can solo mine with, but my main equipment are the 5 chip GridSeed units and those cannot solo mine the last I checked. As far as I know there is no easy solution to do this yet.
Nonsense. I have 3 Gridseed Orbs and a (very troublesome) Gridseed Blade in my workshop, solo mining away at 838Mhz. The little 5s do very well, pro rata even better than the Blade. Try BFGMINER 4.2.0 on your GS Orbs - best for the job I have found.
Here is a solo configuration file for your SLR wallet : (use the same passwords etc - it does not matter being internal). The filename is solarcoin.conf and it can be found by right clicking on your SolarCoin Wallet icon and selecting OPEN FILE LOCATION....
Edit the solarcoin.conf file to read as this :
addnode=162.243.214.120
addnode=69.112.107.24
addnode=54.208.219.204
addnode=64.71.117.119
addnode=184.73.159.72
addnode=94.173.214.165
addnode=53.201.110.57
addnode=62.163.9.155
addnode=71.103.142.240
rpcuser=WorkShop
rpcpassword=WorkShop
rpcallowip=127.0.0.1
rpcport=4090
daemon=1
server=1
listen=1
gen=0
Here is a solo mining config for BFGMINER 4.2.0 (Google will find you a source - GitHub). The expiry and scan-time values are on the low side, but the wallet is a bit slow and if you put them up to say 30 and 60 respectively to save bandwidth, you tend to get a few rejected shares. However once the pools go quiet, that may not be the case with fewer miners and hash power in play. Anyway, 10/10 works for me.
Paste this into bfgminer.conf and just run bfgminer as is - this is the default config.
{
"pools" : [
{
"url" : "127.0.0.1:4090",
"user" : "WorkShop",
"pass" : "WorkShop",
"pool-priority" : "0"
}
]
,
"api-listen" : true,
"api-mcast-port" : "4028",
"api-port" : "4028",
"expiry" : "10",
"expiry-lp" : "600",
"failover-switch-delay" : "300",
"gpu-platform" : "0",
"log" : "0",
"no-pool-disable" : true,
"no-client-reconnect" : true,
"no-unicode" : true,
"queue" : "1",
"scan-time" : "10",
"scrypt" : true,
"show-processors" : true,
"show-procs" : true,
"skip-security-checks" : "0",
"submit-stale" : false,
"kernel-path" : "C:/minerstuff/",
"scan" : [
"gridseed:All"
],
"device" : [
"GridSeed"
],
"set-device" : [
"gridseed:clock=838"
The last job is to get your wallet into server mode. Go back to the wallet directory and create a simple batch file - mine is called solosolar.bat
SolarCoin-Qt.exe -server
That will start your wallet in server mode and it will happily feed the miner in the background. All other functions are normal. Remember that the wallet must be running and up to date all the time you are mining.
This should be of help. If any of the steps look a bit steep - get back to me and I will expand this.