Bitcoin Forum
April 26, 2024, 05:52:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Solo Mining Digibytes - NVIDIA ccminer - July 2017  (Read 6159 times)
the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 31, 2017, 03:52:38 PM
 #1



Solo Mining Digibytes
NVIDIA ccminer


I've seen different guides on how to solo mining DigiBytes, but none of them was explaining how to do it with ccminer. The following guide is based on several forum threads and few researches and tries.

It is quite simple and assuming to start from scratch this is what you should do (the guide is based on what I’ve done on Windows 10 x64, but it should work also with a different OS).

1.   Download the official Wallet V6.14.2 from https://digibyte.co/digibyte-wallets
2.   Install the Wallet
3.   Launch the Wallet (to allow the generation of all the required files such as wallet.dat etc.), but do not synchronize
4.   Close the Wallet
5.   Open your Wallet link and add the “--server” parameter (in my case the target is "C:\Program Files\DigiByte\digibyte-qt.exe" --server)
6.   Download the Digibyte blockchain (.zip file) from http://cryptochainer.com/dir/ (this is to speed up the synchronization of the wallet)
7.   Copy the .zip file to the Digibyte folder, located in /Users/%YOUR_USER%/AppData/Roaming/DigiByte
8.   Create backup of wallet.dat file (this is your actual wallet)
9.   Delete all files & folders, except for wallet.dat and the .zip file
10.   Unzip the .zip file directly into the folder
11.   Delete the .zip file

If the original wallet.dat was moved, copy wallet.dat back to the DigiByte folder. Always make backups of your wallet.dat files.

12.   From Windows Explorer create a new text file in the Digibyte folder (/Users/%YOUR_USER%/AppData/Roaming/DigiByte) and rename it as DigiByte.conf
13.   In the DigiByte.conf file add the following parameters:
Code:
daemon=1
port=12024
server=1
listen=1
rpcport=14022
rpcallowip=127.0.0.1
algo=groestl
rpcauth=user:1335d15a52c8c24ef246b73bf4b9741$44d37ba0cb46191f11749c3217c7e497da5e01f8e8e01bd501bb35fbfcc0c9ba
addnode=24.17.180.135
addnode=130.240.22.202
addnode=176.31.126.191
addnode=37.187.27.4
addnode=185.128.41.158
addnode=104.238.187.114
addnode=76.169.57.92
addnode=89.212.214.29
addnode=217.120.129.169
addnode=104.131.142.198
addnode=45.79.2.70
addnode=46.4.66.6
addnode=67.198.30.16
addnode=120.24.185.169
addnode=81.169.208.246
addnode=209.54.13.222
addnode=68.55.199.104
addnode=87.98.159.143
addnode=73.221.241.33
addnode=62.152.54.44
addnode=188.165.194.146
addnode=52.41.9.64
addnode=216.250.125.121
addnode=74.208.230.160
addnode=69.164.206.169
addnode=192.99.215.234
addnode=96.126.114.208
addnode=54.204.36.33
addnode=192.99.41.108
addnode=199.83.128.91
addnode=199.83.132.91
addnode=69.164.198.161
addnode=66.228.56.115
addnode=104.200.17.141
addnode=45.79.149.192
addnode=216.250.125.121
addnode=74.208.230.160
addnode=69.164.206.169
addnode=192.99.215.234
addnode=96.126.114.208
addnode=54.204.36.33
addnode=192.99.41.108
addnode=199.83.132.91
addnode=104.237.137.28
addnode=45.33.7.79
addnode=45.79.10.59

