Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevenroose/go-bitcoin-core-rpc
An RPC client for the Bitcoin Core JSON-RPC API in Go (Golang).
https://github.com/stevenroose/go-bitcoin-core-rpc
bitcoin golang rpc-client
Last synced: 19 days ago
JSON representation
An RPC client for the Bitcoin Core JSON-RPC API in Go (Golang).
- Host: GitHub
- URL: https://github.com/stevenroose/go-bitcoin-core-rpc
- Owner: stevenroose
- License: isc
- Created: 2018-08-21T17:52:05.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-15T14:04:10.000Z (over 4 years ago)
- Last Synced: 2024-10-09T22:11:53.179Z (about 1 month ago)
- Topics: bitcoin, golang, rpc-client
- Language: Go
- Homepage:
- Size: 161 KB
- Stars: 19
- Watchers: 5
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-bitcoin-core-rpc
===================[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/stevenroose/go-bitcoin-core-rpc)rpcclient implements a Bitcoin Core JSON-RPC client package written
in [Go](http://golang.org/). It provides a robust and easy to use client for
interfacing with a Bitcoin RPC server.## Status
This package is currently under active development. It is already stable and
the infrastructure is complete. However, there are still several RPCs left to
implement and the API is not stable yet.## Documentation
* [API Reference](http://godoc.org/github.com/stevenroose/go-bitcoin-core-rpc)
* [Example](https://github.com/stevenroose/go-bitcoin-core-rpc/tree/master/examples)
Connects to a bitcoin Core RPC server using HTTP POST mode with TLS disabled
and gets the current block count.## Major Features
* Translates to and from higher-level and easier to use Go types
* Offers a synchronous (blocking) and asynchronous API## Installation
```bash
$ go get -u github.com/stevenroose/go-bitcoin-core-rpc
```## License
Package rpcclient is licensed under the [copyfree](http://copyfree.org) ISC
License.