How to build my own bitcoin system?

0

I want to know whether there exists any software that can let people create their own private personal Bitcoin, and mine their own Bitcoin.

Or any other software that can let people issue their own digital currency.

user2131116

Posted 2016-04-04T09:38:58.553

Reputation: 103

Question was closed 2016-04-10T17:17:09.633

4

related: Are there any resources for creating your own coin?

Murch 2016-04-04T11:29:48.137

Answers

2

Because Bitcoin is open source, the source code is the software for creating new crypto coins. Depending on what you want out of a new coin, and why you want it, the things you modify will be different. However, the simple recipe is this:

  1. Fork Bitcoin Core
  2. Change the hard-coded genesis block in the source code
  3. Change the port number that the protocol runs on
  4. Recompile
  5. Start mining, and convince others to join

There are other things you can change as well, such as hashing algorithm, block time, difficulty increase frequency, etc. It all depends on your goal.

Jestin

Posted 2016-04-04T09:38:58.553

Reputation: 8 339

For the sake of someone searching for this, it's at the top of chainparams.cpp. However, if you plan on creating your own blockchain and cryptocoin, you should probably be able to look it up yourself. It's the easiest task ahead of you, so if you need my help on this one, you may want to rethink your entire goal.Jestin 2017-02-10T22:56:19.033