From the above parameters, you may change the “algo” if you want to run something different from myr-groestl and you can also change the “rpcallowip” if you are running the wallet on a machine different from your rig. You can also change “rpcauth”, but you will need to run the python script (https://github.com/digibyte/digibyte/tree/6.14.0/share/rpcuser) to calculate the auth code, so you can simply leave the values like they are here.

14.   Save the file
15.   Launch the Wallet (through the link with the “--server” parameter)

Let the wallet synchronize (it should not take long since you have already downloaded a good portion of the blockchain). Once the wallet is synchronized you have a ready-to-solo-mine wallet.

At this point you need a version of ccminer that supports the “--no-getwork” and “--coinbase-addr=” parameters. I found that the “ccminer-nanashi v1.7.6 r6” fork is working well, but if you find any other version supporting the same parameters than you are still ok.

16.   Download “ccminer-nanashi v1.7.6 r6” from https://github.com/nicehash/ccminer-nanashi/releases
17.   Create a new ccminer-solo.bat file and copy the below launch string
Code:
ccminer.exe -a myr-gr --url=127.0.0.1:14022 -u user -p l147_CovTnVvV4P0W5p8qa1B5Gs88EDqMo5OI9Fmo8Y= -i 20 --no-stratum --no-extranonce --no-getwork --coinbase-addr=D8Bf9PpGvMhXw72XqvqAnyQaPqPvLwgDSH

Of course, change the coinbase-addr with the address you can find from your wallet (File > Receiving Addresses…) and you can also change the IP in case you are running the wallet on a different machine. Also, you can change the intensity. I’m using “-i 20” with the 1080ti, but you can set the same intensity you use while mining on pools. Username and Password are already set to match the key you configured in the DigiByte.conf file, if you generated the key on a different username using the python script, then you need to change also username and password here.

18.   Only when the wallet is completely synchronized launch the ccminer-solo.bat file
19.   Done! You are solo mining DigiBytes!

If you overclocked or changed the settings of the GPUs, remember that the stability can change, so monitor the miner and the GPUs. In my case I had to reduce of 20 points the OC from +180 to +160 to avoid crashes, but that depends on many different variables, so check again the stability of your GPUs.
If it happens, don’t bother about the “JSON key ‘data’ not found” error message that pops out constantly, it is only because during the block switch there is no actual data to work on.

To slightly increase the hash rate you can try also the following steps:

20.   Create a new pump-the-beast.bat file with the following text
Code:
@echo off
:loop
goto loop

21.   Launch the pump-the-beast.bat file (it does nothing but increasing the I/O load of your machine, not sure why, but on my Windows 10 x64 machine increases the hash rate of some points)

If you feel like rewarding me with your first solo block do not hesitate to donate DigiBytes to my address “D8Bf9PpGvMhXw72XqvqAnyQaPqPvLwgDSH”. It would be really appreciated.


1714110741
Hero Member
*
Offline Offline

Posts: 1714110741

View Profile Personal Message (Offline)

Ignore
1714110741
Reply with quote  #2

1714110741
Report to moderator
1714110741
Hero Member
*
Offline Offline

Posts: 1714110741

View Profile Personal Message (Offline)

Ignore
1714110741
Reply with quote  #2

1714110741
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714110741
Hero Member
*
Offline Offline

Posts: 1714110741

View Profile Personal Message (Offline)

Ignore
1714110741
Reply with quote  #2

1714110741
Report to moderator
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
July 31, 2017, 08:34:50 PM
 #2

Nice guide but too bad virtually no miner supports --no-getwork and --coinbase-addr.

Not even Tpruvot's fork, let alone private miners.


There's no reason to remove RPC - which still works with older wallet versions.

Not your keys, not your coins!
ESJai
Full Member
***
Offline Offline

Activity: 131
Merit: 100

I Mine Anything and Everything!


View Profile
July 31, 2017, 08:36:35 PM
 #3

Ain't Nvidia better on Skein?
the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 31, 2017, 09:00:13 PM
Last edit: August 01, 2017, 04:48:44 AM by the_miner
 #4

Nice guide but too bad virtually no miner supports --no-getwork and --coinbase-addr.

Not even Tpruvot's fork, let alone private miners.


There's no reason to remove RPC - which still works with older wallet versions.

True, the only one I found is the ccminer-nanashi v1.7.6 r6 (https://github.com/nicehash/ccminer-nanashi/releases).
Regarding RPC removal, you are perfectly right, it should work fine keeping it for old wallets, I just wanted to have a guide from scratch for whoever does not even have a wallet installed... normally I've seen Digibytes mined on pools.


Ain't Nvidia better on Skein?

You can change the Algo in the config file and in the command string for ccminer.

QuintLeo
Legendary
*
Offline Offline

Activity: 1498
Merit: 1030


View Profile
August 01, 2017, 04:36:18 AM
 #5

Ain't Nvidia better on Skein?

 With the Alex78 fork, yes.

 They do well on DGB-Groetsl too though, but the truvot (sp) fork seems to work better there.


I'm no longer legendary just in my own mind!
Like something I said? Donations gratefully accepted. LYLnTKvLefz9izJFUvEGQEZzSkz34b3N6U (Litecoin)
1GYbjMTPdCuV7dci3iCUiaRrcNuaiQrVYY (Bitcoin)
Jody2k
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
August 01, 2017, 08:02:43 AM
 #6

Whats the advantage of solo mining DGB?
the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
August 01, 2017, 01:25:50 PM
 #7

Whats the advantage of solo mining DGB?

No waste of share rate in connections to pool, no pool fee, less fees spent for transactions... depending on your hash power you can reach also a good 10% increase in rewards...
dt8666
Full Member
***
Offline Offline

Activity: 302
Merit: 102

Mining with noise and without noise is all possibl


View Profile
August 01, 2017, 03:42:46 PM
 #8

any suggested minimum hash power needed to try solo? I mean min hash power to be worth try it instead of a long wait disappointment of not getting any block at all after week.
wajiminer
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
August 01, 2017, 05:33:54 PM
 #9

so how can i tell if I'm actually mining, i get tons of the JSON key data not found JSON invalid data (len 0 <> 128),

followed by my miner and hashrate and current block is xxxxxx followed by more of the above

the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
August 01, 2017, 10:21:21 PM
 #10



To estimate how long will take to get a block mined you can use the following calculation (it's not sure, it's probability):

time in hours = difficulty * 2^32 / your hash rate / 3600

For instance, if you have 1GH/s rig, assuming the Digibyte difficulty stays at 10,000 for long enough to find a block, you will mine a block in average every 12 hours.

10,000 * 2^32 / 1,000,000,000 / 3600

Consider that the difficulty of Digibyte lately is jumping quite a lot... if you don't have a decent hash rate don't solo mine. 1GH/s it's already borderline, below 1.5 or 2GH/s I would not solo mine.

the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
August 01, 2017, 10:30:39 PM
 #11

so how can i tell if I'm actually mining, i get tons of the JSON key data not found JSON invalid data (len 0 <> 128),

followed by my miner and hashrate and current block is xxxxxx followed by more of the above



Ignore the error:

JSON key data not found
JSON invalid data (len 0 <> 128) error


It depends on the miner and it should be caused from the fact that between one block and the other there is no actually data to mine. The error is always coming between the blocks. If hash rate is coming you are mining.
Meteorite777
Jr. Member
*
Offline Offline

Activity: 68
Merit: 6


View Profile
August 04, 2017, 02:58:35 PM
 #12

How is your guys luck so far solo mining? Mine seem to be atrocious. I've got 1.25GH/s on Groestl (about 20 Pascal GPU's) and on my pool am used to finding 2-4 blocks a day at least, yet I've been solo mining for 3 whole days now and only found 2.

I ran some difficulty calculations and the formula given by The_Miner and should be getting about 1 block every 8 hours or 3 a day, which is on par with what I found in my pool.

Am I just very unlucky or is anyone else having similar results?

I used Skein for a day with the Alexis78 fork and Groestl for the other two days, each algorithm found one block respectively when it should have been around 12 for the total duration. I know there is high variance in payouts and a good amount of luck involved when solo mining, but I can't help but think that that's a lot.

As of last night I switched back to my pool and have been running 10 hours and already found 2 blocks for the pool, the same it took me 3 days to mine solo. The only difference is that when solo mining I am using the Nanashi miner linked in this thread vs the Alexis78 fork of CCMiner on my pool. The Alexis fork has a better hashrate on Skein (not sure about Groestl), but not THAT big of a difference.

the_miner (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
August 07, 2017, 08:38:23 PM
 #13

With the increasing difficulty I believe that only above 2 or 3 Gh/s it's worth to solo mine... if the diff come back to the past month levels it should become again interesting to solo mine.
antened
Member
**
Offline Offline

Activity: 62
Merit: 10


View Profile
October 06, 2017, 11:28:58 PM
 #14

can this be setup for a L3 miner... i really lost my self trying to do that, thx
thanh_tan
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile WWW
October 18, 2017, 05:51:27 PM
 #15

How to setup Solo mining with ASIC devices (such as A2000 on QUBIT?
MFahad
Hero Member
*****
Offline Offline

Activity: 2464
Merit: 644


Eloncoin.org - Mars, here we come!


View Profile WWW
November 07, 2017, 01:43:24 PM
 #16

I think that we hit digi when it first came out and did well. I like it when the diff either drops back down or sticks to a lower area where the newer guys can get in a start mining something and see a result. A lot of people leave because they either have no desire to buy into coins or no money, and they have nothing that they can do to produce any. Coins like digi make it possible for them to get a foot in the door.









▄▄████████▄▄
▄▄████████████████▄▄
▄██
████████████████████▄
▄███
██████████████████████▄
▄████
███████████████████████▄
███████████████████████▄
█████████████████▄███████
████████████████▄███████▀
██████████▄▄███▄██████▀
████████▄████▄█████▀▀
██████▄██████████▀
███▄▄█████
███████▄
██▄██████████████
░▄██████████████▀
▄█████████████▀
████████████
███████████▀
███████▀▀
.
▄▄███████▄▄
▄███████████████▄
▄███████████████████▄
▄██████████
███████████
▄███████████████████████▄
█████████████████████████
█████████████████████████
█████████████████████████
▀█
██████████████████████▀
▀██
███████████████████▀
▀███████████████████▀
▀█████████
██████▀
▀▀███████▀▀
.
 ElonCoin.org 
.
████████▄▄███████▄▄
███████▄████████████▌
██████▐██▀███████▀▀██
███████████████████▐█▌
████▄▄▄▄▄▄▄▄▄▄██▄▄▄▄▄
███▐███▀▄█▄█▀▀█▄█▄▀
███████████████████
█████████████▄████
█████████▀░▄▄▄▄▄
███████▄█▄░▀█▄▄░▀
███▄██▄▀███▄█████▄▀
▄██████▄▀███████▀
████████▄▀████▀
█████▄▄
.
"I could either watch it
happen or be a part of it"
▬▬▬▬▬
moharni
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
May 15, 2018, 01:53:36 PM
 #17

Hi

What changes need to be done in order to mine with ASIC devices like antminer S9?

Thanks
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!