Author

Topic: ★★DigiByte|极特币★★[DGB]✔ Core v6.16.5.1 - DigiShield, DigiSpeed, Segwit - page 1093. (Read 3058816 times)

sr. member
Activity: 378
Merit: 250
A lot of weird price manipulation at Bittrex. Someone keeps moving their buy orders from 11 to 13 and then taking them off. Not sure if they are attempting to trigger something or not. Is Cryptsy still having deposit issues?

YC

Welcome to crypto-currency.

some people always try to manipulate market. That s quite normal. If volume is low this will happen often.
hero member
Activity: 518
Merit: 500
Happy new year people, a happy new DGB year!
hero member
Activity: 786
Merit: 1000
A lot of weird price manipulation at Bittrex. Someone keeps moving their buy orders from 11 to 13 and then taking them off. Not sure if they are attempting to trigger something or not. Is Cryptsy still having deposit issues?

YC

Welcome to crypto-currency.
hero member
Activity: 924
Merit: 1000
The DGB wallet at Bittrex is showing as disabled. Anyone else experiencing this?

YC
hero member
Activity: 924
Merit: 1000
Happy New Year to Jared, development team and all the valuable members of the community. You are all awesome!

YC

Happy New Year everyone! 2015 is going to be a great year for DigiByte!
sr. member
Activity: 266
Merit: 250
DigiByte? Yes!
Why does the block explorer say the reward is 2410, but is paying out 2434 ?

Please check into this. Is the block reward reduction not working, or are the wrong values being reported to the block explorer, or... ?

This is still happening.
sr. member
Activity: 378
Merit: 250
Happy New Year everyone! 2015 is going to be a great year for DigiByte!

2015 will show how much the investment was really worth Smiley
hero member
Activity: 756
Merit: 500
Community Liaison,How can i help you?
Happy new year Jared & team,  thank you for last year Smiley
legendary
Activity: 1722
Merit: 1051
Official DigiByte Account
Happy New Year everyone! 2015 is going to be a great year for DigiByte!
legendary
Activity: 1722
Merit: 1051
Official DigiByte Account
I don't think I have ever seen comprehensive instructions on how to solomine a coin. I've found bits and pieces on several sites, but none that I could follow from start to finish and get the complete sequence.

Over the past few days, I decided to try it out just to see if I could get it working, and I did! If anyone else is curious about how to do it, here are the steps I followed:

(Assuming your wallet is running on a Windows computer.)

1. Shut down your wallet.

2. In the C:\Users\\AppData\Roaming\DigiByte folder, add a file called DigiByte.conf that contains this:

Code:
rpcallowip=*
rpcuser=abc
rpcpassword=zzz
server=1
daemon=1
txindex=1
debug=1
algo=scrypt
rpcport=14022
port=12024
addnode=74.208.230.160
addnode=69.164.198.161
addnode=66.228.56.115
addnode=106.187.37.124

3. Right-click the shortcut icon of your wallet
   a. choose Properties
   b. click the Shortcut tab
   c. in the Target, add -server to the end. (Example: "C:\Program Files\DigiByte\digibyte-qt.exe" -server)

4. Launch your wallet. It may reindex your blockchain, this can take awhile. Wait until this is done.

5. Go into the console of your wallet and type this and hit Enter: setgenerate true -1

6. Your computer is now CPU mining. It's going to use about 100% of the CPU on your computer, so it's best to run the wallet on a computer that is different from your mining rig.

7. Make note of the IP address of the computer your wallet is running on. From the Command Prompt: ipconfig

Wireless LAN adapter Wireless Network Connection 2:

   Connection-specific DNS Suffix  . : your.internet.provider
   IPv4 Address. . . . . . . . . . . : 192.168.1.3
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1


IP Address of the computer is 192.168.1.3

8. On your mining rig, point to 192.168.1.3:14022, username abc, password zzz

You are now solo mining! Depending on your mining program, you aren't going to see any activity until you find a block. But it is working. I have my wallet running on my Windows box, and my miner running on a Linux box. I pointed my linux miner to this and it worked.

There may be some other set of instructions out there that are better than this, but part of the fun for me was trying to figure out how to do it on my own from the bits and pieces I found on the internet.

