Bitcoin Forum
June 17, 2024, 06:19:08 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: How to create new genesis on bitcoin?  (Read 162 times)
KITTYCOIN on Waves (OP)
Jr. Member
*
Offline Offline

Activity: 42
Merit: 2


View Profile WWW
January 19, 2018, 09:14:49 AM
 #1

Hi!

I need to make clone of Bitcoin Core whith new (another) genenis-block, blockchain and new name ("Mynewcoin" or something else).

How can I do it? I need step-by-step manual, but did'nt find it Sad

Can u help me please?

Tnx!

🐱🐱 KITTYCOIN: https://fond.site/kittycoin 🐱🐱
 
Coбиpaeм кoллeктив! https://bitcointalk.org/index.php?topic=2855168.0 (тoпик-caмoпpeзeнтaция)
KITTYCOIN on Waves (OP)
Jr. Member
*
Offline Offline

Activity: 42
Merit: 2


View Profile WWW
January 19, 2018, 10:02:30 AM
 #2

Found this one:

https://stackoverflow.com/posts/22406608/revisions

But hav'nt skill to use it Sad need more simply

🐱🐱 KITTYCOIN: https://fond.site/kittycoin 🐱🐱
 
Coбиpaeм кoллeктив! https://bitcointalk.org/index.php?topic=2855168.0 (тoпик-caмoпpeзeнтaция)
tententen
Newbie
*
Offline Offline

Activity: 109
Merit: 0


View Profile
January 20, 2018, 02:30:11 AM
 #3

Found this one:

https://stackoverflow.com/posts/22406608/revisions

But hav'nt skill to use it Sad need more simply

^true this.

Dont become another Mark Karpeles, asking noob questions and then launching projects a few hours later.  Very few people have the expertise to create cryptos well, spend more time learning before you put other people's funds at risk, please.
drabe
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
January 20, 2018, 06:01:38 AM
 #4

Hi!

I need to make clone of Bitcoin Core whith new (another) genenis-block, blockchain and new name ("Mynewcoin" or something else).

How can I do it? I need step-by-step manual, but did'nt find it Sad

Can u help me please?

Tnx!
Make a beginning square. A few people stall out there, it's extremely simple:

discover LoadBlockIndex() work, inside, change:

summarize (pszTimestamp) to any current news stage.

get the most recent Unix time (complete a google), and put in block.nTime.

set any nNonce (doesn't generally make a difference), you can change the time/nonce for testnet as well, on the off chance that you need to utilize it.

After you are done, spare it. Presently the beginning square won't coordinate the hash check and Merkle root check, it doesn't make a difference.

The first occasion when you run the arranged code (daemon or qt), it will state "attestation fizzled". Simply leave the program, go to config dir (under AppData/Roaming), open the debug.log, get the hash after "block.GetHash() = ", reorder it to the beginning of main.cpp, hashGenesisBlock. Likewise get the Merkle root in a similar log record, glue it to the ... position in the accompanying code, in LoadBlockIndex()

assert(block.hashMerkleRoot == uint256("0x..."));
recompile the code, and genesis block created!

BTW, don't forget to change "txNew.vout[0].nValue = " to the coin per block you defined, it doesn't matter to leave as 50, just be consistent with your coin per block (do this before adjust the hash and m-root, otherwise they will be changed again).
KITTYCOIN on Waves (OP)
Jr. Member
*
Offline Offline

Activity: 42
Merit: 2


View Profile WWW
January 20, 2018, 09:56:31 PM
 #5


Make a beginning square. A few people stall out there, it's extremely simple:

....

BTW, don't forget to change "txNew.vout[0].nValue = " to the coin per block you defined, it doesn't matter to leave as 50, just be consistent with your coin per block (do this before adjust the hash and m-root, otherwise they will be changed again).

OK, I already see that on: https://bitcoin.stackexchange.com/posts/21328/revisions

but I need more detalized.

BTW, it's on Litecoin, nor Bitcoin


🐱🐱 KITTYCOIN: https://fond.site/kittycoin 🐱🐱
 
Coбиpaeм кoллeктив! https://bitcointalk.org/index.php?topic=2855168.0 (тoпик-caмoпpeзeнтaция)
KITTYCOIN on Waves (OP)
Jr. Member
*
Offline Offline

Activity: 42
Merit: 2


View Profile WWW
January 20, 2018, 10:23:28 PM
 #6

Dont become another Mark Karpeles, asking noob questions and then launching projects a few hours later.  Very few people have the expertise to create cryptos well, spend more time learning before you put other people's funds at risk, please.

Reasonably. But this guy was too irresponsible. I'm not like that Smiley

🐱🐱 KITTYCOIN: https://fond.site/kittycoin 🐱🐱
 
Coбиpaeм кoллeктив! https://bitcointalk.org/index.php?topic=2855168.0 (тoпик-caмoпpeзeнтaция)
alexeyneu
Member
**
Offline Offline

Activity: 329
Merit: 30


View Profile
January 24, 2018, 06:21:07 PM
 #7

Also this stuff can be mined ,so you'll have correct nonce. Not sure for now that all is awesome, but i'd mine this block(header?) №0 after a hour and some fixes to the app.
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 24, 2018, 08:16:37 PM
 #8

Not sure how much you actually looked - a simple google search returned this:
https://bitcointalk.org/index.php?topic=225690.0
From right here on Bitcointalk. If you have more specific questions you can post them here.
alexeyneu
Member
**
Offline Offline

Activity: 329
Merit: 30


View Profile
January 24, 2018, 09:40:52 PM
 #9

Not sure how much you actually looked - a simple google search returned this:
https://bitcointalk.org/index.php?topic=225690.0
From right here on Bitcointalk. If you have more specific questions you can post them here.
it's not about nowadays bitcoin.
http://practicecoin.com/index.php/2017/04/19/genesis-block/
Anti-Cen
Member
**
Offline Offline

Activity: 210
Merit: 26

High fees = low BTC price


View Profile
January 24, 2018, 11:20:09 PM
 #10

Dont become another Mark Karpeles, asking noob questions and then launching projects a few hours later.  Very few people have the expertise to create cryptos well, spend more time learning before you put other people's funds at risk, please.

They can steel the code, patch it up but Bitcoin code won't scale because unlike new systems it is data replication
and in the case of Bitcoin and parasite miners we have 20,000 full nodes just doing seven transactions per
second and the best they will speed it up to is fifteen TPS.

Distributed Network Architecture (DNA) is nothing new but they forgot to use it with Bitcoin and now they are
saying that off-block is fantastic, it's not

Mining is CPU-wars and Intel, AMD like it nearly as much as big oil likes miners wasting electricity. Is this what mankind has come too.
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!