Bitcoin Forum
May 04, 2024, 02:30:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 »  All
  Print  
Author Topic: How do you create an altcoin?  (Read 21825 times)
bitcool
Legendary
*
Offline Offline

Activity: 1441
Merit: 1000

Live and enjoy experiments


View Profile
April 13, 2013, 11:19:37 PM
 #81

Make a noob_x_coin DIY guide, and sell it for btc/ltc. I am sure there are people who are interested.
1714789811
Hero Member
*
Offline Offline

Posts: 1714789811

View Profile Personal Message (Offline)

Ignore
1714789811
Reply with quote  #2

1714789811
Report to moderator
1714789811
Hero Member
*
Offline Offline

Posts: 1714789811

View Profile Personal Message (Offline)

Ignore
1714789811
Reply with quote  #2

1714789811
Report to moderator
1714789811
Hero Member
*
Offline Offline

Posts: 1714789811

View Profile Personal Message (Offline)

Ignore
1714789811
Reply with quote  #2

1714789811
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714789811
Hero Member
*
Offline Offline

Posts: 1714789811

View Profile Personal Message (Offline)

Ignore
1714789811
Reply with quote  #2

1714789811
Report to moderator
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:22:56 PM
 #82

Make a noob_x_coin DIY guide, and sell it for btc/ltc. I am sure there are people who are interested.
I'll put it up here for free Cheesy

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
wmikrut
Hero Member
*****
Offline Offline

Activity: 631
Merit: 501



View Profile WWW
April 13, 2013, 11:24:57 PM
 #83

It would be cool to get some altcoin devs in here, were are all of them? :3

Busy with their coins!   Grin


I will NEVER ask for any kind of funds up front in a buy/sale of anything on bitcointalk.

BM-2cTFihJKmSwusMAoYuUHPvpx56Jozv64KK
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:32:39 PM
 #84

Ok, I belive im done editing the variables, I left some alone because I didn't know what they did but I edited the ones that I understood and wanted to. Onto the next step?

main.h: http://codebin.org/view/86b9cbe6
main.cpp: http://codebin.org/view/7ff16959

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:33:44 PM
 #85

Quote
Update the code for the genesis block

How do we do this?

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
wmikrut
Hero Member
*****
Offline Offline

Activity: 631
Merit: 501



View Profile WWW
April 13, 2013, 11:38:58 PM
 #86

The genesis block is created from this piece of code

Quote
       const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks" //<- change this to something else;
        CTransaction txNew;
        txNew.vin.resize(1);
        txNew.vout.resize(1);
        txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
        txNew.vout[0].nValue = 50 * COIN //your premine basically;
        txNew.vout[0].scriptPubKey = CScript() << ParseHex("<public key from an ECDSA keypair>") << OP_CHECKSIG;
        CBlock block;
        block.vtx.push_back(txNew);
        block.hashPrevBlock = 0;
        block.hashMerkleRoot = block.BuildMerkleTree();

Now you mine that.

This is the code for the genesis block.
I am very unclear here... if this is a part of the code base, or a part of 5th's Genesis Block finder.

I will NEVER ask for any kind of funds up front in a buy/sale of anything on bitcointalk.

BM-2cTFihJKmSwusMAoYuUHPvpx56Jozv64KK
wmikrut
Hero Member
*****
Offline Offline

Activity: 631
Merit: 501



View Profile WWW
April 13, 2013, 11:40:44 PM
 #87

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.

I will NEVER ask for any kind of funds up front in a buy/sale of anything on bitcointalk.

BM-2cTFihJKmSwusMAoYuUHPvpx56Jozv64KK
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:43:20 PM
 #88

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.
What is the Merkle root?

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
Remember remember the 5th of November
Legendary
*
Offline Offline

Activity: 1862
Merit: 1011

Reverse engineer from time to time


View Profile
April 13, 2013, 11:44:25 PM
 #89

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.
Truth be told I dig deep and deep in Bitcoin's source and it does some kind of serialization of objects and stuff and finally produces a merkle root hash..seriously ridiculously hard to even figure out what the hell happens.

BTC:1AiCRMxgf1ptVQwx6hDuKMu4f7F27QmJC2
uMMcQxCWELNzkt
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
April 13, 2013, 11:46:03 PM
 #90

