Go to file
2017-04-28 21:09:42 -04:00
addrmgr wire: Treat NetAddress more like immutable 2017-03-24 17:07:28 -04:00
blockchain multi: Implement stake difficulty change and vote. 2017-04-26 13:00:28 -05:00
chaincfg chaincfg: Add agenda for LN support vote. 2017-04-26 13:17:58 -05:00
cmd Bump for v1.0.1 2017-04-28 11:22:19 -05:00
connmgr wire: Treat NetAddress more like immutable 2017-03-24 17:07:28 -04:00
database Remove variables for testnet v1. 2017-03-16 20:19:07 -04:00
dcrec gometalinter: use --vendor to skip ./vendor/ 2017-03-18 14:22:53 -04:00
dcrjson multi: Rename vote choice IsIgnore to IsAbstain. 2017-04-24 16:17:27 -05:00
docs connmgr: Refactor connection management into pkg 2017-03-21 19:42:19 -05:00
limits blockchain: Rework to use new db interface. 2016-08-18 15:42:18 -04:00
mempool mempool: Remove the hardcoded minimum ticket fee. 2017-04-24 16:49:37 -05:00
mining multi: Upstream chainhash abstraction sync 2016-11-16 12:48:40 -06:00
peer peer: bump max protocol to wire.MaxBlockSizeVersion 2017-04-28 10:33:33 -05:00
release Add example service files. 2017-03-23 02:07:08 -05:00
txscript Preallocate the exact number of bytes if known. 2017-03-20 21:46:33 -05:00
wire wire: Cleanup blockheader.go. 2017-04-28 10:34:11 -05:00
.gitignore Add new tool, promptsecret (#649) 2017-03-31 14:00:18 -04:00
.travis.yml TravisCI: Remove a couple of linters. 2017-03-16 14:07:53 -05:00
blocklogger.go fix singular case for stake transactions (#545) 2017-01-16 12:35:02 -06:00
blockmanager.go multi: Implement stake difficulty change and vote. 2017-04-26 13:00:28 -05:00
CHANGES Apply various upstream comment fixes. 2016-05-27 00:35:06 -05:00
config.go Add warning on startup about old testnet data. 2017-03-22 13:39:10 -04:00
cpuminer.go gometalinter: use --vendor to skip ./vendor/ 2017-03-18 14:22:53 -04:00
dcrd.go Display Go version next to application versions. (#616) 2017-03-14 09:22:40 -04:00
doc.go blockchain: Rework to use new db interface. 2016-08-18 15:42:18 -04:00
glide.lock dcrjson: Add getvotechoices/setvotechoice types. 2017-04-11 12:04:59 -04:00
glide.yaml glide: sync (#650) 2017-03-31 14:34:37 -04:00
goclean.sh gometalinter: use --vendor to skip ./vendor/ 2017-03-18 14:22:53 -04:00
ipc.go Add pipes for parent process IPC. (#311) 2016-08-31 10:45:16 -04:00
LICENSE license: add title 2016-11-18 12:36:40 -06:00
log.go connmgr: Refactor connection management into pkg 2017-03-21 19:42:19 -05:00
mining_test.go Merge in btcd commit 'e15d3008cfd59756db9570da9e47da6831313196' 2016-09-23 11:17:45 -04:00
mining.go multi: Implement stake difficulty change and vote. 2017-04-26 13:00:28 -05:00
miningerror.go blockchain: Rework to use new db interface. 2016-08-18 15:42:18 -04:00
params.go Remove variables for testnet v1. 2017-03-16 20:19:07 -04:00
README.md Fixed broken link to documentation 2017-04-27 19:46:01 -05:00
rpcserver.go rpcserver: Disable getblocktemplate. 2017-04-28 11:14:34 -05:00
rpcserverhelp_test.go blockchain: Rework to use new db interface. 2016-08-18 15:42:18 -04:00
rpcserverhelp.go multi: Rename vote choice IsIgnore to IsAbstain. 2017-04-24 16:17:27 -05:00
rpcwebsocket.go rpcserver: always reply with an RPC error. 2017-04-04 07:47:29 -05:00
sample-dcrd.conf indexers: Implement optional tx/address indexes. 2016-08-18 15:42:18 -04:00
server.go Log the actual error as well. (#676) 2017-04-28 21:09:42 -04:00
service_windows.go dcrd: Simplify shutdown signal handling logic sync. 2016-11-18 12:06:55 -06:00
signal.go dcrd: Simplify shutdown signal handling logic sync. 2016-11-18 12:06:55 -06:00
signalsigterm.go Add pipes for parent process IPC. (#311) 2016-08-31 10:45:16 -04:00
upnp.go travis: enable gometalinter (#603) 2017-03-08 15:44:15 -05:00
version.go Bump for v1.0.1 2017-04-28 11:22:19 -05:00

dcrd

[Build Status] (https://travis-ci.org/decred/dcrd) ![ISC License] (http://img.shields.io/badge/license-ISC-blue.svg)

dcrd is a Decred full node implementation written in Go (golang).

This acts as a chain daemon for the Decred cryptocurrency. dcrd maintains the entire past transactional ledger of Decred and allows relaying of transactions to other Decred nodes across the world. To read more about Decred please see the project documentation.

Note: To send or receive funds and join Proof-of-Stake mining, you will also need dcrwallet.

This project is currently under active development and is in a Beta state. It is extremely stable and has been in production use since February 2016.

It is forked from btcd which is a bitcoin full node implementation written in Go. btcd is a ongoing project under active development. Because dcrd is constantly synced with btcd codebase, it will get the benefit of btcd's ongoing upgrades to peer and connection handling, database optimization and other blockchain related technology improvements.

Requirements

Go 1.7 or newer.

Getting Started

  • dcrd (and utilities) will now be installed in either $GOROOT/bin or $GOPATH/bin depending on your configuration. If you did not already add the bin directory to your system path during Go installation, we recommend you do so now.

Updating

Windows

Install a newer MSI

Linux/BSD/MacOSX/POSIX - Build from Source

  • Glide

    Glide is used to manage project dependencies and provide reproducible builds. To install:

    go get -u github.com/Masterminds/glide

Unfortunately, the use of glide prevents a handy tool such as go get from automatically downloading, building, and installing the source in a single command. Instead, the latest project and dependency sources must be first obtained manually with git and glide, and then go is used to build and install the project.

Getting the source:

For a first time installation, the project and dependency sources can be obtained manually with git and glide (create directories as needed):

git clone https://github.com/decred/dcrd $GOPATH/src/github.com/decred/dcrd
cd $GOPATH/src/github.com/decred/dcrd
glide install
go install $(glide nv)

To update an existing source tree, pull the latest changes and install the matching dependencies:

cd $GOPATH/src/github.com/decred/dcrd
git pull
glide install
go install $(glide nv)

For more information about decred and how to set up your software please go to our docs page at docs.decred.org.

Contact

If you have any further questions you can find us at:

  • irc.freenode.net (channel #decred)
  • webchat
  • forum.decred.org
  • decred.slack.com

Issue Tracker

The integrated github issue tracker is used for this project.

Documentation

The documentation is a work-in-progress. It is located in the docs folder.

License

dcrd is licensed under the copyfree ISC License.