Update btcrpcclient import paths to new location.

This commit is contained in:
Dave Collins 2015-01-15 21:21:20 -06:00
parent d3d5618ef9
commit 62b2ec081a
7 changed files with 18 additions and 18 deletions

View file

@ -1,10 +1,10 @@
btcrpcclient
============
[![Build Status](https://travis-ci.org/conformal/btcrpcclient.png?branch=master)]
(https://travis-ci.org/conformal/btcrpcclient)
[![GoDoc](https://godoc.org/github.com/conformal/btcrpcclient?status.png)]
(http://godoc.org/github.com/conformal/btcrpcclient)
[![Build Status](https://travis-ci.org/btcsuite/btcrpcclient.png?branch=master)]
(https://travis-ci.org/btcsuite/btcrpcclient)
[![GoDoc](https://godoc.org/github.com/btcsuite/btcrpcclient?status.png)]
(http://godoc.org/github.com/btcsuite/btcrpcclient)
btcrpcclient implements a Websocket-enabled Bitcoin JSON-RPC client package
written in [Go](http://golang.org/). It provides a robust and easy to use
@ -19,16 +19,16 @@ implement and the API is not stable yet.
## Documentation
* [API Reference](http://godoc.org/github.com/conformal/btcrpcclient)
* [btcd Websockets Example](https://github.com/conformal/btcrpcclient/blob/master/examples/btcdwebsockets)
* [API Reference](http://godoc.org/github.com/btcsuite/btcrpcclient)
* [btcd Websockets Example](https://github.com/btcsuite/btcrpcclient/blob/master/examples/btcdwebsockets)
Connects to a btcd RPC server using TLS-secured websockets, registers for
block connected and block disconnected notifications, and gets the current
block count
* [btcwallet Websockets Example](https://github.com/conformal/btcrpcclient/blob/master/examples/btcwalletwebsockets)
* [btcwallet Websockets Example](https://github.com/btcsuite/btcrpcclient/blob/master/examples/btcwalletwebsockets)
Connects to a btcwallet RPC server using TLS-secured websockets, registers for
notifications about changes to account balances, and gets a list of unspent
transaction outputs (utxos) the wallet can sign
* [Bitcoin Core HTTP POST Example](https://github.com/conformal/btcrpcclient/blob/master/examples/bitcoincorehttp)
* [Bitcoin Core HTTP POST Example](https://github.com/btcsuite/btcrpcclient/blob/master/examples/bitcoincorehttp)
Connects to a bitcoin core RPC server using HTTP POST mode with TLS disabled
and gets the current block count
@ -48,7 +48,7 @@ implement and the API is not stable yet.
## Installation
```bash
$ go get github.com/conformal/btcrpcclient
$ go get github.com/btcsuite/btcrpcclient
```
## License

View file

@ -11,7 +11,7 @@ The first step is to use `go get` to download and install the btcrpcclient
package:
```bash
$ go get github.com/conformal/btcrpcclient
$ go get github.com/btcsuite/btcrpcclient
```
Next, modify the `main.go` source to specify the correct RPC username and
@ -25,7 +25,7 @@ password for the RPC server:
Finally, navigate to the example's directory and run it with:
```bash
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/bitcoincorehttp
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/bitcoincorehttp
$ go run *.go
```

View file

@ -7,7 +7,7 @@ package main
import (
"log"
"github.com/conformal/btcrpcclient"
"github.com/btcsuite/btcrpcclient"
)
func main() {

View file

@ -14,7 +14,7 @@ The first step is to use `go get` to download and install the btcrpcclient
package:
```bash
$ go get github.com/conformal/btcrpcclient
$ go get github.com/btcsuite/btcrpcclient
```
Next, modify the `main.go` source to specify the correct RPC username and
@ -28,7 +28,7 @@ password for the RPC server:
Finally, navigate to the example's directory and run it with:
```bash
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/btcdwebsockets
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/btcdwebsockets
$ go run *.go
```

View file

@ -10,8 +10,8 @@ import (
"path/filepath"
"time"
"github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcrpcclient"
"github.com/conformal/btcwire"
)

View file

@ -15,7 +15,7 @@ The first step is to use `go get` to download and install the btcrpcclient
package:
```bash
$ go get github.com/conformal/btcrpcclient
$ go get github.com/btcsuite/btcrpcclient
```
Next, modify the `main.go` source to specify the correct RPC username and
@ -29,7 +29,7 @@ password for the RPC server:
Finally, navigate to the example's directory and run it with:
```bash
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/btcwalletwebsockets
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/btcwalletwebsockets
$ go run *.go
```

View file

@ -10,8 +10,8 @@ import (
"path/filepath"
"time"
"github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcrpcclient"
"github.com/davecgh/go-spew/spew"
)