diff --git a/README.md b/README.md index b7ecaab7..6ee8e377 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/bitcoincorehttp/README.md b/examples/bitcoincorehttp/README.md index de01350a..cc1dfa30 100644 --- a/examples/bitcoincorehttp/README.md +++ b/examples/bitcoincorehttp/README.md @@ -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 ``` diff --git a/examples/bitcoincorehttp/main.go b/examples/bitcoincorehttp/main.go index 6db29906..3caddb3b 100644 --- a/examples/bitcoincorehttp/main.go +++ b/examples/bitcoincorehttp/main.go @@ -7,7 +7,7 @@ package main import ( "log" - "github.com/conformal/btcrpcclient" + "github.com/btcsuite/btcrpcclient" ) func main() { diff --git a/examples/btcdwebsockets/README.md b/examples/btcdwebsockets/README.md index 1f765fa4..b6050fef 100644 --- a/examples/btcdwebsockets/README.md +++ b/examples/btcdwebsockets/README.md @@ -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 ``` diff --git a/examples/btcdwebsockets/main.go b/examples/btcdwebsockets/main.go index e5ac2171..5ae486b7 100644 --- a/examples/btcdwebsockets/main.go +++ b/examples/btcdwebsockets/main.go @@ -10,8 +10,8 @@ import ( "path/filepath" "time" + "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" - "github.com/conformal/btcrpcclient" "github.com/conformal/btcwire" ) diff --git a/examples/btcwalletwebsockets/README.md b/examples/btcwalletwebsockets/README.md index bd9a61fa..3d41e944 100644 --- a/examples/btcwalletwebsockets/README.md +++ b/examples/btcwalletwebsockets/README.md @@ -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 ``` diff --git a/examples/btcwalletwebsockets/main.go b/examples/btcwalletwebsockets/main.go index 47aada2a..38833931 100644 --- a/examples/btcwalletwebsockets/main.go +++ b/examples/btcwalletwebsockets/main.go @@ -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" )