I would like to create a coin :O, one that is not GPU dependent. I have been developing a FPS on and off the last year so perhaps I could create a video game and you mine coins in game? I actually also like the idea of creating a coin that some how rewards ethical work. Can anyone point me to a tutorial, preferably noob proof.
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:46:50 PM
 #91

I would like to create a coin :O, one that is not GPU dependent. I have been developing a FPS on and off the last year so perhaps I could create a video game and you mine coins in game? I actually also like the idea of creating a coin that some how rewards ethical work. Can anyone point me to a tutorial, preferably noob proof.
There are no tutorials, thats why this thread was created

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
Byte-Gox
Member
**
Offline Offline

Activity: 70
Merit: 10



View Profile
April 13, 2013, 11:47:35 PM
 #92

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.
Truth be told I dig deep and deep in Bitcoin's source and it does some kind of serialization of objects and stuff and finally produces a merkle root hash..seriously ridiculously hard to even figure out what the hell happens.

Your post count is 666 and you mentioned hell on your 666 post. :|
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:48:08 PM
 #93

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.
Truth be told I dig deep and deep in Bitcoin's source and it does some kind of serialization of objects and stuff and finally produces a merkle root hash..seriously ridiculously hard to even figure out what the hell happens.

Your post count is 666 and you mentioned hell on your 666 post. :|
OMG! I was just thinking this Cheesy Cheesy Cheesy

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
wmikrut
Hero Member
*****
Offline Offline

Activity: 631
Merit: 501



View Profile WWW
April 13, 2013, 11:48:29 PM
 #94

Best I can find:

Merkle root
Every transaction has a hash associated with it. In a block, all of the transaction hashes in the block are themselves hashed (sometimes several times -- the exact process is complex), and the result is the Merkle root. In other words, the Merkle root is the hash of all the hashes of all the transactions in the block. The Merkle root is included in the block header. With this scheme, it is possible to securely verify that a transaction has been accepted by the network (and get the number of confirmations) by downloading just the tiny block headers and Merkle tree -- downloading the entire block chain is unnecessary. This feature is currently not used in Bitcoin, but it will be in the future.

https://en.bitcoin.it/wiki/Vocabulary

However... it's still nebulous as to 'how' it's initially created.

I will NEVER ask for any kind of funds up front in a buy/sale of anything on bitcointalk.

BM-2cTFihJKmSwusMAoYuUHPvpx56Jozv64KK
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:49:13 PM
 #95

Have we come to the consensus that no one in this thread (currently) knows how to start going about creating the genesis block?

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
jackjack
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
April 13, 2013, 11:51:09 PM
 #96

I know there's an old post in this forum that explains clearly how to make that genesis block

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:54:17 PM
 #97

I know there's an old post in this forum that explains clearly how to make that genesis block
And the hunt begins

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
chris200x9
Legendary
*
Offline Offline

Activity: 1316
Merit: 1011


View Profile
April 13, 2013, 11:55:51 PM
 #98

interesting thread, thanks!
pixel (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


x1 7970 | Aprox. 587 kh/s


View Profile
April 13, 2013, 11:57:04 PM
 #99

interesting thread, thanks!
Thank you for your interest

Currently Mining: Litecoin, Xencoin, and Worldcoin (Just because its fun!, don't yell at me ;_;)
Remember remember the 5th of November
Legendary
*
Offline Offline

Activity: 1862
Merit: 1011

Reverse engineer from time to time


View Profile
April 13, 2013, 11:57:21 PM
 #100

In addition 5th said you need a valid Merkle root... that the one in his code was for illustration.
Someone with experience will need to chime in on that one.
Truth be told I dig deep and deep in Bitcoin's source and it does some kind of serialization of objects and stuff and finally produces a merkle root hash..seriously ridiculously hard to even figure out what the hell happens.

Your post count is 666 and you mentioned hell on your 666 post. :|
OMG! I was just thinking this Cheesy Cheesy Cheesy
LOL, I didn't even notice.

BTC:1AiCRMxgf1ptVQwx6hDuKMu4f7F27QmJC2
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 »  All
  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!