Other Algos... In the digibyte.conf file, you should be able to change the algo= line to one of the other algorithms and mine, but I haven't tested that (yet).


This is great! Thank you for sharing this!
full member
Activity: 300
Merit: 103
sr. member
Activity: 266
Merit: 250
DigiByte? Yes!

Nice guide. Couple of things I'd add is that theres no need to add txindex=1 into your conf feel free to leave it out. If you leave it out there's also no need to -reindex.

In the conf rather than use rpcallowip=* which opens up your wallet to connections outside your network you are far better off using rpcallowip=127.0.0.1

127.0.0.1 always points to localhost so you can use that instead of looking up your IP address with ipconfig

So Conf would become
Code:
rpcallowip=127.0.0.1
rpcuser=abc
rpcpassword=zzz
server=1
daemon=1
debug=1
algo=scrypt
rpcport=14022
port=12024
addnode=74.208.230.160
addnode=69.164.198.161
addnode=66.228.56.115
addnode=106.187.37.124

and then your mining settings would be

Pool = 127.0.0.1:14022
username = abc
password = zzz

Miner is on my linux box, and wallet is on my windows box. I would have to put the miner IP instead of 127.0.0.1.
hero member
Activity: 750
Merit: 500
I don't think I have ever seen comprehensive instructions on how to solomine a coin. I've found bits and pieces on several sites, but none that I could follow from start to finish and get the complete sequence.

Over the past few days, I decided to try it out just to see if I could get it working, and I did! If anyone else is curious about how to do it, here are the steps I followed:

(Assuming your wallet is running on a Windows computer.)

1. Shut down your wallet.

2. In the C:\Users\\AppData\Roaming\DigiByte folder, add a file called DigiByte.conf that contains this:

Code:
rpcallowip=*
rpcuser=abc
rpcpassword=zzz
server=1
daemon=1
txindex=1
debug=1
algo=scrypt
rpcport=14022
port=12024
addnode=74.208.230.160
addnode=69.164.198.161
addnode=66.228.56.115
addnode=106.187.37.124

3. Right-click the shortcut icon of your wallet
   a. choose Properties
   b. click the Shortcut tab
   c. in the Target, add -server to the end. (Example: "C:\Program Files\DigiByte\digibyte-qt.exe" -server)

4. Launch your wallet. It may reindex your blockchain, this can take awhile. Wait until this is done.

5. Go into the console of your wallet and type this and hit Enter: setgenerate true -1

6. Your computer is now CPU mining. It's going to use about 100% of the CPU on your computer, so it's best to run the wallet on a computer that is different from your mining rig.

7. Make note of the IP address of the computer your wallet is running on. From the Command Prompt: ipconfig

Wireless LAN adapter Wireless Network Connection 2:

   Connection-specific DNS Suffix  . : your.internet.provider
   IPv4 Address. . . . . . . . . . . : 192.168.1.3
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1


IP Address of the computer is 192.168.1.3

8. On your mining rig, point to 192.168.1.3:14022, username abc, password zzz

You are now solo mining! Depending on your mining program, you aren't going to see any activity until you find a block. But it is working. I have my wallet running on my Windows box, and my miner running on a Linux box. I pointed my linux miner to this and it worked.

There may be some other set of instructions out there that are better than this, but part of the fun for me was trying to figure out how to do it on my own from the bits and pieces I found on the internet.

Other Algos... In the digibyte.conf file, you should be able to change the algo= line to one of the other algorithms and mine, but I haven't tested that (yet).


Nice guide. Couple of things I'd add is that theres no need to add txindex=1 into your conf feel free to leave it out. If you leave it out there's also no need to -reindex.

In the conf rather than use rpcallowip=* which opens up your wallet to connections outside your network you are far better off using rpcallowip=127.0.0.1

127.0.0.1 always points to localhost so you can use that instead of looking up your IP address with ipconfig

So Conf would become
Code:
rpcallowip=127.0.0.1
rpcuser=abc
rpcpassword=zzz
server=1
daemon=1
debug=1
algo=scrypt
rpcport=14022
port=12024
addnode=74.208.230.160
addnode=69.164.198.161
addnode=66.228.56.115
addnode=106.187.37.124

