33
26
Is there any step-by-step tutorial about how to build own cryptocurrency based on Bitcoin code?
33
26
Is there any step-by-step tutorial about how to build own cryptocurrency based on Bitcoin code?
20
To start a new chain, use a genesis generator, apply the new genesis to the source, and remove the checkpoints.
If you want to apply new/different rules, be prepared for a difficult task. Changing even the slightest protocol rule will most likely affect all other rules because of the complexity of PoW.
If the only thing you want to alter is the maximum coins, this should be relatively easy to alter in the source.
what are the checkpoints? why should you remove them? – smatthewenglish – 2017-05-06T18:30:22.220
Checkpoints are old blocks hardcoded into the source.
As you want to start a new chain, using a checkpoint from Bitcoin, would prevent to start from scratch. See:
https://bitcoin.stackexchange.com/questions/1797/what-are-checkpoints
You can find a guide to create your own Genesis block here. https://medium.com/@dophuoc/how-to-mine-a-genesis-block-for-your-bitcoin-fork-471b1fb47efb
6
There is a Complete Guide on How to Create a New Alt Coin on Bitcoin Talk.
It is based on Litecoin, not BitCoin. – Kai Wang – 2019-11-07T22:08:06.590
This one is Bitcoin Core: https://bitcointalk.org/index.php?topic=3345808.msg35016844#msg35016844
Just found a later post: https://bitcointalk.org/index.php?topic=5134256.0
3
There are some tutorials out there, check out:
https://bitcointalk.org/index.php?topic=225690.0
If that one is not sufficient let me know, and maybe I'll write one up.
There are also a lot of coins on github that you could just fork, create your own genesis block, modify parameters (coins per block, max coins, etc) and start mining.
One example is:
https://github.com/0xfff/VanCoin
1imho it's insufficient- if you want to write one I'd be the first to read it – smatthewenglish – 2017-05-06T18:30:50.330
Please make one tutorial. Most out there are old and does not work at all, and all occurs error or even does not desctibe what they uses. I am using Windows 10 laptop. – creator – 2018-01-25T09:11:01.077
3
Here is a guide: How to Fork Bitcoin (create your own chain).
I really think Bitcoin as a concept is unique and powerful, and the project is well maintained by very talented developers, so I wanted to write this not just to help make it easy to clone, but to help increase understanding of the concepts and how to fully utilize them in other projects. I would love comments if you think I can improve it in any way. It covers the following:
2Fork or totally new chain? – None – 2013-12-24T07:23:41.393
1I want new chain, start mining from scratch and different rules (I want more than 21.000.000 coins) – Michal – 2013-12-24T07:24:52.790