How do I register a .bit domain name with Namecoin?

5

I have several namecoins and would like to register a name. That name could either be for TOR, DNS, or any other purpose.

What are the steps needed to spend these coins?

goodguys_activate

Posted 2012-12-09T11:20:22.447

Reputation: 11 898

Answers

5

The algorithm of registering .bit domain is described, for example, on dot-bit wiki.

In short:

  1. Create new domain name with name_new command: ./namecoind name_new d/<name>

  2. Wait 12 or more blocks

  3. Actually register the domain with name_firstupdate, where <rand> is the second (shorter) hexadecimal string returned by name_new, and <json-value> is the domain configuration (similar to DNS record):

./namecoind name_firstupdate d/<name> <rand> '<json-value>'

The basic json-string, mapping the domain to the some IP looks like that:

'{"ip":"1.2.3.4", "tor":"123456.onion"}'

More on domain configuration

aland

Posted 2012-12-09T11:20:22.447

Reputation: 1 338

I see... I didn't think this was possible when I typed C:\namecoind_v350_win32&gt;namecoind.exe /? on Windows. I'll give it a shot now.goodguys_activate 2012-12-09T15:30:45.363