and then your mining settings would be

Pool = 127.0.0.1:14022
username = abc
password = zzz
hero member
Activity: 924
Merit: 1000
A lot of weird price manipulation at Bittrex. Someone keeps moving their buy orders from 11 to 13 and then taking them off. Not sure if they are attempting to trigger something or not. Is Cryptsy still having deposit issues?

YC
legendary
Activity: 1386
Merit: 1001
You may also want to check cryptmarketcap.com. Tends to remove all the premine coins.

YC


Well I believe the problem is "coinmarketcap" giving coins like ripple the exposure they want by adding them while real coins get pushed down further and further.

When people go to coinmarketcap they look at the top coins and decide which they should invest in not knowing that most of those coins are premined or dont require any mining compared to the few real coins available.

I blame coinmarketcap. In fact they do have an option to remove those fake coins (in my opinion) and show some real coins.

http://coinmarketcap.com/currencies/views/filter-non-mineable-and-premined/

Digibyte is ranked #57 as you can see but I believe this should be the main page not the other with all the fake coins because its pushing new investors to the top marketcap coins which most are premined or no mining at all. Obviously this also pushes digibyte out of the top 100 and lower when more and more fake coins pop up with massive marketcaps.

Maybe we should all post this to coinmarketcap?

https://bitcointalk.org/index.php?topic=199685.new#new

Anyways thats just my opinion.

You can sort CMC almost any way you want. When sorted by "currencies" DBG is currently #98 on the top 100 page. Just saying...


I know about cryptmarketcap but most people dont, they run to coinmarketcap.

I also know about sorting coinmarketcap but we want that to be the default page.
hero member
Activity: 924
Merit: 1000
You may also want to check cryptmarketcap.com. Tends to remove all the premine coins.

YC


Well I believe the problem is "coinmarketcap" giving coins like ripple the exposure they want by adding them while real coins get pushed down further and further.

When people go to coinmarketcap they look at the top coins and decide which they should invest in not knowing that most of those coins are premined or dont require any mining compared to the few real coins available.

I blame coinmarketcap. In fact they do have an option to remove those fake coins (in my opinion) and show some real coins.

http://coinmarketcap.com/currencies/views/filter-non-mineable-and-premined/

Digibyte is ranked #57 as you can see but I believe this should be the main page not the other with all the fake coins because its pushing new investors to the top marketcap coins which most are premined or no mining at all. Obviously this also pushes digibyte out of the top 100 and lower when more and more fake coins pop up with massive marketcaps.

Maybe we should all post this to coinmarketcap?

https://bitcointalk.org/index.php?topic=199685.new#new

Anyways thats just my opinion.

You can sort CMC almost any way you want. When sorted by "currencies" DBG is currently #98 on the top 100 page. Just saying...

RJF
hero member
Activity: 616
Merit: 500
Online since '89...
I'm referring to mandatory identification of block finders only, not every miner. Each block found should be clearly associated with the miner who found it, exactly like we see with each block that the The Blocks Factory finds, for example. This would apply to pools and your one odd out solo miner still in existence (solo miners would only have to provide an IP address). This would go a long ways towards eliminating uncertainty regarding weird issues like the continual flow of phantom autosells on Cryptsy, as well as enhancing DGB's commitment to transparency. Again, this would only apply to entities actually finding blocks, of which there are only a few, who should identify themselves voluntarily to begin with one would think, and if not, then they should be required to do so.

Isn't the point of these coins decentralized anonymity? I think the Devs have a commitment to transparency, but to ask miners to give out their details is tantamount to card-checking in US unions. Allows for potential harassment and threats because we know who is getting the blocks and if someone doesn't like what the miner is doing with them, they can pressure them to buy/sell/hold because its best for the "community". Sounds very close to "economic patriotism" touted by US liberals to get people scared to buy anything from outside the US.

I tend to agree, it would set a very dangerous precedent if it were mandatory and would change the entire landscape.
RJF
hero member
Activity: 616
Merit: 500
Online since '89...
Well I believe the problem is "coinmarketcap" giving coins like ripple the exposure they want by adding them while real coins get pushed down further and further.

