Documentation
ΒΆ
Overview ΒΆ
Package wire implements the bitcoin wire protocol.
For the complete details of the bitcoin protocol, see the official wiki entry at https://en.bitcoin.it/wiki/Protocol_specification. The following only serves as a quick overview to provide information on how to use the package.
At a high level, this package provides support for marshaling and unmarshalling supported bitcoin messages to and from the wire. This package does not deal with the specifics of message handling such as what to do when a message is received. This provides the caller with a high level of flexibility.
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. This package handles all encoding and decoding of message headers.
To achieve 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 the details of marshaling and unmarshalling to and from the wire using bitcoin encoding are handled so the caller doesn't have to concern themselves with the specifics.
Message Interaction ΒΆ
The following provides a quick summary of how the bitcoin messages are intended to interact with one another. As stated above, these interactions are not indirectly handled by this package. For more in-depth details about the appropriate interactions, see the official bitcoin protocol wiki entry at https://en.bitcoin.it/wiki/Protocol_specification.
The initial handshake consists of two peers sending each other a version message (MsgVersion) followed by responding with a verack message (MsgVerAck). Both peers use the information in the version message (MsgVersion) to negotiate things such as protocol version and supported services with each other. Once the initial handshake is complete, the following chart indicates message interactions in no particular order.
Peer A Sends Peer B Responds ---------------------------------------------------------------------------- getaddr message (MsgGetAddr) addr message (MsgAddr) getblocks message (MsgGetBlocks) inv message (MsgInv) inv message (MsgInv) getdata message (MsgGetData) getdata message (MsgGetData) block message (MsgBlock) -or- tx message (MsgTx) -or- notfound message (MsgNotFound) getheaders message (MsgGetHeaders) headers message (MsgHeaders) ping message (MsgPing) pong message (MsgHeaders)* -or- (none -- Ability to send message is enough) NOTES: * The pong message was not added until later protocol versions as defined in BIP0031. The BIP0031Version constant can be used to detect a recent enough protocol version for this purpose (version > BIP0031Version).
Common Parameters ΒΆ
There are several common parameters that arise when using this package to read and write bitcoin messages. The following sections provide a quick overview of these parameters so the next sections can build on them.
Protocol Version ΒΆ
The protocol version should be negotiated with the remote peer at a higher level than this package via the version (MsgVersion) message exchange, however, this package provides the wire.ProtocolVersion constant which indicates the latest protocol version this package supports and is typically the value to use for all outbound connections before a potentially lower protocol version is negotiated.
Bitcoin (BSV) Network ΒΆ
The bitcoin network is a magic number which is used to identify the start of a message and which bitcoin network the message applies to. This package provides the following constants:
wire.MainNet wire.RegTestNet (Regression test network) wire.TestNet (Test network version 3)
Determining Message Type ΒΆ
As discussed in the bitcoin message overview section, this package reads and writes bitcoin messages using a generic interface named Message. In order to determine the actual concrete type of the message, use a type switch or type assertion. An example of a type switch follows:
// Assumes msg is already a valid concrete message such as one created // via NewMsgVersion or read via ReadMessage. switch msg := msg.(type) { case *wire.MsgVersion: // The message is a pointer to a MsgVersion struct. fmt.Printf("Protocol version: %v", msg.ProtocolVersion) case *wire.MsgBlock: // The message is a pointer to a MsgBlock struct. fmt.Printf("Number of tx in block: %v", msg.Header.TxnCount) }
Reading Messages ΒΆ
In order to unmarshall 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:
// Reads and validates the next bitcoin message from conn using the // protocol version pver and the bitcoin network bsvnet. The returns // are a wire.Message, a []byte which contains the unmarshalled // raw payload, and a possible error. msg, rawPayload, err := wire.ReadMessage(conn, pver, bsvnet) if err != nil { // Log and handle the error }
Writing Messages ΒΆ
In order to marshall 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:
// Create a new getaddr bitcoin message. msg := wire.NewMsgGetAddr() // Writes a bitcoin message msg to conn using the protocol version // pver, and the bitcoin network bsvnet. The return is a possible // error. err := wire.WriteMessage(conn, msg, pver, bsvnet) if err != nil { // Log and handle the error }
Errors ΒΆ
Errors returned by this package are either the raw errors provided by underlying calls to read/write from streams such as io.EOF, io.ErrUnexpectedEOF, and io.ErrShortWrite, or of type wire.MessageError. This allows the caller to differentiate between general IO errors and malformed messages through type assertions.
Bitcoin Improvement Proposals ΒΆ
This package includes spec changes outlined by the following BIPs:
BIP0014 (https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki) BIP0031 (https://github.com/bitcoin/bips/blob/master/bip-0031.mediawiki) BIP0035 (https://github.com/bitcoin/bips/blob/master/bip-0035.mediawiki) BIP0037 (https://github.com/bitcoin/bips/blob/master/bip-0037.mediawiki) BIP0111 (https://github.com/bitcoin/bips/blob/master/bip-0111.mediawiki) BIP0130 (https://github.com/bitcoin/bips/blob/master/bip-0130.mediawiki) BIP0133 (https://github.com/bitcoin/bips/blob/master/bip-0133.mediawiki)
Index ΒΆ
- Constants
- Variables
- func MaxBlockPayload() uint64
- func RandomUint64() (uint64, error)
- func ReadVarBytes(r io.Reader, pver uint32, maxAllowed uint64, fieldName string) ([]byte, error)
- func ReadVarInt(r io.Reader, _ uint32) (uint64, error)
- func ReadVarString(r io.Reader, pver uint32) (string, error)
- func SetExternalHandler(cmd string, handler func(io.Reader, uint64, int) (int, Message, []byte, error))
- func SetLimits(excessiveBlockSize uint64)
- func VarIntSerializeSize(val uint64) int
- func WriteMessage(w io.Writer, msg Message, pver uint32, bsvnet BitcoinNet) error
- func WriteMessageN(w io.Writer, msg Message, pver uint32, bsvnet BitcoinNet) (int, error)
- func WriteMessageWithEncodingN(w io.Writer, msg Message, pver uint32, bsvnet BitcoinNet, ...) (int, error)
- func WriteTxOut(w io.Writer, pver uint32, _ int32, to *TxOut) error
- func WriteVarBytes(w io.Writer, pver uint32, bytes []byte) error
- func WriteVarInt(w io.Writer, _ uint32, val uint64) error
- func WriteVarString(w io.Writer, pver uint32, str string) error
- type BitcoinNet
- type BlockHeader
- func (h *BlockHeader) BlockHash() chainhash.Hash
- func (h *BlockHeader) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (h *BlockHeader) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (h *BlockHeader) Deserialize(r io.Reader) error
- func (h *BlockHeader) Serialize(w io.Writer) error
- type BloomUpdateType
- type ExtendedTxIn
- type FilterType
- type InvType
- type InvVect
- type Message
- func ReadMessage(r io.Reader, pver uint32, bsvnet BitcoinNet) (Message, []byte, error)
- func ReadMessageN(r io.Reader, pver uint32, bsvnet BitcoinNet) (int, Message, []byte, error)
- func ReadMessageWithEncodingN(r io.Reader, pver uint32, bsvnet BitcoinNet, enc MessageEncoding) (int, Message, []byte, error)
- type MessageEncoding
- type MessageError
- type MsgAddr
- func (msg *MsgAddr) AddAddress(na *NetAddress) error
- func (msg *MsgAddr) AddAddresses(netAddrs ...*NetAddress) error
- func (msg *MsgAddr) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgAddr) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgAddr) ClearAddresses()
- func (msg *MsgAddr) Command() string
- func (msg *MsgAddr) MaxPayloadLength(pver uint32) uint64
- type MsgAuthch
- type MsgAuthresp
- type MsgBlock
- func (msg *MsgBlock) AddTransaction(tx *MsgTx) error
- func (msg *MsgBlock) BlockHash() chainhash.Hash
- func (msg *MsgBlock) BsvEncode(w io.Writer, pver uint32, enc MessageEncoding) error
- func (msg *MsgBlock) Bsvdecode(r io.Reader, pver uint32, enc MessageEncoding) error
- func (msg *MsgBlock) ClearTransactions()
- func (msg *MsgBlock) Command() string
- func (msg *MsgBlock) Deserialize(r io.Reader) error
- func (msg *MsgBlock) DeserializeTxLoc(r *bytes.Buffer) ([]TxLoc, error)
- func (msg *MsgBlock) MaxPayloadLength(_ uint32) uint64
- func (msg *MsgBlock) Serialize(w io.Writer) error
- func (msg *MsgBlock) SerializeSize() int
- func (msg *MsgBlock) TxHashes() ([]chainhash.Hash, error)
- type MsgCFCheckpt
- func (msg *MsgCFCheckpt) AddCFHeader(header *chainhash.Hash) error
- func (msg *MsgCFCheckpt) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFCheckpt) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFCheckpt) Command() string
- func (msg *MsgCFCheckpt) Deserialize(r io.Reader) error
- func (msg *MsgCFCheckpt) MaxPayloadLength(_ uint32) uint64
- type MsgCFHeaders
- func (msg *MsgCFHeaders) AddCFHash(hash *chainhash.Hash) error
- func (msg *MsgCFHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFHeaders) Command() string
- func (msg *MsgCFHeaders) Deserialize(r io.Reader) error
- func (msg *MsgCFHeaders) MaxPayloadLength(_ uint32) uint64
- type MsgCFilter
- func (msg *MsgCFilter) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFilter) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgCFilter) Command() string
- func (msg *MsgCFilter) Deserialize(r io.Reader) error
- func (msg *MsgCFilter) MaxPayloadLength(_ uint32) uint64
- type MsgExtMsg
- type MsgExtendedTx
- func (msg *MsgExtendedTx) AddTxIn(ti *ExtendedTxIn)
- func (msg *MsgExtendedTx) AddTxOut(to *TxOut)
- func (msg *MsgExtendedTx) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgExtendedTx) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgExtendedTx) Command() string
- func (msg *MsgExtendedTx) Copy() *MsgTx
- func (msg *MsgExtendedTx) Deserialize(r io.Reader) error
- func (msg *MsgExtendedTx) MaxPayloadLength(_ uint32) uint64
- func (msg *MsgExtendedTx) PkScriptLocs() []int
- func (msg *MsgExtendedTx) Serialize(w io.Writer) error
- func (msg *MsgExtendedTx) SerializeSize() int
- func (msg *MsgExtendedTx) TxHash() chainhash.Hash
- type MsgFeeFilter
- type MsgFilterAdd
- type MsgFilterClear
- type MsgFilterLoad
- type MsgGetAddr
- type MsgGetBlocks
- func (msg *MsgGetBlocks) AddBlockLocatorHash(hash *chainhash.Hash) error
- func (msg *MsgGetBlocks) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetBlocks) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetBlocks) Command() string
- func (msg *MsgGetBlocks) MaxPayloadLength(_ uint32) uint64
- type MsgGetCFCheckpt
- type MsgGetCFHeaders
- type MsgGetCFilters
- type MsgGetData
- func (msg *MsgGetData) AddInvVect(iv *InvVect) error
- func (msg *MsgGetData) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetData) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetData) Command() string
- func (msg *MsgGetData) MaxPayloadLength(_ uint32) uint64
- type MsgGetHeaders
- func (msg *MsgGetHeaders) AddBlockLocatorHash(hash *chainhash.Hash) error
- func (msg *MsgGetHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgGetHeaders) Command() string
- func (msg *MsgGetHeaders) MaxPayloadLength(_ uint32) uint64
- type MsgHeaders
- func (msg *MsgHeaders) AddBlockHeader(bh *BlockHeader) error
- func (msg *MsgHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgHeaders) Command() string
- func (msg *MsgHeaders) MaxPayloadLength(_ uint32) uint64
- type MsgInv
- type MsgMemPool
- type MsgMerkleBlock
- func (msg *MsgMerkleBlock) AddTxHash(hash *chainhash.Hash) error
- func (msg *MsgMerkleBlock) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgMerkleBlock) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgMerkleBlock) Command() string
- func (msg *MsgMerkleBlock) MaxPayloadLength(_ uint32) uint64
- type MsgNotFound
- func (msg *MsgNotFound) AddInvVect(iv *InvVect) error
- func (msg *MsgNotFound) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgNotFound) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgNotFound) Command() string
- func (msg *MsgNotFound) MaxPayloadLength(_ uint32) uint64
- type MsgPing
- type MsgPong
- type MsgProtoconf
- type MsgReject
- type MsgSendHeaders
- type MsgSendcmpct
- type MsgTx
- func (msg *MsgTx) AddTxIn(ti *TxIn)
- func (msg *MsgTx) AddTxOut(to *TxOut)
- func (msg *MsgTx) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgTx) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgTx) Command() string
- func (msg *MsgTx) Copy() *MsgTx
- func (msg *MsgTx) Deserialize(r io.Reader) error
- func (msg *MsgTx) MaxPayloadLength(_ uint32) uint64
- func (msg *MsgTx) PkScriptLocs() []int
- func (msg *MsgTx) Serialize(w io.Writer) error
- func (msg *MsgTx) SerializeSize() int
- func (msg *MsgTx) TxHash() chainhash.Hash
- type MsgVerAck
- type MsgVersion
- func (msg *MsgVersion) AddService(service ServiceFlag)
- func (msg *MsgVersion) AddUserAgent(name, version string, comments ...string) error
- func (msg *MsgVersion) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
- func (msg *MsgVersion) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
- func (msg *MsgVersion) Command() string
- func (msg *MsgVersion) HasService(service ServiceFlag) bool
- func (msg *MsgVersion) MaxPayloadLength(pver uint32) uint64
- type NetAddress
- type OutPoint
- type RejectCode
- type ServiceFlag
- type TxIn
- type TxLoc
- type TxOut
Constants ΒΆ
const ( CmdVersion = "version" CmdVerAck = "verack" CmdGetAddr = "getaddr" CmdAddr = "addr" CmdGetBlocks = "getblocks" CmdInv = "inv" CmdGetData = "getdata" CmdNotFound = "notfound" CmdBlock = "block" CmdTx = "tx" CmdExtendedTx = "exttx" CmdGetHeaders = "getheaders" CmdHeaders = "headers" CmdPing = "ping" CmdPong = "pong" CmdMemPool = "mempool" CmdFilterAdd = "filteradd" CmdFilterClear = "filterclear" CmdFilterLoad = "filterload" CmdMerkleBlock = "merkleblock" CmdReject = "reject" CmdSendHeaders = "sendheaders" CmdFeeFilter = "feefilter" CmdGetCFilters = "getcfilters" CmdGetCFHeaders = "getcfheaders" CmdGetCFCheckpt = "getcfcheckpt" CmdCFilter = "cfilter" CmdCFHeaders = "cfheaders" CmdCFCheckpt = "cfcheckpt" CmdProtoconf = "protoconf" CmdExtMsg = "extmsg" CmdSendcmpct = "sendcmpct" CmdAuthch = "authch" CmdAuthresp = "authresp" )
Commands used in bitcoin message headers which describe the type of message.
const ( // MaxCFHeaderPayload is the maximum byte size of a committed // filter header. MaxCFHeaderPayload = chainhash.HashSize // MaxCFHeadersPerMsg is the maximum number of committed filter headers // that can be in a single bitcoin cfheaders message. MaxCFHeadersPerMsg = 2000 )
const ( // MaxFilterLoadHashFuncs is the maximum number of hash functions to // load into the Bloom filter. MaxFilterLoadHashFuncs = 50 // MaxFilterLoadFilterSize is the maximum size in bytes a filter may be. MaxFilterLoadFilterSize = 36000 )
const ( MaxProtoconfPayload = 1024 * 1024 MaxNumStreamPolicies = 10 DefaultStreamPolicy = "Default" BlockPriorityStreamPolicy = "BlockPriority" // DefaultMaxRecvPayloadLength is the default maximum receive payload length DefaultMaxRecvPayloadLength uint32 = 2 * 1024 * 1024 )
MsgProtoconf implements the Message interface and represents a bitcoin protoconf message. It is sent after verack message directly to inform max receive payload length
const ( // TxVersion is the current latest supported transaction version. TxVersion = 1 // MaxTxInSequenceNum is the maximum sequence number the sequence field // of a transaction input can be. MaxTxInSequenceNum uint32 = 0xffffffff // MaxPrevOutIndex is the maximum index the index field of a previous // outpointing can be. MaxPrevOutIndex uint32 = 0xffffffff // SequenceLockTimeDisabled is a flag that if set on a transaction // input's sequence number, the sequence number will not be interpreted // as a relative locktime. SequenceLockTimeDisabled = 1 << 31 // SequenceLockTimeIsSeconds is a flag that if set on a transaction // input's sequence number, the relative locktime has units of 512 // seconds. SequenceLockTimeIsSeconds = 1 << 22 // SequenceLockTimeMask is a mask that extracts the relative locktime // when masked against the transaction input sequence number. SequenceLockTimeMask = 0x0000ffff // SequenceLockTimeGranularity is the defined time-based granularity // for seconds-based relative time locks. When converting from seconds // to a sequence number, the value is right shifted by this amount, // therefore the granularity of relative time locks in 512 or 2^9 // seconds. Enforced relative lock times are multiples of 512 seconds. SequenceLockTimeGranularity = 9 // MinTxOutPayload is the minimum payload size for a transaction output. // Value 8 bytes + Varint for PkScript length 1 byte. MinTxOutPayload = 9 )
const ( // ProtocolVersion is the latest protocol version this package supports. // ProtocolVersion uint32 = 70013 ProtocolVersion uint32 = 70016 // This version supports extended messages (>4GB) // MultipleAddressVersion is the protocol version which added multiple // addresses per message (pver >= MultipleAddressVersion). MultipleAddressVersion uint32 = 209 // NetAddressTimeVersion is the protocol version which added the // timestamp field (pver >= NetAddressTimeVersion). NetAddressTimeVersion uint32 = 31402 // BIP0031Version is the protocol version AFTER which a pong message // and nonce field in ping were added (pver > BIP0031Version). BIP0031Version uint32 = 60000 // BIP0035Version is the protocol version which added the mempool // message (pver >= BIP0035Version). BIP0035Version uint32 = 60002 // BIP0037Version is the protocol version which added new connection // bloom filtering related messages and extended the version message // with a relay flag (pver >= BIP0037Version). BIP0037Version uint32 = 70001 // RejectVersion is the protocol version which added a new reject // message. RejectVersion uint32 = 70002 // BIP0111Version is the protocol version which added the SFNodeBloom // service flag. BIP0111Version uint32 = 70011 // SendHeadersVersion is the protocol version which added a new // sendheaders message. SendHeadersVersion uint32 = 70012 // FeeFilterVersion is the protocol version which added a new // feefilter message. FeeFilterVersion uint32 = 70013 // ProtoconfVersion is the protocol version which added a new // protoconf message ProtoconfVersion uint32 = 70013 )
XXX pedro: we will probably need to bump this.
const ( // CFCheckptInterval is the gap (in number of blocks) between each // filter header checkpoint. CFCheckptInterval = 1000 )
const CommandSize = 12
CommandSize is the fixed size of all commands in the common bitcoin message header. Shorter commands must be zero padded.
const DefaultUserAgent = "/bsvwire:0.5.0/"
DefaultUserAgent for wire in the stack
const MaxAddrPerMsg = 1000
MaxAddrPerMsg is the maximum number of addresses that can be in a single bitcoin addr message (MsgAddr).
const MaxBlockHeaderPayload = 16 + (chainhash.HashSize * 2)
MaxBlockHeaderPayload is the maximum number of bytes a block header can be. Version 4 bytes + Timestamp 4 bytes + Bits 4 bytes + Nonce 4 bytes + PrevBlock and MerkleRoot hashes.
const MaxBlockHeadersPerMsg = 2000
MaxBlockHeadersPerMsg is the maximum number of block headers that can be in a single bitcoin headers message.
const MaxBlockLocatorsPerMsg = 500
MaxBlockLocatorsPerMsg is the maximum number of block locator hashes allowed per message.
const MaxBlocksPerMsg = 500
MaxBlocksPerMsg is the maximum number of blocks allowed per message.
const ( // MaxCFilterDataSize is the maximum byte size of a committed filter. // The maximum size is currently defined as 256KiB. MaxCFilterDataSize = 256 * 1024 )
const MaxExtMsgPayload = 0xFFFFFFFFFFFFFFFF
MaxExtMsgPayload is the maximum number of bytes a protoconf can be. NumberOfFields 8 bytes + MaxRecvPayloadLength 4 bytes
const ( // MaxFilterAddDataSize is the maximum byte size of a data // element to add to the Bloom filter. It is equal to the // maximum element size of a script. MaxFilterAddDataSize = 520 )
const MaxGetCFiltersReqRange = 1000
MaxGetCFiltersReqRange the maximum number of filters that may be requested in a getcfheaders message.
const ( // MaxInvPerMsg is the maximum number of inventory vectors that can be in a // single bitcoin inv message. MaxInvPerMsg = 50000 )
const MaxUserAgentLen = 256
MaxUserAgentLen is the maximum allowed length for the user agent field in a version message (MsgVersion).
const (
// MaxVarIntPayload is the maximum payload size for a variable length integer.
MaxVarIntPayload = 9
)
const MessageHeaderSize = 24
MessageHeaderSize is the number of bytes in a bitcoin message header. Bitcoin network (magic) 4 bytes + command 12 bytes + payload length 4 bytes + checksum 4 bytes.
Variables ΒΆ
var ( SECP256K1_COMP_PUB_KEY_SIZE_IN_BYTES = 0x21 //nolint:revive // this is already being used in the code SECP256K1_DER_SIGN_MIN_SIZE_IN_BYTES = 0x46 //nolint:revive // this is already being used in the code SECP256K1_DER_SIGN_MAX_SIZE_IN_BYTES = 0x48 //nolint:revive // this is already being used in the code )
var ErrInsaneCFHeaderCount = errors.New(
"refusing to decode unreasonable number of filter headers")
ErrInsaneCFHeaderCount signals that we were asked to decode an unreasonable number of cfilter headers.
var LatestEncoding = BaseEncoding
LatestEncoding is the most recently specified encoding for the Bitcoin wire protocol.
Functions ΒΆ
func MaxBlockPayload ΒΆ
func MaxBlockPayload() uint64
MaxBlockPayload returns the maximum bytes a block message can be in bytes.
func RandomUint64 ΒΆ
RandomUint64 returns a cryptographically random uint64 value.
func ReadVarBytes ΒΆ
ReadVarBytes reads a variable length byte array. A byte array is encoded as a varInt containing the length of the array followed by the bytes themselves. An error is returned if the length is greater than the passed maxAllowed parameter which helps protect against memory exhaustion attacks and forced panics through malformed messages. The fieldName parameter is only used for the error message so it provides more context in the error.
func ReadVarInt ΒΆ
ReadVarInt reads a variable length integer from r and returns it as an uint64.
func ReadVarString ΒΆ
ReadVarString reads a variable length string from r and returns it as a Go string. A variable length string is encoded as a variable length integer containing the length of the string followed by the bytes that represent the string itself. An error is returned if the length is greater than the maximum block payload size since it helps protect against memory exhaustion attacks and forced panics through malformed messages.
func SetExternalHandler ΒΆ
func SetExternalHandler(cmd string, handler func(io.Reader, uint64, int) (int, Message, []byte, error))
SetExternalHandler allows a third party to override the way a message is handled globally
func SetLimits ΒΆ
func SetLimits(excessiveBlockSize uint64)
SetLimits adjusts various message limits based on max block size configuration.
func VarIntSerializeSize ΒΆ
VarIntSerializeSize returns the number of bytes it would take to serialize val as a variable length integer.
func WriteMessage ΒΆ
WriteMessage writes a bitcoin Message to w including the necessary header information. This function is the same as WriteMessageN except it doesn't return the number of bytes written. This function is mainly provided for backwards compatibility with the original API, but it's also useful for callers that don't care about byte counts.
func WriteMessageN ΒΆ
WriteMessageN writes a bitcoin Message to w including the necessary header information and returns the number of bytes written. This function is the same as WriteMessage except it also returns the number of bytes written.
func WriteMessageWithEncodingN ΒΆ
func WriteMessageWithEncodingN(w io.Writer, msg Message, pver uint32, bsvnet BitcoinNet, encoding MessageEncoding, ) (int, error)
WriteMessageWithEncodingN writes a bitcoin Message to w including the necessary header information and returns the number of bytes written. This function is the same as WriteMessageN except it also allows the caller to specify the message encoding format to be used when serializing wire messages.
func WriteTxOut ΒΆ
WriteTxOut encodes to into the bitcoin protocol encoding for a transaction output (TxOut) to w.
NOTE: This function is exported to allow txscript to compute the new sighashes for witness transactions (BIP0143).
func WriteVarBytes ΒΆ
WriteVarBytes serializes a variable length byte array to w as a varInt containing the number of bytes, followed by the bytes themselves.
func WriteVarInt ΒΆ
WriteVarInt serializes val to w using a variable number of bytes depending on its value.
Types ΒΆ
type BitcoinNet ΒΆ
type BitcoinNet uint32
BitcoinNet represents which bitcoin network a message belongs to.
const ( // MainNet represents the main bitcoin network. MainNet BitcoinNet = 0xe8f3e1e3 // RegTestNet represents the regression test network. No longer in use RegTestNet BitcoinNet = 0xfabfb5da // TestNet represents the test network (version 3). This is the SVNode testnet TestNet BitcoinNet = 0xf4f3e5f4 // TeraTestNet represents the teranode test network. This is the teranode testnet TeraTestNet BitcoinNet = 0x0c09010d // TeraScalingTestNet represents the teranode scaling test network. This is the teranode scaling testnet TeraScalingTestNet BitcoinNet = 0x00000004 Custom BitcoinNet = 0x00000001 // STN represents the scaling test network. STN BitcoinNet = 0x00000000 )
Constants used to indicate the message bitcoin network. They can also be used to seek to the next message when a stream's state is unknown, but this package does not provide that functionality since it's generally a better idea to simply disconnect clients that are misbehaving over TCP.
func (BitcoinNet) String ΒΆ
func (n BitcoinNet) String() string
String returns the BitcoinNet in human-readable form.
type BlockHeader ΒΆ
type BlockHeader struct { // Version of the block. This is different from the protocol version. Version int32 // Hash of the previous block header in the blockchain. PrevBlock chainhash.Hash // Merkle tree reference to hash of all transactions for the block. MerkleRoot chainhash.Hash // Time the block was created. This is, unfortunately, encoded as an // uint32 on the wire and therefore is limited to 2106. Timestamp time.Time // Difficulty target for the block. Bits uint32 // Nonce used to generate the block. Nonce uint32 }
BlockHeader defines information about a block and is used in the bitcoin block (MsgBlock) and headers (MsgHeaders) messages.
func NewBlockHeader ΒΆ
func NewBlockHeader(version int32, prevHash, merkleRootHash *chainhash.Hash, bits, nonce uint32, ) *BlockHeader
NewBlockHeader returns a new BlockHeader using the provided version, previous block hash, merkle root hash, difficulty bits, and nonce used to generate the block with defaults for the remaining fields.
func (*BlockHeader) BlockHash ΒΆ
func (h *BlockHeader) BlockHash() chainhash.Hash
BlockHash computes the block identifier hash for the given block header.
func (*BlockHeader) BsvEncode ΒΆ
func (h *BlockHeader) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation. See Serialize for encoding block headers to be stored to disk, such as in a database, as opposed to encoding block headers for the wire.
func (*BlockHeader) Bsvdecode ΒΆ
func (h *BlockHeader) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation. See Deserialize for decoding block headers stored to disk, such as in a database, as opposed to decoding block headers from the wire.
func (*BlockHeader) Deserialize ΒΆ
func (h *BlockHeader) Deserialize(r io.Reader) error
Deserialize decodes a block header from r into the receiver using a format that is suitable for long-term storage such as a database while respecting the Version field.
type BloomUpdateType ΒΆ
type BloomUpdateType uint8
BloomUpdateType specifies how the filter is updated when a match is found
const ( // BloomUpdateNone indicates the filter is not adjusted when a match is // found. BloomUpdateNone BloomUpdateType = 0 // BloomUpdateAll indicates if the filter matches any data element in a // public key script, the output is serialized and inserted into the // filter. BloomUpdateAll BloomUpdateType = 1 // BloomUpdateP2PubkeyOnly indicates if the filter matches a data // element in a public key script and the script is of the standard // pay-to-pubkey or multisig, the output is serialized and inserted // into the filter. BloomUpdateP2PubkeyOnly BloomUpdateType = 2 )
type ExtendedTxIn ΒΆ
type ExtendedTxIn struct { PreviousOutPoint OutPoint PreviousTxSatoshis uint64 PreviousTxScript []byte SignatureScript []byte Sequence uint32 }
ExtendedTxIn defines an extended bitcoin transaction input.
func NewExtendedTxIn ΒΆ
func NewExtendedTxIn(prevOut *OutPoint, signatureScript []byte, previousTxSatoshis uint64, previousTxScript []byte) *ExtendedTxIn
NewExtendedTxIn returns a new bitcoin transaction input with the provided previous output point and signature script with a default sequence of MaxTxInSequenceNum.
func (*ExtendedTxIn) SerializeSize ΒΆ
func (t *ExtendedTxIn) SerializeSize() int
SerializeSize returns the number of bytes it would take to serialize the transaction input.
type FilterType ΒΆ
type FilterType uint8
FilterType is used to represent a filter type.
const ( // GCSFilterRegular is the regular filter type. GCSFilterRegular FilterType = iota )
type InvType ΒΆ
type InvType uint32
InvType represents the allowed types of inventory vectors. See InvVect.
type InvVect ΒΆ
InvVect defines a bitcoin inventory vector which is used to describe data, as specified by the Type field, that a peer wants, has, or does not have to another peer.
type Message ΒΆ
type Message interface { Bsvdecode(r io.Reader, val uint32, enc MessageEncoding) error BsvEncode(w io.Writer, val uint32, enc MessageEncoding) error Command() string MaxPayloadLength(val uint32) uint64 }
Message is an interface that describes a bitcoin message. A type that implements Message has complete control over the representation of its data and may therefore contain additional or fewer fields than those which are used directly in the protocol encoded message.
func ReadMessage ΒΆ
ReadMessage reads, validates, and parses the next bitcoin Message from r for the provided protocol version and bitcoin network. It returns the parsed Message and raw bytes which comprise the message. This function only differs from ReadMessageN in that it doesn't return the number of bytes read. This function is mainly provided for backwards compatibility with the original API, but it's also useful for callers that don't care about byte counts.
func ReadMessageN ΒΆ
ReadMessageN reads, validates, and parses the next bitcoin Message from r for the provided protocol version and bitcoin network. It returns the number of bytes read in addition to the parsed Message and raw bytes which comprise the message. This function is the same as ReadMessage except it also returns the number of bytes read.
func ReadMessageWithEncodingN ΒΆ
func ReadMessageWithEncodingN(r io.Reader, pver uint32, bsvnet BitcoinNet, enc MessageEncoding) (int, Message, []byte, error)
ReadMessageWithEncodingN reads, validates, and parses the next bitcoin Message from r for the provided protocol version and bitcoin network. It returns the number of bytes read in addition to the parsed Message and raw bytes which comprise the message. This function is the same as ReadMessageN except it allows the caller to specify which message encoding is to consult when decoding wire messages.
type MessageEncoding ΒΆ
type MessageEncoding uint32
MessageEncoding represents the wire message encoding format to be used.
const ( // BaseEncoding encodes all messages in the default format specified // for the Bitcoin wire protocol. BaseEncoding MessageEncoding = 1 << iota )
type MessageError ΒΆ
type MessageError struct { Func string // Function name Description string // Human readable description of the issue }
MessageError describes an issue with a message. An example of some potential issues are messages from the wrong bitcoin network, invalid commands, mismatched checksums, and exceeding max payloads.
This provides a mechanism for the caller to type assert the error to differentiate between general io errors such as io.EOF and issues that resulted from malformed messages.
func (*MessageError) Error ΒΆ
func (e *MessageError) Error() string
Error satisfies the error interface and prints human-readable errors.
type MsgAddr ΒΆ
type MsgAddr struct {
AddrList []*NetAddress
}
MsgAddr implements the Message interface and represents a Bitcoin addr message. It is used to provide a list of known active peers on the network. An active peer is considered one that has transmitted a message within the last 3 hours. Nodes which have not transmitted in that time frame should be forgotten. Each message is limited to a maximum number of addresses, which is currently 1000. As a result, multiple messages must be used to relay the full list.
Use the AddAddress function to build up the list of known addresses when sending an addr message to another peer.
func NewMsgAddr ΒΆ
func NewMsgAddr() *MsgAddr
NewMsgAddr returns a new bitcoin addr message that conforms to the Message interface. See MsgAddr for details.
func (*MsgAddr) AddAddress ΒΆ
func (msg *MsgAddr) AddAddress(na *NetAddress) error
AddAddress adds a known active peer to the message.
func (*MsgAddr) AddAddresses ΒΆ
func (msg *MsgAddr) AddAddresses(netAddrs ...*NetAddress) error
AddAddresses adds multiple known active peers to the message.
func (*MsgAddr) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgAddr) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgAddr) ClearAddresses ΒΆ
func (msg *MsgAddr) ClearAddresses()
ClearAddresses removes all addresses from the message.
func (*MsgAddr) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgAddr) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgAuthch ΒΆ
MsgAuthch authentication handshake message
func NewMsgAuthch ΒΆ
NewMsgAuthch returns a new auth challenge message
func (*MsgAuthch) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgAuthch) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgAuthch) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgAuthch) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgAuthresp ΒΆ
type MsgAuthresp struct { PublicKeyLength uint32 PublicKey []byte ClientNonce uint64 SignatureLength uint32 Signature []byte }
MsgAuthresp authentication response message
func NewMsgAuthresp ΒΆ
func NewMsgAuthresp(publickKey, signature []byte) *MsgAuthresp
NewMsgAuthresp returns a new auth challenge message
func (*MsgAuthresp) BsvEncode ΒΆ
func (msg *MsgAuthresp) BsvEncode(w io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgAuthresp) Bsvdecode ΒΆ
func (msg *MsgAuthresp) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgAuthresp) Command ΒΆ
func (msg *MsgAuthresp) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgAuthresp) MaxPayloadLength ΒΆ
func (msg *MsgAuthresp) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgBlock ΒΆ
type MsgBlock struct { Header BlockHeader Transactions []*MsgTx }
MsgBlock implements the Message interface and represents a bitcoin block message. It is used to deliver block and transaction information in response to a getdata message (MsgGetData) for a given block hash.
func NewMsgBlock ΒΆ
func NewMsgBlock(blockHeader *BlockHeader) *MsgBlock
NewMsgBlock returns a new bitcoin block message that conforms to the Message interface. See MsgBlock for details.
func (*MsgBlock) AddTransaction ΒΆ
AddTransaction adds a transaction to the message.
func (*MsgBlock) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation. See Serialize for encoding blocks to be stored to disk, such as in a database, as opposed to encoding blocks for the wire.
func (*MsgBlock) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation. See Deserialize for decoding blocks stored to disk, such as in a database, as opposed to decoding blocks from the wire.
func (*MsgBlock) ClearTransactions ΒΆ
func (msg *MsgBlock) ClearTransactions()
ClearTransactions removes all transactions from the message.
func (*MsgBlock) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgBlock) Deserialize ΒΆ
Deserialize decodes a block from r into the receiver using a format that is suitable for long-term storage such as a database while respecting the Version field in the block. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored block at all. As of the time this comment was written, the encoded block is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgBlock) DeserializeTxLoc ΒΆ
DeserializeTxLoc decodes r in the same manner Deserialize does, but it takes a byte buffer instead of a generic reader and returns a slice containing the start and length of each transaction within the raw data that is being deserialized.
func (*MsgBlock) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
func (*MsgBlock) Serialize ΒΆ
Serialize encodes the block to w using a format that suitable for long-term storage such as a database while respecting the Version field in the block. This function differs from BsvEncode in that BsvEncode encodes the block to the bitcoin wire protocol to be sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored block at all. As of the time this comment was written, the encoded block is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgBlock) SerializeSize ΒΆ
SerializeSize returns the number of bytes it would take to serialize the block, factoring in any witness data within transaction.
type MsgCFCheckpt ΒΆ
type MsgCFCheckpt struct { FilterType FilterType StopHash chainhash.Hash FilterHeaders []*chainhash.Hash }
MsgCFCheckpt implements the Message interface and represents a bitcoin cfcheckpt message. It is used to deliver committed filter header information in response to a getcfcheckpt message (MsgGetCFCheckpt). See MsgGetCFCheckpt for details on requesting the headers.
func NewMsgCFCheckpt ΒΆ
func NewMsgCFCheckpt(filterType FilterType, stopHash *chainhash.Hash, headersCount int, ) *MsgCFCheckpt
NewMsgCFCheckpt returns a new bitcoin cfheaders message that conforms to the Message interface. See MsgCFCheckpt for details.
func (*MsgCFCheckpt) AddCFHeader ΒΆ
func (msg *MsgCFCheckpt) AddCFHeader(header *chainhash.Hash) error
AddCFHeader adds a new committed filter header to the message.
func (*MsgCFCheckpt) BsvEncode ΒΆ
func (msg *MsgCFCheckpt) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgCFCheckpt) Bsvdecode ΒΆ
func (msg *MsgCFCheckpt) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgCFCheckpt) Command ΒΆ
func (msg *MsgCFCheckpt) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgCFCheckpt) Deserialize ΒΆ
func (msg *MsgCFCheckpt) Deserialize(r io.Reader) error
Deserialize decodes a filter header from r into the receiver using a format that is suitable for long-term storage such as a database. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored filter header at all. As of the time this comment was written, the encoded filter header is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgCFCheckpt) MaxPayloadLength ΒΆ
func (msg *MsgCFCheckpt) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgCFHeaders ΒΆ
type MsgCFHeaders struct { FilterType FilterType StopHash chainhash.Hash PrevFilterHeader chainhash.Hash FilterHashes []*chainhash.Hash }
MsgCFHeaders implements the Message interface and represents a bitcoin cfheaders message. It is used to deliver committed filter header information in response to a getcfheaders message (MsgGetCFHeaders). The maximum number of committed filter headers per message is currently 2000. See MsgGetCFHeaders for details on requesting the headers.
func NewMsgCFHeaders ΒΆ
func NewMsgCFHeaders() *MsgCFHeaders
NewMsgCFHeaders returns a new bitcoin cfheaders message that conforms to the Message interface. See MsgCFHeaders for details.
func (*MsgCFHeaders) AddCFHash ΒΆ
func (msg *MsgCFHeaders) AddCFHash(hash *chainhash.Hash) error
AddCFHash adds a new filter hash to the message.
func (*MsgCFHeaders) BsvEncode ΒΆ
func (msg *MsgCFHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgCFHeaders) Bsvdecode ΒΆ
func (msg *MsgCFHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgCFHeaders) Command ΒΆ
func (msg *MsgCFHeaders) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgCFHeaders) Deserialize ΒΆ
func (msg *MsgCFHeaders) Deserialize(r io.Reader) error
Deserialize decodes a filter header from r into the receiver using a format that is suitable for long-term storage such as a database. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored filter header at all. As of the time this comment was written, the encoded filter header is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgCFHeaders) MaxPayloadLength ΒΆ
func (msg *MsgCFHeaders) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgCFilter ΒΆ
type MsgCFilter struct { FilterType FilterType BlockHash chainhash.Hash Data []byte }
MsgCFilter implements the Message interface and represents a bitcoin cfilter message. It is used to deliver a committed filter in response to a getcfilters (MsgGetCFilters) message.
func NewMsgCFilter ΒΆ
func NewMsgCFilter(filterType FilterType, blockHash *chainhash.Hash, data []byte, ) *MsgCFilter
NewMsgCFilter returns a new bitcoin cfilter message that conforms to the Message interface. See MsgCFilter for details.
func (*MsgCFilter) BsvEncode ΒΆ
func (msg *MsgCFilter) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgCFilter) Bsvdecode ΒΆ
func (msg *MsgCFilter) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgCFilter) Command ΒΆ
func (msg *MsgCFilter) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgCFilter) Deserialize ΒΆ
func (msg *MsgCFilter) Deserialize(r io.Reader) error
Deserialize decodes a filter from r into the receiver using a format that is suitable for long-term storage such as a database. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored filter at all. As of the time this comment was written, the encoded filter is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgCFilter) MaxPayloadLength ΒΆ
func (msg *MsgCFilter) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgExtMsg ΒΆ
type MsgExtMsg struct { NumberOfFields uint64 // numberOfFields is set to 1, increment if new properties are added MaxRecvPayloadLength uint64 }
MsgExtMsg implements the Message interface and represents a bitcoin extmsg message.
func NewMsgExtMsg ΒΆ
NewMsgExtMsg returns a new bitcoin feefilter message that conforms to the Message interface. See MsgFeeFilter for details.
func (*MsgExtMsg) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgExtMsg) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgExtMsg) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgExtMsg) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgExtendedTx ΒΆ
type MsgExtendedTx struct { Version int32 TxIn []*ExtendedTxIn TxOut []*TxOut LockTime uint32 }
MsgExtendedTx implements the Message interface and represents a bitcoin tx message. It is used to deliver transaction information in response to a getdata message (MsgGetData) for a given transaction.
Use the AddTxIn and AddTxOut functions to build up the list of transaction inputs and outputs.
func NewMsgExtendedTx ΒΆ
func NewMsgExtendedTx(version int32) *MsgExtendedTx
NewMsgExtendedTx returns a new extended bitcoin tx message that conforms to the Message interface. The return instance has a default version of TxVersion, and there are no transaction inputs or outputs. Also, the lock time is set to zero to indicate the transaction is valid immediately as opposed to some time in the future.
func (*MsgExtendedTx) AddTxIn ΒΆ
func (msg *MsgExtendedTx) AddTxIn(ti *ExtendedTxIn)
AddTxIn adds a transaction input to the message.
func (*MsgExtendedTx) AddTxOut ΒΆ
func (msg *MsgExtendedTx) AddTxOut(to *TxOut)
AddTxOut adds a transaction output to the message.
func (*MsgExtendedTx) BsvEncode ΒΆ
func (msg *MsgExtendedTx) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation. See Serialize for encoding transactions to be stored to disk, such as in a database, as opposed to encoding transactions for the wire.
func (*MsgExtendedTx) Bsvdecode ΒΆ
func (msg *MsgExtendedTx) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation. See Deserialize for decoding transactions stored to disk, such as in a database, as opposed to decoding transactions from the wire.
func (*MsgExtendedTx) Command ΒΆ
func (msg *MsgExtendedTx) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgExtendedTx) Copy ΒΆ
func (msg *MsgExtendedTx) Copy() *MsgTx
Copy creates a deep copy of a transaction so that the original does not get modified when the copy is manipulated.
func (*MsgExtendedTx) Deserialize ΒΆ
func (msg *MsgExtendedTx) Deserialize(r io.Reader) error
Deserialize decodes a transaction from r into the receiver using a format that is suitable for long-term storage such as a database while respecting the Version field in the transaction. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored transaction at all. As of the time this comment was written, the encoded transaction is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgExtendedTx) MaxPayloadLength ΒΆ
func (msg *MsgExtendedTx) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
func (*MsgExtendedTx) PkScriptLocs ΒΆ
func (msg *MsgExtendedTx) PkScriptLocs() []int
PkScriptLocs returns a slice containing the start of each public key script within the raw-serialized transaction. The caller can easily get the length of each script by using len on the script available via the appropriate transaction output entry.
func (*MsgExtendedTx) Serialize ΒΆ
func (msg *MsgExtendedTx) Serialize(w io.Writer) error
Serialize encodes the transaction to w using a format that suitable for long-term storage such as a database while respecting the Version field in the transaction. This function differs from BsvEncode in that BsvEncode encodes the transaction to the bitcoin wire protocol to be sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored transaction at all. As of the time this comment was written, the encoded transaction is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgExtendedTx) SerializeSize ΒΆ
func (msg *MsgExtendedTx) SerializeSize() int
SerializeSize returns the number of bytes it would take to serialize the
transaction.
func (*MsgExtendedTx) TxHash ΒΆ
func (msg *MsgExtendedTx) TxHash() chainhash.Hash
TxHash generates the Hash for the transaction.
type MsgFeeFilter ΒΆ
type MsgFeeFilter struct {
MinFee int64
}
MsgFeeFilter implements the Message interface and represents a bitcoin feefilter message. It is used to request the receiving peer does not announce any transactions below the specified minimum fee rate.
This message was not added until protocol versions starting with FeeFilterVersion.
func NewMsgFeeFilter ΒΆ
func NewMsgFeeFilter(minFee int64) *MsgFeeFilter
NewMsgFeeFilter returns a new bitcoin feefilter message that conforms to the Message interface. See MsgFeeFilter for details.
func (*MsgFeeFilter) BsvEncode ΒΆ
func (msg *MsgFeeFilter) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgFeeFilter) Bsvdecode ΒΆ
func (msg *MsgFeeFilter) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgFeeFilter) Command ΒΆ
func (msg *MsgFeeFilter) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgFeeFilter) MaxPayloadLength ΒΆ
func (msg *MsgFeeFilter) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgFilterAdd ΒΆ
type MsgFilterAdd struct {
Data []byte
}
MsgFilterAdd implements the Message interface and represents a bitcoin filteradd message. It is used to add a data element to an existing Bloom filter.
This message was not added until protocol version BIP0037Version.
func NewMsgFilterAdd ΒΆ
func NewMsgFilterAdd(data []byte) *MsgFilterAdd
NewMsgFilterAdd returns a new bitcoin filteradd message that conforms to the Message interface. See MsgFilterAdd for details.
func (*MsgFilterAdd) BsvEncode ΒΆ
func (msg *MsgFilterAdd) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgFilterAdd) Bsvdecode ΒΆ
func (msg *MsgFilterAdd) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgFilterAdd) Command ΒΆ
func (msg *MsgFilterAdd) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgFilterAdd) MaxPayloadLength ΒΆ
func (msg *MsgFilterAdd) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgFilterClear ΒΆ
type MsgFilterClear struct{}
MsgFilterClear implements the Message interface and represents a bitcoin filterclear message which is used to reset a Bloom filter.
This message was not added until protocol version BIP0037Version and has no payload.
func NewMsgFilterClear ΒΆ
func NewMsgFilterClear() *MsgFilterClear
NewMsgFilterClear returns a new bitcoin filterclear message that conforms to the Message interface. See MsgFilterClear for details.
func (*MsgFilterClear) BsvEncode ΒΆ
func (msg *MsgFilterClear) BsvEncode(_ io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgFilterClear) Bsvdecode ΒΆ
func (msg *MsgFilterClear) Bsvdecode(_ io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgFilterClear) Command ΒΆ
func (msg *MsgFilterClear) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgFilterClear) MaxPayloadLength ΒΆ
func (msg *MsgFilterClear) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgFilterLoad ΒΆ
type MsgFilterLoad struct { Filter []byte HashFuncs uint32 Tweak uint32 Flags BloomUpdateType }
MsgFilterLoad implements the Message interface and represents a bitcoin filterload message which is used to reset a Bloom filter.
This message was not added until protocol version BIP0037Version.
func NewMsgFilterLoad ΒΆ
func NewMsgFilterLoad(filter []byte, hashFuncs, tweak uint32, flags BloomUpdateType) *MsgFilterLoad
NewMsgFilterLoad returns a new bitcoin filterload message that conforms to the Message interface. See MsgFilterLoad for details.
func (*MsgFilterLoad) BsvEncode ΒΆ
func (msg *MsgFilterLoad) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgFilterLoad) Bsvdecode ΒΆ
func (msg *MsgFilterLoad) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgFilterLoad) Command ΒΆ
func (msg *MsgFilterLoad) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgFilterLoad) MaxPayloadLength ΒΆ
func (msg *MsgFilterLoad) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetAddr ΒΆ
type MsgGetAddr struct{}
MsgGetAddr implements the Message interface and represents a bitcoin getaddr message. It is used to request a list of known active peers on the network from a peer to help identify potential nodes. The list is returned via one or more addr messages (MsgAddr).
This message has no payload.
func NewMsgGetAddr ΒΆ
func NewMsgGetAddr() *MsgGetAddr
NewMsgGetAddr returns a new bitcoin getaddr message that conforms to the Message interface. See MsgGetAddr for details.
func (*MsgGetAddr) BsvEncode ΒΆ
func (msg *MsgGetAddr) BsvEncode(_ io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetAddr) Bsvdecode ΒΆ
func (msg *MsgGetAddr) Bsvdecode(_ io.Reader, _ uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetAddr) Command ΒΆ
func (msg *MsgGetAddr) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetAddr) MaxPayloadLength ΒΆ
func (msg *MsgGetAddr) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetBlocks ΒΆ
type MsgGetBlocks struct { ProtocolVersion uint32 BlockLocatorHashes []*chainhash.Hash HashStop chainhash.Hash }
MsgGetBlocks implements the Message interface and represents a bitcoin getblocks message. It is used to request a list of blocks starting after the last known hash in the slice of block locator hashes. The list is returned via an inv message (MsgInv) and is limited by a specific hash to stop at or the maximum number of blocks per message, which is currently 500.
Set the HashStop field to the hash at which to stop and use AddBlockLocatorHash to build up the list of block locator hashes.
The algorithm for building the block locator hashes should be to add the hashes in reverse order until you reach the genesis block. To keep the list of locator hashes to a reasonable number of entries, first add the most recent 10 block hashes, then double the step each loop iteration to exponentially decrease the number of hashes the further away from head and closer to the genesis block you get.
func NewMsgGetBlocks ΒΆ
func NewMsgGetBlocks(hashStop *chainhash.Hash) *MsgGetBlocks
NewMsgGetBlocks returns a new bitcoin getblocks message that conforms to the Message interface using the passed parameters and defaults for the remaining fields.
func (*MsgGetBlocks) AddBlockLocatorHash ΒΆ
func (msg *MsgGetBlocks) AddBlockLocatorHash(hash *chainhash.Hash) error
AddBlockLocatorHash adds a new block locator hash to the message.
func (*MsgGetBlocks) BsvEncode ΒΆ
func (msg *MsgGetBlocks) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetBlocks) Bsvdecode ΒΆ
func (msg *MsgGetBlocks) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetBlocks) Command ΒΆ
func (msg *MsgGetBlocks) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetBlocks) MaxPayloadLength ΒΆ
func (msg *MsgGetBlocks) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetCFCheckpt ΒΆ
type MsgGetCFCheckpt struct { FilterType FilterType StopHash chainhash.Hash }
MsgGetCFCheckpt is a request for filter headers at evenly spaced intervals throughout the blockchain history. It allows setting the FilterType field to get headers in the chain of basic (0x00) or extended (0x01) headers.
func NewMsgGetCFCheckpt ΒΆ
func NewMsgGetCFCheckpt(filterType FilterType, stopHash *chainhash.Hash) *MsgGetCFCheckpt
NewMsgGetCFCheckpt returns a new bitcoin getcfcheckpt message that conforms to the Message interface using the passed parameters and defaults for the remaining fields.
func (*MsgGetCFCheckpt) BsvEncode ΒΆ
func (msg *MsgGetCFCheckpt) BsvEncode(w io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetCFCheckpt) Bsvdecode ΒΆ
func (msg *MsgGetCFCheckpt) Bsvdecode(r io.Reader, _ uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetCFCheckpt) Command ΒΆ
func (msg *MsgGetCFCheckpt) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetCFCheckpt) MaxPayloadLength ΒΆ
func (msg *MsgGetCFCheckpt) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetCFHeaders ΒΆ
type MsgGetCFHeaders struct { FilterType FilterType StartHeight uint32 StopHash chainhash.Hash }
MsgGetCFHeaders is a message similar to MsgGetHeaders, but for committed filter headers. It allows setting the FilterType field to get headers in the chain of basic (0x00) or extended (0x01) headers.
func NewMsgGetCFHeaders ΒΆ
func NewMsgGetCFHeaders(filterType FilterType, startHeight uint32, stopHash *chainhash.Hash, ) *MsgGetCFHeaders
NewMsgGetCFHeaders returns a new bitcoin getcfheader message that conforms to the Message interface using the passed parameters and defaults for the remaining fields.
func (*MsgGetCFHeaders) BsvEncode ΒΆ
func (msg *MsgGetCFHeaders) BsvEncode(w io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetCFHeaders) Bsvdecode ΒΆ
func (msg *MsgGetCFHeaders) Bsvdecode(r io.Reader, _ uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetCFHeaders) Command ΒΆ
func (msg *MsgGetCFHeaders) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetCFHeaders) MaxPayloadLength ΒΆ
func (msg *MsgGetCFHeaders) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetCFilters ΒΆ
type MsgGetCFilters struct { FilterType FilterType StartHeight uint32 StopHash chainhash.Hash }
MsgGetCFilters implements the Message interface and represents a bitcoin getcfilters message. It is used to request committed filters for a range of blocks.
func NewMsgGetCFilters ΒΆ
func NewMsgGetCFilters(filterType FilterType, startHeight uint32, stopHash *chainhash.Hash, ) *MsgGetCFilters
NewMsgGetCFilters returns a new bitcoin getcfilters message that conforms to the Message interface using the passed parameters and defaults for the remaining fields.
func (*MsgGetCFilters) BsvEncode ΒΆ
func (msg *MsgGetCFilters) BsvEncode(w io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetCFilters) Bsvdecode ΒΆ
func (msg *MsgGetCFilters) Bsvdecode(r io.Reader, _ uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetCFilters) Command ΒΆ
func (msg *MsgGetCFilters) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetCFilters) MaxPayloadLength ΒΆ
func (msg *MsgGetCFilters) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetData ΒΆ
type MsgGetData struct {
InvList []*InvVect
}
MsgGetData implements the Message interface and represents a bitcoin getdata message. It is used to request data such as blocks and transactions from another peer. It should be used in response to the inv (MsgInv) message to request the actual data referenced by each inventory vector the receiving peer doesn't already have. Each message is limited to a maximum number of inventory vectors, which is currently 50,000. As a result, multiple messages must be used to request larger amounts of data.
Use the AddInvVect function to build up the list of inventory vectors when sending a getdata message to another peer.
func NewMsgGetData ΒΆ
func NewMsgGetData() *MsgGetData
NewMsgGetData returns a new bitcoin getdata message that conforms to the Message interface. See MsgGetData for details.
func NewMsgGetDataSizeHint ΒΆ
func NewMsgGetDataSizeHint(sizeHint uint) *MsgGetData
NewMsgGetDataSizeHint returns a new bitcoin getdata message that conforms to the Message interface. See MsgGetData for details. This function differs from NewMsgGetData in that it allows a default allocation size for the backing array which houses the inventory vector list. This allows callers who know in advance how large the inventory list will grow to avoid the overhead of growing the internal backing array several times when appending large numbers of inventory vectors with AddInvVect. Note that the specified hint is just that - a hint that is used for the default allocation size. Adding more (or less) inventory vectors will still work properly. The size hint is limited to MaxInvPerMsg.
func (*MsgGetData) AddInvVect ΒΆ
func (msg *MsgGetData) AddInvVect(iv *InvVect) error
AddInvVect adds an inventory vector to the message.
func (*MsgGetData) BsvEncode ΒΆ
func (msg *MsgGetData) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetData) Bsvdecode ΒΆ
func (msg *MsgGetData) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetData) Command ΒΆ
func (msg *MsgGetData) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetData) MaxPayloadLength ΒΆ
func (msg *MsgGetData) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgGetHeaders ΒΆ
type MsgGetHeaders struct { ProtocolVersion uint32 BlockLocatorHashes []*chainhash.Hash HashStop chainhash.Hash }
MsgGetHeaders implements the Message interface and represents a bitcoin getheaders message. It is used to request a list of block headers for blocks starting after the last known hash in the slice of block locator hashes. The list is returned via a headers message (MsgHeaders) and is limited by a specific hash to stop at or the maximum number of block headers per message, which is currently 2000.
Set the HashStop field to the hash at which to stop and use AddBlockLocatorHash to build up the list of block locator hashes.
The algorithm for building the block locator hashes should be to add the hashes in reverse order until you reach the genesis block. To keep the list of locator hashes to a reasonable number of entries, first add the most recent 10 block hashes, then double the step each loop iteration to exponentially decrease the number of hashes the further away from head and closer to the genesis block you get.
func NewMsgGetHeaders ΒΆ
func NewMsgGetHeaders() *MsgGetHeaders
NewMsgGetHeaders returns a new bitcoin getheaders message that conforms to the Message interface. See MsgGetHeaders for details.
func (*MsgGetHeaders) AddBlockLocatorHash ΒΆ
func (msg *MsgGetHeaders) AddBlockLocatorHash(hash *chainhash.Hash) error
AddBlockLocatorHash adds a new block locator hash to the message.
func (*MsgGetHeaders) BsvEncode ΒΆ
func (msg *MsgGetHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgGetHeaders) Bsvdecode ΒΆ
func (msg *MsgGetHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgGetHeaders) Command ΒΆ
func (msg *MsgGetHeaders) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgGetHeaders) MaxPayloadLength ΒΆ
func (msg *MsgGetHeaders) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgHeaders ΒΆ
type MsgHeaders struct {
Headers []*BlockHeader
}
MsgHeaders implements the Message interface and represents a bitcoin headers message. It is used to deliver block header information in response to a getheaders message (MsgGetHeaders). The maximum number of block headers per message is currently 2000. See MsgGetHeaders for details on requesting the headers.
func NewMsgHeaders ΒΆ
func NewMsgHeaders() *MsgHeaders
NewMsgHeaders returns a new bitcoin headers message that conforms to the Message interface. See MsgHeaders for details.
func (*MsgHeaders) AddBlockHeader ΒΆ
func (msg *MsgHeaders) AddBlockHeader(bh *BlockHeader) error
AddBlockHeader adds a new block header to the message.
func (*MsgHeaders) BsvEncode ΒΆ
func (msg *MsgHeaders) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgHeaders) Bsvdecode ΒΆ
func (msg *MsgHeaders) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgHeaders) Command ΒΆ
func (msg *MsgHeaders) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgHeaders) MaxPayloadLength ΒΆ
func (msg *MsgHeaders) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgInv ΒΆ
type MsgInv struct {
InvList []*InvVect
}
MsgInv implements the Message interface and represents a bitcoin inv message. It is used to advertise a peer's known data such as blocks and transactions through inventory vectors. It may be sent unsolicited to inform other peers of the data or in response to a getblocks message (MsgGetBlocks). Each message is limited to a maximum number of inventory vectors, which is currently 50,000.
Use the AddInvVect function to build up the list of inventory vectors when sending an inv message to another peer.
func NewMsgInv ΒΆ
func NewMsgInv() *MsgInv
NewMsgInv returns a new bitcoin inv message that conforms to the Message interface. See MsgInv for details.
func NewMsgInvSizeHint ΒΆ
NewMsgInvSizeHint returns a new bitcoin inv message that conforms to the Message interface. See MsgInv for details. This function differs from NewMsgInv in that it allows a default allocation size for the backing array which houses the inventory vector list. This allows callers who know in advance how large the inventory list will grow to avoid the overhead of growing the internal backing array several times when appending large numbers of inventory vectors with AddInvVect. Note that the specified hint is just that - a hint that is used for the default allocation size. Adding more (or less) inventory vectors will still work properly. The size hint is limited to MaxInvPerMsg.
func (*MsgInv) AddInvVect ΒΆ
AddInvVect adds an inventory vector to the message.
func (*MsgInv) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgInv) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgInv) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgInv) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgMemPool ΒΆ
type MsgMemPool struct{}
MsgMemPool implements the Message interface and represents a bitcoin mempool message. It is used to request a list of transactions still in the active memory pool of a relay.
This message has no payload and was not added until protocol versions starting with BIP0035Version.
func NewMsgMemPool ΒΆ
func NewMsgMemPool() *MsgMemPool
NewMsgMemPool returns a new bitcoin pong message that conforms to the Message interface. See MsgPong for details.
func (*MsgMemPool) BsvEncode ΒΆ
func (msg *MsgMemPool) BsvEncode(_ io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgMemPool) Bsvdecode ΒΆ
func (msg *MsgMemPool) Bsvdecode(_ io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgMemPool) Command ΒΆ
func (msg *MsgMemPool) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgMemPool) MaxPayloadLength ΒΆ
func (msg *MsgMemPool) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgMerkleBlock ΒΆ
type MsgMerkleBlock struct { Header BlockHeader Transactions uint32 Hashes []*chainhash.Hash Flags []byte }
MsgMerkleBlock implements the Message interface and represents a bitcoin merkleblock message which is used to reset a Bloom filter.
This message was not added until protocol version BIP0037Version.
func NewMsgMerkleBlock ΒΆ
func NewMsgMerkleBlock(bh *BlockHeader) *MsgMerkleBlock
NewMsgMerkleBlock returns a new bitcoin merkleblock message that conforms to the Message interface. See MsgMerkleBlock for details.
func (*MsgMerkleBlock) AddTxHash ΒΆ
func (msg *MsgMerkleBlock) AddTxHash(hash *chainhash.Hash) error
AddTxHash adds a new transaction hash to the message.
func (*MsgMerkleBlock) BsvEncode ΒΆ
func (msg *MsgMerkleBlock) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgMerkleBlock) Bsvdecode ΒΆ
func (msg *MsgMerkleBlock) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgMerkleBlock) Command ΒΆ
func (msg *MsgMerkleBlock) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgMerkleBlock) MaxPayloadLength ΒΆ
func (msg *MsgMerkleBlock) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgNotFound ΒΆ
type MsgNotFound struct {
InvList []*InvVect
}
MsgNotFound defines a bitcoin notfound message which is sent in response to a getdata message if any of the requested data is not available on the peer. Each message is limited to a maximum number of inventory vectors, which is currently 50,000.
Use the AddInvVect function to build up the list of inventory vectors when sending a notfound message to another peer.
func NewMsgNotFound ΒΆ
func NewMsgNotFound() *MsgNotFound
NewMsgNotFound returns a new bitcoin notfound message that conforms to the Message interface. See MsgNotFound for details.
func (*MsgNotFound) AddInvVect ΒΆ
func (msg *MsgNotFound) AddInvVect(iv *InvVect) error
AddInvVect adds an inventory vector to the message.
func (*MsgNotFound) BsvEncode ΒΆ
func (msg *MsgNotFound) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgNotFound) Bsvdecode ΒΆ
func (msg *MsgNotFound) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgNotFound) Command ΒΆ
func (msg *MsgNotFound) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgNotFound) MaxPayloadLength ΒΆ
func (msg *MsgNotFound) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgPing ΒΆ
type MsgPing struct { // Unique value associated with a message that is used to identify // a specific ping message. Nonce uint64 }
MsgPing implements the Message interface and represents a bitcoin ping message.
For versions BIP0031Version and earlier, it is used primarily to confirm that a connection is still valid. A transmission error is typically interpreted as a closed connection and that the peer should be removed. For versions AFTER BIP0031Version it contains an identifier which can be returned in the pong message to determine network timing.
The payload for this message just consists of a nonce used for identifying it later.
func NewMsgPing ΒΆ
NewMsgPing returns a new bitcoin ping message that conforms to the Message interface. See MsgPing for details.
func (*MsgPing) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgPing) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgPing) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgPing) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgPong ΒΆ
type MsgPong struct { // Unique value associated with a message that is used to identify // a specific ping message. Nonce uint64 }
MsgPong implements the Message interface and represents a bitcoin pong message which is used primarily to confirm that a connection is still valid in response to a bitcoin ping message (MsgPing).
This message was not added until protocol versions AFTER BIP0031Version.
func NewMsgPong ΒΆ
NewMsgPong returns a new bitcoin pong message that conforms to the Message interface. See MsgPong for details.
func (*MsgPong) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgPong) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgPong) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgPong) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgProtoconf ΒΆ
type MsgProtoconf struct { NumberOfFields uint64 MaxRecvPayloadLength uint32 StreamPolicies []string }
MsgProtoconf is a message that is sent by the server to the client
func NewMsgProtoconf ΒΆ
func NewMsgProtoconf(maxRecvPayloadLength uint32, allowBlockPriority bool) *MsgProtoconf
NewMsgProtoconf returns a new bitcoin protoconf message that conforms to the Message interface. See MsgFeeFilter for details.
func (*MsgProtoconf) BsvEncode ΒΆ
func (msg *MsgProtoconf) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgProtoconf) Bsvdecode ΒΆ
func (msg *MsgProtoconf) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgProtoconf) Command ΒΆ
func (msg *MsgProtoconf) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgProtoconf) MaxPayloadLength ΒΆ
func (msg *MsgProtoconf) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgReject ΒΆ
type MsgReject struct { // Cmd is the command for the message which was rejected such as // CmdBlock or CmdTx. This can be obtained from the Command function // of a Message. Cmd string // RejectCode is a code indicating why the command was rejected. It // is encoded as an uint8 on the wire. Code RejectCode // Reason is a human-readable string with specific details (over and // above the reject code) about why the command was rejected. Reason string // Hash identifies a specific block or transaction that was rejected // and therefore only applies the MsgBlock and MsgTx messages. Hash chainhash.Hash }
MsgReject implements the Message interface and represents a bitcoin reject message.
This message was not added until protocol version RejectVersion.
func NewMsgReject ΒΆ
func NewMsgReject(command string, code RejectCode, reason string) *MsgReject
NewMsgReject returns a new bitcoin reject a message that conforms to the Message interface. See MsgReject for details.
func (*MsgReject) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgReject) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgReject) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgReject) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgSendHeaders ΒΆ
type MsgSendHeaders struct{}
MsgSendHeaders implements the Message interface and represents a bitcoin sendheaders message. It is used to request the peer send block headers rather than inventory vectors.
This message has no payload and was not added until protocol versions starting with SendHeadersVersion.
func NewMsgSendHeaders ΒΆ
func NewMsgSendHeaders() *MsgSendHeaders
NewMsgSendHeaders returns a new bitcoin sendheaders message that conforms to the Message interface. See MsgSendHeaders for details.
func (*MsgSendHeaders) BsvEncode ΒΆ
func (msg *MsgSendHeaders) BsvEncode(_ io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgSendHeaders) Bsvdecode ΒΆ
func (msg *MsgSendHeaders) Bsvdecode(_ io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgSendHeaders) Command ΒΆ
func (msg *MsgSendHeaders) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgSendHeaders) MaxPayloadLength ΒΆ
func (msg *MsgSendHeaders) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgSendcmpct ΒΆ
MsgSendcmpct defines a bitcoin sendcmpct message which is used to negotiate the receipt of compact blocks. It was added in BIP0031.
func NewMsgSendcmpct ΒΆ
func NewMsgSendcmpct(sendcmpct bool) *MsgSendcmpct
NewMsgSendcmpct returns a new compact blocks negotiation message that conforms to the Message interface. See MsgSendcmpct for details.
func (*MsgSendcmpct) BsvEncode ΒΆ
func (msg *MsgSendcmpct) BsvEncode(w io.Writer, _ uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgSendcmpct) Bsvdecode ΒΆ
func (msg *MsgSendcmpct) Bsvdecode(r io.Reader, _ uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgSendcmpct) Command ΒΆ
func (msg *MsgSendcmpct) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgSendcmpct) MaxPayloadLength ΒΆ
func (msg *MsgSendcmpct) MaxPayloadLength(_ uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgTx ΒΆ
MsgTx implements the Message interface and represents a bitcoin tx message. It is used to deliver transaction information in response to a getdata message (MsgGetData) for a given transaction.
Use the AddTxIn and AddTxOut functions to build up the list of transaction inputs and outputs.
func NewMsgTx ΒΆ
NewMsgTx returns a new bitcoin tx message that conforms to the Message interface. The return instance has a default version of TxVersion, and there are no transaction inputs or outputs. Also, the lock time is set to zero to indicate the transaction is valid immediately as opposed to some time in the future.
func (*MsgTx) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation. See Serialize for encoding transactions to be stored to disk, such as in a database, as opposed to encoding transactions for the wire.
func (*MsgTx) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation. See Deserialize for decoding transactions stored to disk, such as in a database, as opposed to decoding transactions from the wire.
func (*MsgTx) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgTx) Copy ΒΆ
Copy creates a deep copy of a transaction so that the original does not get modified when the copy is manipulated.
func (*MsgTx) Deserialize ΒΆ
Deserialize decodes a transaction from r into the receiver using a format that is suitable for long-term storage such as a database while respecting the Version field in the transaction. This function differs from Bsvdecode in that Bsvdecode decodes from the bitcoin wire protocol as it was sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored transaction at all. As of the time this comment was written, the encoded transaction is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgTx) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
func (*MsgTx) PkScriptLocs ΒΆ
PkScriptLocs returns a slice containing the start of each public key script within the raw-serialized transaction. The caller can easily get the length of each script by using len on the script available via the appropriate transaction output entry.
func (*MsgTx) Serialize ΒΆ
Serialize encodes the transaction to w using a format that suitable for long-term storage such as a database while respecting the Version field in the transaction. This function differs from BsvEncode in that BsvEncode encodes the transaction to the bitcoin wire protocol to be sent across the network. The wire encoding can technically differ depending on the protocol version and doesn't even really need to match the format of a stored transaction at all. As of the time this comment was written, the encoded transaction is the same in both instances, but there is a distinct difference and separating the two allows the API to be flexible enough to deal with changes.
func (*MsgTx) SerializeSize ΒΆ
SerializeSize returns the number of bytes it would take to serialize the
transaction.
type MsgVerAck ΒΆ
type MsgVerAck struct{}
MsgVerAck defines a bitcoin verack message which is used for a peer to acknowledge a version message (MsgVersion) after it has used the information to negotiate parameters. It implements the Message interface.
This message has no payload.
func NewMsgVerAck ΒΆ
func NewMsgVerAck() *MsgVerAck
NewMsgVerAck returns a new bitcoin verack message that conforms to the Message interface.
func (*MsgVerAck) BsvEncode ΒΆ
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgVerAck) Bsvdecode ΒΆ
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. This is part of the Message interface implementation.
func (*MsgVerAck) Command ΒΆ
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgVerAck) MaxPayloadLength ΒΆ
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type MsgVersion ΒΆ
type MsgVersion struct { // Version of the protocol the node is using. ProtocolVersion int32 // Bitfield which identifies the enabled services. Services ServiceFlag // Time the message was generated. This is encoded as an int64 on the wire. Timestamp time.Time // Address of the remote peer. AddrYou NetAddress // Address of the local peer. AddrMe NetAddress // Unique value associated with a message that is used to detect self-connections. Nonce uint64 // The user agent that generated the message. This is encoded as a varString // on the wire. This has a max length of MaxUserAgentLen. UserAgent string // Last block seen by the generator of the version message. LastBlock int32 // Don't announce transactions to peer. DisableRelayTx bool }
MsgVersion implements the Message interface and represents a bitcoin version message. It is used for a peer to advertise itself as soon as an outbound connection is made. The remote peer then uses this information along with its own to negotiate. The remote peer must then respond with a version message of its own containing the negotiated values followed by a verack message (MsgVerAck). This exchange must take place before any further communication is allowed to proceed.
func NewMsgVersion ΒΆ
func NewMsgVersion(me, you *NetAddress, nonce uint64, lastBlock int32, ) *MsgVersion
NewMsgVersion returns a new bitcoin version message that conforms to the Message interface using the passed parameters and defaults for the remaining fields.
func (*MsgVersion) AddService ΒΆ
func (msg *MsgVersion) AddService(service ServiceFlag)
AddService adds service as a supported service by the peer generating the message.
func (*MsgVersion) AddUserAgent ΒΆ
func (msg *MsgVersion) AddUserAgent(name, version string, comments ...string, ) error
AddUserAgent adds a user agent to the user agent string for the version message. The version string is not defined to any strict format, although it is recommended to use the form "major.minor.revision" e.g. "2.6.41".
func (*MsgVersion) BsvEncode ΒΆ
func (msg *MsgVersion) BsvEncode(w io.Writer, pver uint32, _ MessageEncoding) error
BsvEncode encodes the receiver to w using the bitcoin protocol encoding. This is part of the Message interface implementation.
func (*MsgVersion) Bsvdecode ΒΆ
func (msg *MsgVersion) Bsvdecode(r io.Reader, pver uint32, _ MessageEncoding) error
Bsvdecode decodes r using the bitcoin protocol encoding into the receiver. The version message is special in that the protocol version hasn't been negotiated yet. As a result, the pver field is ignored and any fields that are added in new versions are optional. This also means that r must be a *bytes.Buffer so the number of remaining bytes can be figured out.
This is part of the Message interface implementation.
func (*MsgVersion) Command ΒΆ
func (msg *MsgVersion) Command() string
Command returns the protocol command string for the message. This is part of the Message interface implementation.
func (*MsgVersion) HasService ΒΆ
func (msg *MsgVersion) HasService(service ServiceFlag) bool
HasService returns whether the specified service is supported by the peer that generated the message.
func (*MsgVersion) MaxPayloadLength ΒΆ
func (msg *MsgVersion) MaxPayloadLength(pver uint32) uint64
MaxPayloadLength returns the maximum length the payload can be for the receiver. This is part of the Message interface implementation.
type NetAddress ΒΆ
type NetAddress struct { // Last time the address was seen. This is, unfortunately, encoded as a // uint32 on the wire and therefore is limited to 2106. This field is // not present in the bitcoin version message (MsgVersion) nor was it // added until protocol version >= NetAddressTimeVersion. Timestamp time.Time // Bitfield which identifies the services supported by the address. Services ServiceFlag // IP address of the peer. IP net.IP // Port the peer is using. This is encoded in big endian on the wire // which differs from most everything else. Port uint16 }
NetAddress defines information about a peer on the network including the time it was last seen, the services it supports, its IP address, and port.
func NewNetAddress ΒΆ
func NewNetAddress(addr *net.TCPAddr, services ServiceFlag) *NetAddress
NewNetAddress returns a new NetAddress using the provided TCP address and supported services with defaults for the remaining fields.
func NewNetAddressIPPort ΒΆ
func NewNetAddressIPPort(ip net.IP, port uint16, services ServiceFlag) *NetAddress
NewNetAddressIPPort returns a new NetAddress using the provided IP, port, and supported services with defaults for the remaining fields.
func NewNetAddressTimestamp ΒΆ
func NewNetAddressTimestamp( timestamp time.Time, services ServiceFlag, ip net.IP, port uint16, ) *NetAddress
NewNetAddressTimestamp returns a new NetAddress using the provided timestamp, IP, port, and supported services. The timestamp is rounded to single second precision.
func (*NetAddress) AddService ΒΆ
func (na *NetAddress) AddService(service ServiceFlag)
AddService adds service as a supported service by the peer generating the message.
func (*NetAddress) HasService ΒΆ
func (na *NetAddress) HasService(service ServiceFlag) bool
HasService returns whether the specified service is supported by the address.
type OutPoint ΒΆ
OutPoint defines a bitcoin data type used to track previous transaction outputs.
func NewOutPoint ΒΆ
NewOutPoint returns a new bitcoin transaction outpoint point with the provided hash and index.
type RejectCode ΒΆ
type RejectCode uint8
RejectCode represents a numeric value by which a remote peer indicates why a message was rejected.
const ( RejectMalformed RejectCode = 0x01 RejectInvalid RejectCode = 0x10 RejectObsolete RejectCode = 0x11 RejectDuplicate RejectCode = 0x12 RejectNonstandard RejectCode = 0x40 RejectDust RejectCode = 0x41 RejectInsufficientFee RejectCode = 0x42 RejectCheckpoint RejectCode = 0x43 )
These constants define the various supported reject codes.
func (RejectCode) String ΒΆ
func (code RejectCode) String() string
String returns the RejectCode in human-readable form.
type ServiceFlag ΒΆ
type ServiceFlag uint64
ServiceFlag identifies services supported by a bitcoin peer.
const ( // SFNodeNetwork is a flag used to indicate a peer is a full node. SFNodeNetwork ServiceFlag = 1 << iota // SFNodeGetUTXO is a flag used to indicate a peer supports the // getutxos and utxos commands (BIP0064). SFNodeGetUTXO // SFNodeBloom is a flag used to indicate a peer supports bloom // filtering. SFNodeBloom // SFNodeWitness is a flag used to indicate a peer supports blocks // and transactions including witness data (BIP0144). SFNodeWitness // SFNodeXthin is a flag used to indicate a peer supports xthin blocks. SFNodeXthin // SFNodeBitcoinCash indicates a node is running on the Bitcoin (BSV) // network. Bitcoin Core peers should disconnect upon seeing this service bit. // Technically this is no longer needed as Bitcoin (BSV) has a different // network magic than Bitcoin Core so connections should not be possible. SFNodeBitcoinCash // SFNodeGraphene is a flag used to indicate a peer supports graphene block relay. SFNodeGraphene // SFNodeWeakBlocks is a flag used to indicate a peer supports the weak block protocol. SFNodeWeakBlocks // SFNodeCF is a flag used to indicate a peer supports committed // filters (CFs). SFNodeCF // SFNodeXThinner is a placeholder for the xthinner block compression protocol being // developed by Johnathan Toomim. SFNodeXThinner // SFNodeNetworkLimited is used to indicate the node is a pruned node and may only // be capable of limited services. In particular it is only guaranteed to be able // to serve the last 288 blocks though it will respond to requests for earlier blocks // if it has them. SFNodeNetworkLimited )
func (ServiceFlag) String ΒΆ
func (f ServiceFlag) String() string
String returns the ServiceFlag in human-readable form.
type TxIn ΒΆ
TxIn defines a bitcoin transaction input.
func NewTxIn ΒΆ
NewTxIn returns a new bitcoin transaction input with the provided previous outpointed point and signature script with a default sequence of MaxTxInSequenceNum.
func (*TxIn) SerializeSize ΒΆ
SerializeSize returns the number of bytes it would take to serialize the
transaction input.
type TxLoc ΒΆ
TxLoc holds locator data for the offset and length of where a transaction is located within a MsgBlock data buffer.
type TxOut ΒΆ
TxOut defines a bitcoin transaction output.
func NewTxOut ΒΆ
NewTxOut returns a new bitcoin transaction output with the provided transaction value and public key script.
func (*TxOut) SerializeSize ΒΆ
SerializeSize returns the number of bytes it would take to serialize the
transaction output.
Source Files
ΒΆ
- block_header.go
- common.go
- doc.go
- error.go
- invvect.go
- message.go
- msg_addr.go
- msg_auth_ch.go
- msg_auth_resp.go
- msg_block.go
- msg_cf_headers.go
- msg_cfcheckpoint.go
- msg_cfilter.go
- msg_ext_msg.go
- msg_extended_tx.go
- msg_fee_filter.go
- msg_filter_add.go
- msg_filter_clear.go
- msg_filter_load.go
- msg_get_addr.go
- msg_get_blocks.go
- msg_get_cfcheckpoint.go
- msg_get_cfheaders.go
- msg_get_cfilters.go
- msg_get_data.go
- msg_get_headers.go
- msg_headers.go
- msg_inv.go
- msg_mempool.go
- msg_merkle_block.go
- msg_not_found.go
- msg_ping.go
- msg_pong.go
- msg_proto_conf.go
- msg_reject.go
- msg_send_cmpct.go
- msg_send_headers.go
- msg_tx.go
- msg_verack.go
- msg_version.go
- net_address.go
- protocol.go
Directories
ΒΆ
Path | Synopsis |
---|---|
examples
|
|
read_message
Package main demonstrates how to read a bitcoin message from a bytes.Reader using the go-wire package.
|
Package main demonstrates how to read a bitcoin message from a bytes.Reader using the go-wire package. |
write_message
Package main provides an example of how to write a bitcoin message using the go-wire package.
|
Package main provides an example of how to write a bitcoin message using the go-wire package. |