mirror of
https://github.com/LBRYFoundation/lbcd.git
synced 2025-08-23 17:47:24 +00:00
Update btcrpcclient import paths to new location.
This commit is contained in:
parent
d3d5618ef9
commit
62b2ec081a
7 changed files with 18 additions and 18 deletions
18
README.md
18
README.md
|
@ -1,10 +1,10 @@
|
||||||
btcrpcclient
|
btcrpcclient
|
||||||
============
|
============
|
||||||
|
|
||||||
[]
|
[]
|
||||||
(https://travis-ci.org/conformal/btcrpcclient)
|
(https://travis-ci.org/btcsuite/btcrpcclient)
|
||||||
[]
|
[]
|
||||||
(http://godoc.org/github.com/conformal/btcrpcclient)
|
(http://godoc.org/github.com/btcsuite/btcrpcclient)
|
||||||
|
|
||||||
btcrpcclient implements a Websocket-enabled Bitcoin JSON-RPC client package
|
btcrpcclient implements a Websocket-enabled Bitcoin JSON-RPC client package
|
||||||
written in [Go](http://golang.org/). It provides a robust and easy to use
|
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
|
## Documentation
|
||||||
|
|
||||||
* [API Reference](http://godoc.org/github.com/conformal/btcrpcclient)
|
* [API Reference](http://godoc.org/github.com/btcsuite/btcrpcclient)
|
||||||
* [btcd Websockets Example](https://github.com/conformal/btcrpcclient/blob/master/examples/btcdwebsockets)
|
* [btcd Websockets Example](https://github.com/btcsuite/btcrpcclient/blob/master/examples/btcdwebsockets)
|
||||||
Connects to a btcd RPC server using TLS-secured websockets, registers for
|
Connects to a btcd RPC server using TLS-secured websockets, registers for
|
||||||
block connected and block disconnected notifications, and gets the current
|
block connected and block disconnected notifications, and gets the current
|
||||||
block count
|
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
|
Connects to a btcwallet RPC server using TLS-secured websockets, registers for
|
||||||
notifications about changes to account balances, and gets a list of unspent
|
notifications about changes to account balances, and gets a list of unspent
|
||||||
transaction outputs (utxos) the wallet can sign
|
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
|
Connects to a bitcoin core RPC server using HTTP POST mode with TLS disabled
|
||||||
and gets the current block count
|
and gets the current block count
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ implement and the API is not stable yet.
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ go get github.com/conformal/btcrpcclient
|
$ go get github.com/btcsuite/btcrpcclient
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -11,7 +11,7 @@ The first step is to use `go get` to download and install the btcrpcclient
|
||||||
package:
|
package:
|
||||||
|
|
||||||
```bash
|
```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
|
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:
|
Finally, navigate to the example's directory and run it with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/bitcoincorehttp
|
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/bitcoincorehttp
|
||||||
$ go run *.go
|
$ go run *.go
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/conformal/btcrpcclient"
|
"github.com/btcsuite/btcrpcclient"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -14,7 +14,7 @@ The first step is to use `go get` to download and install the btcrpcclient
|
||||||
package:
|
package:
|
||||||
|
|
||||||
```bash
|
```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
|
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:
|
Finally, navigate to the example's directory and run it with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/btcdwebsockets
|
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/btcdwebsockets
|
||||||
$ go run *.go
|
$ go run *.go
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/btcsuite/btcrpcclient"
|
||||||
"github.com/btcsuite/btcutil"
|
"github.com/btcsuite/btcutil"
|
||||||
"github.com/conformal/btcrpcclient"
|
|
||||||
"github.com/conformal/btcwire"
|
"github.com/conformal/btcwire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ The first step is to use `go get` to download and install the btcrpcclient
|
||||||
package:
|
package:
|
||||||
|
|
||||||
```bash
|
```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
|
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:
|
Finally, navigate to the example's directory and run it with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd $GOPATH/src/github.com/conformal/btcrpcclient/examples/btcwalletwebsockets
|
$ cd $GOPATH/src/github.com/btcsuite/btcrpcclient/examples/btcwalletwebsockets
|
||||||
$ go run *.go
|
$ go run *.go
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/btcsuite/btcrpcclient"
|
||||||
"github.com/btcsuite/btcutil"
|
"github.com/btcsuite/btcutil"
|
||||||
"github.com/conformal/btcrpcclient"
|
|
||||||
"github.com/davecgh/go-spew/spew"
|
"github.com/davecgh/go-spew/spew"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue