0.0.29 • Published 4 years ago

namebase-hsd v0.0.29

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

HSD

Build Status Coverage Status

HSD is an implementation of the Handshake Protocol.

Install

hsd requires Node.js v10 or higher

$ git clone git://github.com/handshake-org/hsd.git
$ cd hsd
$ npm install --production
$ ./bin/hsd

node-gyp is used to compile native code and requires Python 2.7. If your machine natively supports Python 3, configure npm using the command:

$ npm config set python /path/to/executable/python2.7

You can determine the native version of Python using:

$ python --version

See the node-gyp documentation for more information.

Documentation

Testnet

Testnet4 is running as of April 3rd, 2019.

Testnet4 seed nodes (pubkey@ip):

  • aoihqqagbhzz6wxg43itefqvmgda4uwtky362p22kbimcyg5fdp54@172.104.214.189
  • ajdzrpoxsusaw4ixq4ttibxxsuh5fkkduc5qszyboidif2z25i362@173.255.209.126
  • ajk57wutnhfdzvqwqrgab3wwh4wxoqgnkz4avbln54pgj5jwefcts@172.104.177.177
  • am2lsmbzzxncaptqjo22jay3mztfwl33bxhkp7icfx7kmi5rvjaic@139.162.183.168

Testnet4 public DNS servers:

  • 172.104.214.189 - Recursive Server 1.
  • 173.255.209.126 - Authoritative Server 1.
  • 172.104.177.177 - Recursive Server 2.
  • 139.162.183.168 - Authoritative Server 2.
  • 74.207.247.120 - Recursive Server 3 (hnsd nameserver)
  • 45.79.134.225 - Authoritative Server 3 (hnsd nameserver)

Example:

$ dig @172.104.214.189 google.com A +short
172.217.0.46
$ dig @173.255.209.126 com NS
...
;; AUTHORITY SECTION:
com.                    86400   IN      NS      a.gtld-servers.net.
com.                    86400   IN      NS      b.gtld-servers.net.
com.                    86400   IN      NS      c.gtld-servers.net.
...

Quickstart

Unbound support

HSD currently has a built-in recursive resolver written in javascript, however, for the best performance and best DNS conformance, HSD also includes native bindings to libunbound -- to make use of this, be sure to have unbound installed on your system before installing hsd.

Booting with a local recursive and authoritative nameserver

By default HSD will listen on an authoritative and recursive nameserver (ports 15359 and 15360 respectively). To configure this:

# Have the authoritative server listen on port 5300.
$ hsd --ns-port 5300

# Have the recursive server listen on port 53.
$ hsd --rs-host 0.0.0.0 --rs-port 53 # Warning: public!

Your localhost should now be diggable:

$ dig @127.0.0.1 www.ietf.org +dnssec
$ dig @127.0.0.1 -p 5300 org +dnssec

Accepting Inbound

To accept inbound connections, add the --listen flag.

$ hsd --listen --max-inbound=20

Mining

To mine with a CPU, HSD should be used in combination with hs-client.

# To boot and listen publicly on the HTTP server...
# Optionally pass in a custom coinbase address.
$ hsd --http-host '::' --api-key 'hunter2' \
  --coinbase-address 'ts1qsu62stru80svj5xk6mescy65v0lhg8xxtweqsr'

Once HSD is running, we can use hs-client to activate the miner using the setgenerate RPC.

$ hsd-rpc --http-host 'my-ip-address' \
  --api-key 'hunter2' setgenerate true 1

Airdrop & Faucet

Testnet3 now implements a decentralized airdrop & faucet for open source developers. See hs-airdrop for instructions on how to redeem coins.

Auctions

First we should look at the current status of a name we want.

$ hsd-rpc getnameinfo handshake

Once we know the name is available, we can send an "open transaction", this is necessary to start the bidding process. After an open transaction is mined, there is a short delay before bidding begins. This delay is necessary to ensure the auction's state is inserted into the urkel tree.

# Attempt to open bidding for `handshake`.
$ hsw-rpc sendopen handshake

Using getnameinfo we can check to see when bidding will begin. Once the auction enters the bidding state, we can send a bid, with a lockup-value to conceal our true bid.

# Send a bid of 5 coins, with a lockup value of 10 coins.
# These units are in HNS (1 HNS = 1,000,000 dollarydoos).
$ hsw-rpc sendbid handshake 5 10

After the appropriate amount of time has passed, (1 day in the case of testnet), we should reveal our bid.

# Reveal our bid for `handshake`.
$ hsw-rpc sendreveal handshake

We can continue monitoring the status, now with the wallet's version of getnameinfo:

$ hsw-rpc getnameinfo handshake
# To see other bids and reveals
$ hsw-rpc getauctioninfo handshake

If we end up losing, we can redeem our money from the covenant with $ hsw-rpc sendredeem handshake.

If we won, we can now register and update the name using sendupdate.

$ hsw-rpc sendupdate handshake \
  '{"ttl":172800,"ns":["ns1.example.com.@1.2.3.4"]}'

Note that the ns field's domain@ip format symbolizes glue.

Expiration on testnet is around 30 days, so be sure to send a renewal soon!

$ hsw-rpc sendrenewal handshake

RPC Calls

Several RPC calls have been exposed in addition to the standard bitcoind-style RPC.

Node Calls

All node calls should be made with $ hsd-rpc [call] [arguments...].

  • getnames - List all names (debugging).
  • getnameinfo [name] - Returns name and auction status.
  • getnameresource [name] - Returns parsed DNS-style resource.
  • getnameproof [name] - Returns a JSON-ified urkel proof of a name.
  • getnamebyhash [hex-hash] - Returns the name hash preimage.
  • sendrawclaim [base64-string] - Send a raw serialized claim.
  • grindname [size] - Grind a name which satisifies the rollout.
  • sendrawairdrop [base64-string] - Send a raw serialized airdrop proof.

Wallet Calls

All wallet calls should be made with $ hsw-rpc [call] [arguments...].

  • getbids [name] [own] - List own bids on a name.
  • getreveals [name] [own] - List own reveals on a name.
  • getnames - List all watched names and their statuses.
  • getnameinfo [name] - Returns name info, similar to the node call above.
  • getauctioninfo [name] - Returns auction info, along with all bids and reveals.
  • getnameresource [name] - Returns parsed DNS-style resource.
  • getnamebyhash [hex-hash] - Returns the name hash preimage.
  • createclaim [name] - Create a to-be-signed claim.
  • sendclaim [name] - Claim a name by publishing a DNSSEC ownership proof.
  • sendopen [name] - Open an auction.
  • sendbid [name] [bid-value] [lockup-value] - Bid on a name.
  • sendreveal [name] - Reveal bids for name.
  • sendredeem [name] - Redeem reveals in the case of an auction loss.
  • sendupdate [name] [json-data] - Register or update a name.
  • sendrenewal [name] - Renew a name.
  • sendtransfer [name] [address] - Transfer name to another address.
  • sendcancel [name] - Cancel an in-progress transfer.
  • sendfinalize [name] - Finalize a transfer.
  • sendrevoke [name] - Revoke a name.
  • importnonce [name] [address] [bid-value] - Deterministically regenerate a bid's nonce.

Claiming a name

If you own a name in the existing root zone or the Alexa top 100k, your name is waiting for you on the blockchain. You are able to claim it by publishing a DNSSEC ownership proof -- a cryptographic proof that you own the name on ICANN's system.

Your name must have a valid DNSSEC setup in order for the claim to be created. If you do not have DNSSEC set up, don't worry -- you can set it up after the handshake blockchain launches and proofs will still be accepted retroactively. Here's some useful guides for setting DNSSEC up on popular DNS services:

If you run your own nameserver, you're going to need some tools for managing keys and signing your zonefile. BIND has a number of command-line tools for accomplishing this:


First, we need to create a TXT record which we will sign in our zone (say we own example.com for instance):

$ hsw-rpc createclaim example
{
  "name": "example",
  "target": "example.com.",
  "value": 1133761643,
  "size": 3583,
  "fee": 17900,
  "address": "ts1qd6u7vhu084494kf9cejkp4qel69vsk82takamu",
  "txt": "hns-testnet:aakbvmygsp7rrhmsauhwlnwx6srd5m2v4m3p3eidadl5yn2f"
}

The txt field is what we need: it includes a commitment to a handshake address we want the name to be associated with, along with a fee that we're willing to pay the miner to mine our claim. This TXT record must be added to our name's zone file and signed:

...
example.com. 1800 IN TXT "hns-testnet:aakbvmygsp7rrhmsauhwlnwx6srd5m2v4m3p3eidadl5yn2f"
example.com. 1800 IN RRSIG TXT 5 2 1800 20190615140933 20180615131108 ...

The RR name of the TXT record (example.com. in this case) must be equal to the name shown in the target field output by createclaim (note: case insensitive). Note that DNSSEC ownership proofs are a stricter subset of DNSSEC proofs: your parent zones must operate through a series of typical DS->DNSKEY referrals. No CNAMEs or wildcards are allowed, and each label separation (.) must behave like a zone cut (with an appropriate child zone referral).

The ZSK which signs our TXT record must be signed by our zone's KSK. As per the typical DNSSEC setup, our zone's KSK must be committed as a DS record in the parent zone.

The final proof is an aggregation of all signed DNS referrals plus our signed TXT record (example here).

Once our proof is published on the DNS layer, we can use sendclaim to crawl the relevant zones and create the proof.

$ hsw-rpc sendclaim example

This will create and broadcast the proof to all of your peers, ultimately ending up in a miner's mempool. Your claim should be mined within 5-20 minutes. Once mined, you must wait several blocks before your claim is considered "mature".

Once the claim has reached maturity, you are able to bypass the auction process by calling sendupdate on your claimed name.

$ hsw-rpc sendupdate example \
  '{"ttl":3600,"canonical":"icanhazip.com."}'

Creating a proof by hand

If you already have DNSSEC setup, you can avoid publishing a TXT record publicly by creating the proof locally. This requires that you have direct access to your zone-signing keys. The private keys themselves must be stored in BIND's private key format and naming convention.

We use bns for this task, which includes a command-line tool for creating ownership proofs.

$ npm install bns
$ bns-prove -b -K /path/to/keys example.com. \
  'hns-testnet:aakbvmygsp7rrhmsauhwlnwx6srd5m2v4m3p3eidadl5yn2f'

The above will output a base64 string which can then be passed to the RPC:

$ hsd-rpc sendrawclaim 'base64-string'

Support

Join us on freenode in the #handshake channel.

Disclaimer

HSD does not guarantee you against theft or lost funds due to bugs, mishaps, or your own incompetence. You and you alone are responsible for securing your money.

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

MIT License.

Bcoin

HSD

See LICENSE for more info.

0.0.29

4 years ago

0.0.28

4 years ago

0.0.27

4 years ago

0.0.24

5 years ago

0.0.23

5 years ago

0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

0.0.0

5 years ago