Update btcutil import paths in README.md files.

This commit is contained in:
Dave Collins 2015-01-15 21:35:16 -06:00
parent 506d333934
commit f80c4d718d
5 changed files with 45 additions and 45 deletions

View file

@ -1,10 +1,10 @@
btcutil btcutil
======= =======
[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcutil.png?branch=master)]
(https://travis-ci.org/conformal/btcutil) [![Coverage Status] (https://travis-ci.org/btcsuite/btcutil) [![Coverage Status]
(https://coveralls.io/repos/conformal/btcutil/badge.png?branch=master)] (https://coveralls.io/repos/btcsuite/btcutil/badge.png?branch=master)]
(https://coveralls.io/r/conformal/btcutil?branch=master) (https://coveralls.io/r/btcsuite/btcutil?branch=master)
Package btcutil provides bitcoin-specific convenience functions and types. Package btcutil provides bitcoin-specific convenience functions and types.
A comprehensive suite of tests is provided to ensure proper functionality. See A comprehensive suite of tests is provided to ensure proper functionality. See
@ -20,21 +20,21 @@ provided.
## Documentation ## Documentation
[![GoDoc](https://godoc.org/github.com/conformal/btcutil?status.png)] [![GoDoc](https://godoc.org/github.com/btcsuite/btcutil?status.png)]
(http://godoc.org/github.com/conformal/btcutil) (http://godoc.org/github.com/btcsuite/btcutil)
Full `go doc` style documentation for the project can be viewed online without Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here: installing this package by using the GoDoc site here:
http://godoc.org/github.com/conformal/btcutil http://godoc.org/github.com/btcsuite/btcutil
You can also view the documentation locally once the package is installed with 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 the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/conformal/btcutil http://localhost:6060/pkg/github.com/btcsuite/btcutil
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcutil $ go get github.com/btcsuite/btcutil
``` ```
## GPG Verification Key ## GPG Verification Key

View file

@ -1,8 +1,8 @@
base58 base58
========== ==========
[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcutil.png?branch=master)]
(https://travis-ci.org/conformal/btcutil) (https://travis-ci.org/btcsuite/btcutil)
Package base58 provides an API for encoding and decoding to and from the Package base58 provides an API for encoding and decoding to and from the
modified base58 encoding. It also provides an API to do Base58Check encoding, modified base58 encoding. It also provides an API to do Base58Check encoding,
@ -13,36 +13,36 @@ Package base58 is licensed under the copyfree ISC license.
## Documentation ## Documentation
[![GoDoc](https://godoc.org/github.com/conformal/btcutil/base58?status.png)] [![GoDoc](https://godoc.org/github.com/btcsuite/btcutil/base58?status.png)]
(http://godoc.org/github.com/conformal/btcutil/base58) (http://godoc.org/github.com/btcsuite/btcutil/base58)
Full `go doc` style documentation for the project can be viewed online without Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here: installing this package by using the GoDoc site here:
http://godoc.org/github.com/conformal/btcutil/base58 http://godoc.org/github.com/btcsuite/btcutil/base58
You can also view the documentation locally once the package is installed with 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 the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/conformal/btcutil/base58 http://localhost:6060/pkg/github.com/btcsuite/btcutil/base58
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcutil/base58 $ go get github.com/btcsuite/btcutil/base58
``` ```
## Examples ## Examples
* [Decode Example] * [Decode Example]
(http://godoc.org/github.com/conformal/btcutil/base58#example-Decode) (http://godoc.org/github.com/btcsuite/btcutil/base58#example-Decode)
Demonstrates how to decode modified base58 encoded data. Demonstrates how to decode modified base58 encoded data.
* [Encode Example] * [Encode Example]
(http://godoc.org/github.com/conformal/btcutil/base58#example-Encode) (http://godoc.org/github.com/btcsuite/btcutil/base58#example-Encode)
Demonstrates how to encode data using the modified base58 encoding scheme. Demonstrates how to encode data using the modified base58 encoding scheme.
* [CheckDecode Example] * [CheckDecode Example]
(http://godoc.org/github.com/conformal/btcutil/base58#example-CheckDecode) (http://godoc.org/github.com/btcsuite/btcutil/base58#example-CheckDecode)
Demonstrates how to decode Base58Check encoded data. Demonstrates how to decode Base58Check encoded data.
* [CheckEncode Example] * [CheckEncode Example]
(http://godoc.org/github.com/conformal/btcutil/base58#example-CheckEncode) (http://godoc.org/github.com/btcsuite/btcutil/base58#example-CheckEncode)
Demonstrates how to encode data using the Base58Check encoding scheme. Demonstrates how to encode data using the Base58Check encoding scheme.
## License ## License

View file

@ -1,8 +1,8 @@
bloom bloom
===== =====
[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcutil.png?branch=master)]
(https://travis-ci.org/conformal/btcutil) (https://travis-ci.org/btcsuite/btcutil)
Package bloom provides an API for dealing with bitcoin-specific bloom filters. Package bloom provides an API for dealing with bitcoin-specific bloom filters.
@ -13,27 +13,27 @@ report. Package coinset is licensed under the liberal ISC license.
## Documentation ## Documentation
[![GoDoc](https://godoc.org/github.com/conformal/btcutil/bloom?status.png)] [![GoDoc](https://godoc.org/github.com/btcsuite/btcutil/bloom?status.png)]
(http://godoc.org/github.com/conformal/btcutil/bloom) (http://godoc.org/github.com/btcsuite/btcutil/bloom)
Full `go doc` style documentation for the project can be viewed online without Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here: installing this package by using the GoDoc site here:
http://godoc.org/github.com/conformal/btcutil/bloom http://godoc.org/github.com/btcsuite/btcutil/bloom
You can also view the documentation locally once the package is installed with 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 the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/conformal/btcutil/bloom http://localhost:6060/pkg/github.com/btcsuite/btcutil/bloom
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcutil/bloom $ go get github.com/btcsuite/btcutil/bloom
``` ```
## Examples ## Examples
* [NewFilter Example] * [NewFilter Example]
(http://godoc.org/github.com/conformal/btcutil/bloom#example-NewFilter) (http://godoc.org/github.com/btcsuite/btcutil/bloom#example-NewFilter)
Demonstrates how to create a new bloom filter, add a transaction hash to it, Demonstrates how to create a new bloom filter, add a transaction hash to it,
and check if the filter matches the transaction. and check if the filter matches the transaction.

View file

@ -1,8 +1,8 @@
coinset coinset
======= =======
[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcutil.png?branch=master)]
(https://travis-ci.org/conformal/btcutil) (https://travis-ci.org/btcsuite/btcutil)
Package coinset provides bitcoin-specific convenience functions for selecting Package coinset provides bitcoin-specific convenience functions for selecting
from and managing sets of unspent transaction outpoints (UTXOs). from and managing sets of unspent transaction outpoints (UTXOs).
@ -14,21 +14,21 @@ report. Package coinset is licensed under the liberal ISC license.
## Documentation ## Documentation
[![GoDoc](https://godoc.org/github.com/conformal/btcutil/coinset?status.png)] [![GoDoc](https://godoc.org/github.com/btcsuite/btcutil/coinset?status.png)]
(http://godoc.org/github.com/conformal/btcutil/coinset) (http://godoc.org/github.com/btcsuite/btcutil/coinset)
Full `go doc` style documentation for the project can be viewed online without Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here: installing this package by using the GoDoc site here:
http://godoc.org/github.com/conformal/btcutil/coinset http://godoc.org/github.com/btcsuite/btcutil/coinset
You can also view the documentation locally once the package is installed with 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 the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/conformal/btcutil/coinset http://localhost:6060/pkg/github.com/btcsuite/btcutil/coinset
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcutil/coinset $ go get github.com/btcsuite/btcutil/coinset
``` ```
## Usage ## Usage

View file

@ -1,8 +1,8 @@
hdkeychain hdkeychain
========== ==========
[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcutil.png?branch=master)]
(https://travis-ci.org/conformal/btcutil) (https://travis-ci.org/btcsuite/btcutil)
Package hdkeychain provides an API for bitcoin hierarchical deterministic Package hdkeychain provides an API for bitcoin hierarchical deterministic
extended keys (BIP0032). extended keys (BIP0032).
@ -37,35 +37,35 @@ report. Package hdkeychain is licensed under the liberal ISC license.
## Documentation ## Documentation
[![GoDoc](https://godoc.org/github.com/conformal/btcutil/hdkeychain?status.png)] [![GoDoc](https://godoc.org/github.com/btcsuite/btcutil/hdkeychain?status.png)]
(http://godoc.org/github.com/conformal/btcutil/hdkeychain) (http://godoc.org/github.com/btcsuite/btcutil/hdkeychain)
Full `go doc` style documentation for the project can be viewed online without Full `go doc` style documentation for the project can be viewed online without
installing this package by using the GoDoc site here: installing this package by using the GoDoc site here:
http://godoc.org/github.com/conformal/btcutil/hdkeychain http://godoc.org/github.com/btcsuite/btcutil/hdkeychain
You can also view the documentation locally once the package is installed with 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 the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to
http://localhost:6060/pkg/github.com/conformal/btcutil/hdkeychain http://localhost:6060/pkg/github.com/btcsuite/btcutil/hdkeychain
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcutil/hdkeychain $ go get github.com/btcsuite/btcutil/hdkeychain
``` ```
## Examples ## Examples
* [NewMaster Example] * [NewMaster Example]
(http://godoc.org/github.com/conformal/btcutil/hdkeychain#example-NewMaster) (http://godoc.org/github.com/btcsuite/btcutil/hdkeychain#example-NewMaster)
Demonstrates how to generate a cryptographically random seed then use it to Demonstrates how to generate a cryptographically random seed then use it to
create a new master node (extended key). create a new master node (extended key).
* [Default Wallet Layout Example] * [Default Wallet Layout Example]
(http://godoc.org/github.com/conformal/btcutil/hdkeychain#example-package--DefaultWalletLayout) (http://godoc.org/github.com/btcsuite/btcutil/hdkeychain#example-package--DefaultWalletLayout)
Demonstrates the default hierarchical deterministic wallet layout as described Demonstrates the default hierarchical deterministic wallet layout as described
in BIP0032. in BIP0032.
* [Audits Use Case Example] * [Audits Use Case Example]
(http://godoc.org/github.com/conformal/btcutil/hdkeychain#example-package--Audits) (http://godoc.org/github.com/btcsuite/btcutil/hdkeychain#example-package--Audits)
Demonstrates the audits use case in BIP0032. Demonstrates the audits use case in BIP0032.
## License ## License