dcrd/dcrjson
cjepson cd8ea2e309 Add the new RPC function existsmempooltxs
A new RPC function has been added to the daemon to quickly check for
the existence of transactions in the mempool. It handles raw encoded
hex containing transaction hashes and outputs a raw encoded hex of
bit flags. This makes the output size as small as possible while
speeding up the JSON encoding/decoding of the data.
2016-03-02 11:37:35 -05:00
..
btcdextcmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
btcdextcmds.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
btcwalletextcmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
btcwalletextcmds.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrcmds_test.go Add handling of modified getrawmempool RPC call and existslivetickets 2016-02-23 12:29:02 -05:00
chainsvrcmds.go Fix a copy-paste error in chainsvrcmds.go 2016-02-26 17:50:48 -05:00
chainsvrresults_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrresults.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrwscmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrwscmds.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrwsntfns_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrwsntfns.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chainsvrwsresults.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
cmdinfo_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
cmdinfo.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
cmdparse_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
cmdparse.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
CONTRIBUTORS Initial Decred Commit. 2016-02-07 14:00:12 -05:00
dcrdextcmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
dcrdextcmds.go Add the new RPC function existsmempooltxs 2016-03-02 11:37:35 -05:00
dcrdextresults.go Remove rpc cmd Results that only have 1 field 2016-02-17 16:05:28 -06:00
dcrwalletextcmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
dcrwalletextcmds.go Add getticketsvotebits batched command for wallet RPC 2016-03-01 13:08:08 -05:00
dcrwalletextresults.go Add getticketsvotebits batched command for wallet RPC 2016-03-01 13:08:08 -05:00
dcrwalletextwsntfns_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
dcrwalletextwsntfns.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
doc.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
error_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
error.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
example_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
export_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
help_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
help.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
helpers_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
helpers.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
jsonerr.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
jsonrpc_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
jsonrpc.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
jsonrpcerr.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
README.md Initial Decred Commit. 2016-02-07 14:00:12 -05:00
register_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
register.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
walletsvrcmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
walletsvrcmds.go Add GetWalletFeeCmd to dcrjson cmd/results 2016-02-11 16:24:04 -05:00
walletsvrresults.go btcjson: Add spendable to listunspent result. 2016-02-29 12:51:36 -05:00
walletsvrwscmds_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
walletsvrwscmds.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
walletsvrwsntfns_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
walletsvrwsntfns.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00

dcrjson

![ISC License] (http://img.shields.io/badge/license-ISC-blue.svg)

Package btcjson implements concrete types for marshalling to and from the bitcoin JSON-RPC API. A comprehensive suite of tests is provided to ensure proper functionality.

Although this package was primarily written for the decred, it has intentionally been designed so it can be used as a standalone package for any projects needing to marshal to and from bitcoin JSON-RPC requests and responses.

Note that although it's possible to use this package directly to implement an RPC client, it is not recommended since it is only intended as an infrastructure package. Instead, RPC clients should use the btcrpcclient package which provides a full blown RPC client with many features such as automatic connection management, websocket support, automatic notification re-registration on reconnect, and conversion from the raw underlying RPC types (strings, floats, ints, etc) to higher-level types with many nice and useful properties.

Documentation

[GoDoc] (http://godoc.org/github.com/decred/dcrd/btcjson)

Full go doc style documentation for the project can be viewed online without installing this package by using the GoDoc site here.

You can also view the documentation locally once the package is installed with the godoc tool by running godoc -http=":6060" and pointing your browser to http://localhost:6060/pkg/github.com/decred/dcrd/btcjson

Installation

$ go get github.com/decred/dcrd/btcjson

Examples

GPG Verification Key

All official release tags are signed by Conformal so users can ensure the code has not been tampered with and is coming from the decred developers. To verify the signature perform the following:

  • Download the public key from the Conformal website at https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt

  • Import the public key into your GPG keyring:

    gpg --import GIT-GPG-KEY-conformal.txt
    
  • Verify the release tag with the following command where TAG_NAME is a placeholder for the specific tag:

    git tag -v TAG_NAME
    

License

Package btcjson is licensed under the copyfree ISC License.