When people go to coinmarketcap they look at the top coins and decide which they should invest in not knowing that most of those coins are premined or dont require any mining compared to the few real coins available.

I blame coinmarketcap. In fact they do have an option to remove those fake coins (in my opinion) and show some real coins.

http://coinmarketcap.com/currencies/views/filter-non-mineable-and-premined/

Digibyte is ranked #57 as you can see but I believe this should be the main page not the other with all the fake coins because its pushing new investors to the top marketcap coins which most are premined or no mining at all. Obviously this also pushes digibyte out of the top 100 and lower when more and more fake coins pop up with massive marketcaps.

Maybe we should all post this to coinmarketcap?

https://bitcointalk.org/index.php?topic=199685.new#new

Anyways thats just my opinion.

You can sort CMC almost any way you want. When sorted by "currencies" DBG is currently #98 on the top 100 page. Just saying...
sr. member
Activity: 335
Merit: 250
HR
legendary
Activity: 1176
Merit: 1011
Transparency & Integrity
I don't think I have ever seen comprehensive instructions on how to solomine a coin. I've found bits and pieces on several sites, but none that I could follow from start to finish and get the complete sequence.

Over the past few days, I decided to try it out just to see if I could get it working, and I did! If anyone else is curious about how to do it, here are the steps I followed:

(Assuming your wallet is running on a Windows computer.)

1. Shut down your wallet.

2. In the C:\Users\\AppData\Roaming\DigiByte folder, add a file called DigiByte.conf that contains this:

Code:
rpcallowip=*
rpcuser=abc
rpcpassword=zzz
server=1
daemon=1
txindex=1
debug=1
algo=scrypt
rpcport=14022
port=12024
addnode=74.208.230.160
addnode=69.164.198.161
addnode=66.228.56.115
addnode=106.187.37.124

3. Right-click the shortcut icon of your wallet
   a. choose Properties
   b. click the Shortcut tab
   c. in the Target, add -server to the end. (Example: "C:\Program Files\DigiByte\digibyte-qt.exe" -server)

4. Launch your wallet. It may reindex your blockchain, this can take awhile. Wait until this is done.

5. Go into the console of your wallet and type this and hit Enter: setgenerate true -1

6. Your computer is now CPU mining. It's going to use about 100% of the CPU on your computer, so it's best to run the wallet on a computer that is different from your mining rig.

7. Make note of the IP address of the computer your wallet is running on. From the Command Prompt: ipconfig

Wireless LAN adapter Wireless Network Connection 2:

   Connection-specific DNS Suffix  . : your.internet.provider
   IPv4 Address. . . . . . . . . . . : 192.168.1.3
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1


IP Address of the computer is 192.168.1.3

8. On your mining rig, point to 192.168.1.3:14022, username abc, password zzz

You are now solo mining! Depending on your mining program, you aren't going to see any activity until you find a block. But it is working. I have my wallet running on my Windows box, and my miner running on a Linux box. I pointed my linux miner to this and it worked.

There may be some other set of instructions out there that are better than this, but part of the fun for me was trying to figure out how to do it on my own from the bits and pieces I found on the internet.

Other Algos... In the digibyte.conf file, you should be able to change the algo= line to one of the other algorithms and mine, but I haven't tested that (yet).



Something I wrote a while, long while, back that might be worth adding to the collection (changing the coin specific options of course).  Wink
https://bitcointalksearch.org/topic/m.6562457

As far as transparency goes, I think that the writing is on the wall - has been from the beginning of legal tender - people want accountability, which is to say, traceable accounting. If I pay you with a check, the cancelled check is proof of having paid, for example. To make a long story very short, I think I can summarize my argument by saying that in order to compete for people's savings and investments long term, the digital currencies that survive will have to provide the same levels of transparency and privacy that have been demanded by savers and investors for centuries. There's no getting around that. Either you do it, or you stay very niche, very doge. It's an extremely important decision that will have to be made, or will be made for you, sooner or later, and the sooner the better. It's always best to be out in front of the curve, and the more you're out in front, the better.

Point 3 to this post: HAPPY NEW YEAR everyone! I know it's going to be great for all of us!
Jump to: