AlexMerced
|
|
April 21, 2013, 11:26:51 PM |
|
Ill donate what I can and encourage others to donate for sure, he'll I'll make a video for the sole purpose of telling people to give you coinage for this work.
|
|
|
|
pixel (OP)
Member
Offline
Activity: 98
Merit: 10
x1 7970 | Aprox. 587 kh/s
|
|
April 22, 2013, 12:34:39 AM |
|
I'll donate!
|
Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
|
|
|
Walter Rothbard
|
|
April 22, 2013, 02:29:41 AM |
|
How is the guide comming? :3
Ditto double ditto Here it is: 1) read bitcoin wiki 2) install compiler 3) start notepad 4) have a ball 5) compile newcoin Ooh, I don't like the notepad step. Are there any alternatives?
|
|
|
|
|
lightenup
Newbie
Offline
Activity: 58
Merit: 0
|
|
April 22, 2013, 08:20:13 AM |
|
|
|
|
|
Cheshyr
|
|
April 22, 2013, 02:23:46 PM |
|
Honestly, the diff from github is pretty damn useful.
|
|
|
|
pixel (OP)
Member
Offline
Activity: 98
Merit: 10
x1 7970 | Aprox. 587 kh/s
|
|
April 23, 2013, 12:56:40 AM |
|
Honestly, the diff from github is pretty damn useful. Yes, thank you for this. It is very helpful!
|
Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
|
|
|
AlexMerced
|
|
April 23, 2013, 12:59:34 AM |
|
Is the smallcoin diff from github linked above will that be useful for editing the Windows client cause I remember reading that code is for the unix client.
|
|
|
|
Stampbit
|
|
April 23, 2013, 01:14:08 AM |
|
Update:The guide will be coming in the next few weeks, because I'll be pretty busy. All I need to do is figure out how to compile the QT client for windows, and create a program to find the genesis block. Else I could include the nifty python script which I believe was written by the creators of freicoin. I've considered making people pay for the guide, but instead I'll just be encouraging donations from the ones who gain some knowledge from it. -- Garrett Looking forward to it, i think this would help alot of people better understand how bitcoin works.
|
|
|
|
alex_fun
|
|
April 26, 2013, 02:22:26 AM |
|
BTC itself seems simply yet coding is a bit complex Anyone plan to release genesis block values calc for scrypt?
|
|
|
|
|
AlexMerced
|
|
April 26, 2013, 05:09:35 PM |
|
BTC itself seems simply yet coding is a bit complex Anyone plan to release genesis block values calc for scrypt? Yes, I need this
|
|
|
|
Nymph
Newbie
Offline
Activity: 18
Merit: 0
|
|
April 30, 2013, 05:43:56 AM |
|
Update:The guide will be coming in the next few weeks, because I'll be pretty busy. All I need to do is figure out how to compile the QT client for windows, and create a program to find the genesis block. Else I could include the nifty python script which I believe was written by the creators of freicoin. I've considered making people pay for the guide, but instead I'll just be encouraging donations from the ones who gain some knowledge from it. -- Garrett i too would donate!
|
|
|
|
achillez
|
|
May 01, 2013, 02:36:12 AM |
|
i'm interested
|
|
|
|
pixel (OP)
Member
Offline
Activity: 98
Merit: 10
x1 7970 | Aprox. 587 kh/s
|
|
May 01, 2013, 03:51:39 AM |
|
@Garr225 Whats your status?
|
Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
|
|
|
js2082
Member
Offline
Activity: 70
Merit: 10
|
|
May 01, 2013, 04:04:50 AM |
|
I saw multiple people ask how to generate genesis block. Actually it is very easy, just go to main.cpp, change the timestamp phase, unix time stamp etc, compile and run. Now the program will tell you assertion failed. Go to your coin folder under appdata, check the debug.log, it will tell you the genesis block hash. Now go back to the main.cpp, update the hash at the beginning of the program (I think it called hashGenesisBlock), recompile, and you are done.
You can get the full info on the genesis block by looking at the debug log, after a successful run.
I think we could extract all the configarable parameters to a file, and the rest code should be pretty generic code, and anyone can just enter the params and create a new coin. If I have time later, I can do that work, but I am working on my JunkCoin now:-)
|
|
|
|
Garr255
Legendary
Offline
Activity: 938
Merit: 1000
What's a GPU?
|
|
May 01, 2013, 04:40:59 AM |
|
Update:The guide will be coming in the next few weeks, because I'll be pretty busy. All I need to do is figure out how to compile the QT client for windows, and create a program to find the genesis block. Else I could include the nifty python script which I believe was written by the creators of freicoin. I've considered making people pay for the guide, but instead I'll just be encouraging donations from the ones who gain some knowledge from it. -- Garrett @Garr225 Whats your status? I'm super busy with school and other projects. To those who said they'd like to donate, thank you! I'll have it all ready sooner than later. Best, Garrett
|
“First they ignore you, then they laugh at you, then they fight you, then you win.” -- Mahatma Gandhi
Average time between signing on to bitcointalk: Two weeks. Please don't expect responses any faster than that!
|
|
|
achillez
|
|
May 01, 2013, 03:13:41 PM |
|
I successfully generated the genesisBlock and MerkleRoot, now I'm trying to figure out how to start the block chain so my clients can connect to it. Any suggestions on how to do this? do I run the daemon in parallel with the client?
|
|
|
|
AlexMerced
|
|
May 01, 2013, 05:22:12 PM |
|
I successfully generated the genesisBlock and MerkleRoot, now I'm trying to figure out how to start the block chain so my clients can connect to it. Any suggestions on how to do this? do I run the daemon in parallel with the client?
How did you create the genesis block and Merle root?
|
|
|
|
js2082
Member
Offline
Activity: 70
Merit: 10
|
|
May 01, 2013, 07:07:31 PM |
|
achillez: just start one (daemon or qt) in server mode, and start another one to connect to it. Once connected, you can start mining. It's really simple, but took me a day to figure it out.
Alexmerced: you get hash and merle root from the debug log. See my explanation in the previous message.
|
|
|
|
|