2015-01-31 19:32:55 +01:00
|
|
|
wire
|
|
|
|
====
|
2013-05-08 21:16:41 +02:00
|
|
|
|
2017-05-25 18:29:23 +02:00
|
|
|
[![Build Status](http://img.shields.io/travis/btcsuite/btcd.svg)](https://travis-ci.org/btcsuite/btcd)
|
|
|
|
[![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/btcsuite/btcd/wire)
|
2013-12-09 12:41:54 +01:00
|
|
|
|
2015-01-31 19:32:55 +01:00
|
|
|
Package wire implements the bitcoin wire protocol. A comprehensive suite of
|
2014-04-19 21:44:14 +02:00
|
|
|
tests with 100% test coverage is provided to ensure proper functionality.
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
There is an associated blog post about the release of this package
|
|
|
|
[here](https://blog.conformal.com/btcwire-the-bitcoin-wire-protocol-package-from-btcd/).
|
|
|
|
|
2015-01-31 19:32:55 +01:00
|
|
|
This package has intentionally been designed so it can be used as a standalone
|
|
|
|
package for any projects needing to interface with bitcoin peers at the wire
|
|
|
|
protocol level.
|
2013-05-10 18:04:30 +02:00
|
|
|
|
2015-10-23 18:34:50 +02:00
|
|
|
## Installation and Updating
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
```bash
|
2015-10-23 18:34:50 +02:00
|
|
|
$ go get -u github.com/btcsuite/btcd/wire
|
2013-05-08 21:31:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Bitcoin Message Overview
|
|
|
|
|
|
|
|
The bitcoin protocol consists of exchanging messages between peers. Each message
|
|
|
|
is preceded by a header which identifies information about it such as which
|
|
|
|
bitcoin network it is a part of, its type, how big it is, and a checksum to
|
|
|
|
verify validity. All encoding and decoding of message headers is handled by this
|
|
|
|
package.
|
|
|
|
|
|
|
|
To accomplish this, there is a generic interface for bitcoin messages named
|
|
|
|
`Message` which allows messages of any type to be read, written, or passed
|
|
|
|
around through channels, functions, etc. In addition, concrete implementations
|
|
|
|
of most of the currently supported bitcoin messages are provided. For these
|
|
|
|
supported messages, all of the details of marshalling and unmarshalling to and
|
|
|
|
from the wire using bitcoin encoding are handled so the caller doesn't have to
|
|
|
|
concern themselves with the specifics.
|
|
|
|
|
|
|
|
## Reading Messages Example
|
|
|
|
|
|
|
|
In order to unmarshal bitcoin messages from the wire, use the `ReadMessage`
|
|
|
|
function. It accepts any `io.Reader`, but typically this will be a `net.Conn`
|
|
|
|
to a remote node running a bitcoin peer. Example syntax is:
|
|
|
|
|
|
|
|
```Go
|
2013-05-15 20:57:29 +02:00
|
|
|
// Use the most recent protocol version supported by the package and the
|
2013-05-08 21:31:00 +02:00
|
|
|
// main bitcoin network.
|
2015-01-31 19:32:55 +01:00
|
|
|
pver := wire.ProtocolVersion
|
|
|
|
btcnet := wire.MainNet
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
// Reads and validates the next bitcoin message from conn using the
|
|
|
|
// protocol version pver and the bitcoin network btcnet. The returns
|
2015-01-31 19:32:55 +01:00
|
|
|
// are a wire.Message, a []byte which contains the unmarshalled
|
2013-05-08 21:31:00 +02:00
|
|
|
// raw payload, and a possible error.
|
2015-01-31 19:32:55 +01:00
|
|
|
msg, rawPayload, err := wire.ReadMessage(conn, pver, btcnet)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
// Log and handle the error
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
See the package documentation for details on determining the message type.
|
|
|
|
|
|
|
|
## Writing Messages Example
|
|
|
|
|
|
|
|
In order to marshal bitcoin messages to the wire, use the `WriteMessage`
|
|
|
|
function. It accepts any `io.Writer`, but typically this will be a `net.Conn`
|
|
|
|
to a remote node running a bitcoin peer. Example syntax to request addresses
|
|
|
|
from a remote peer is:
|
|
|
|
|
|
|
|
```Go
|
2013-05-15 20:57:29 +02:00
|
|
|
// Use the most recent protocol version supported by the package and the
|
2013-05-08 21:31:00 +02:00
|
|
|
// main bitcoin network.
|
2015-01-31 19:32:55 +01:00
|
|
|
pver := wire.ProtocolVersion
|
|
|
|
btcnet := wire.MainNet
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
// Create a new getaddr bitcoin message.
|
2015-01-31 19:32:55 +01:00
|
|
|
msg := wire.NewMsgGetAddr()
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
// Writes a bitcoin message msg to conn using the protocol version
|
|
|
|
// pver, and the bitcoin network btcnet. The return is a possible
|
|
|
|
// error.
|
2015-01-31 19:32:55 +01:00
|
|
|
err := wire.WriteMessage(conn, msg, pver, btcnet)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
// Log and handle the error
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## GPG Verification Key
|
|
|
|
|
|
|
|
All official release tags are signed by Conformal so users can ensure the code
|
2015-05-01 08:28:01 +02:00
|
|
|
has not been tampered with and is coming from the btcsuite developers. To
|
|
|
|
verify the signature perform the following:
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
- Download the public key from the Conformal website at
|
|
|
|
https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt
|
|
|
|
|
|
|
|
- Import the public key into your GPG keyring:
|
|
|
|
```bash
|
|
|
|
gpg --import GIT-GPG-KEY-conformal.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
- Verify the release tag with the following command where `TAG_NAME` is a
|
|
|
|
placeholder for the specific tag:
|
|
|
|
```bash
|
|
|
|
git tag -v TAG_NAME
|
|
|
|
```
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
2015-01-31 19:32:55 +01:00
|
|
|
Package wire is licensed under the [copyfree](http://copyfree.org) ISC
|
2014-07-13 19:15:50 +02:00
|
|
|
License.
|