How do I create a Namecoin address?

5

3

My mining pool has merged with Namecoin, and I need a Namecoin address. How do I create one ? Do I need to install another client ?

Manu

Posted 2012-08-23T13:06:33.090

Reputation: 163

Answers

3

You can either install a client, or use some Namecoin-Bitcoin exchange (like BTC-E) to obtain an address. It`s generally the same as getting a Bitcoin address really, only a bit less popular.

ThePiachu

Posted 2012-08-23T13:06:33.090

Reputation: 41 594

where can I get namecoin client?user4951 2013-04-14T15:38:43.603

I think I had read that BitParking deposit addresses were single-use, and not for repeated mining payouts.Stephen Gornick 2012-08-23T13:57:30.387

@StephenGornick I'm not really sure if it's a rule or a suggestion. I guess I'll change my answer regardless. Thanks for pointing it out, I don`t really use the service too much.ThePiachu 2012-08-23T17:22:31.610

1

If you know Python, then there is a library called Coinkit that you can use to create Namecoin addresses:

https://github.com/halfmoonlabs/coinkit

It has step by step instructions as well, but you'll do something like

pip install coinkit

once installed, open python and:

from coinkit.keypair import NamecoinKeypair

create a new private-key and NMC-address pair:

keypair = NamecoinKeypair()

You can get the private key by:

keypair.private_key()

And the corresponding namecoin address as:

keypair.address()

Muneeb Ali

Posted 2012-08-23T13:06:33.090

Reputation: 121