Get desktop application:
View/edit binary Protocol Buffers messages
NeutrinoKit is a service that can be used to get information about the current state of the neutrino instance, fetch blocks and add/remove peers.
Status returns the status of the light client neutrino instance, along with height and hash of the best block, and a list of connected peers.
(message has no fields)
Indicates whether the neutrino backend is active or not.
Is fully synced.
Best block height.
Best block hash.
Connected peers.
AddPeer adds a new peer that has already been connected to the server.
Peer to add.
(message has no fields)
DisconnectPeer disconnects a peer by target address. Both outbound and inbound nodes will be searched for the target node. An error message will be returned if the peer was not found.
Peer to disconnect.
(message has no fields)
IsBanned returns true if the peer is banned, otherwise false.
Peer to lookup.
GetBlockHeader returns a block header with a particular block hash.
Block hash in hex notation.
The block hash (same as provided).
The number of confirmations.
The block size excluding witness data.
The block size (bytes).
The block weight as defined in BIP 141.
The block height or index.
The block version.
The block version.
The merkle root.
The block time in seconds since epoch (Jan 1 1970 GMT).
The nonce.
The bits in hex notation.
The number of transactions in the block.
The hash of the previous block.
The raw hex of the block.
GetBlock returns a block with a particular block hash.
Block hash in hex notation.
The block hash (same as provided).
The number of confirmations.
The block size excluding witness data.
The block size (bytes).
The block weight as defined in BIP 141.
The block height or index.
The block version.
The block version.
The merkle root.
List of transaction ids.
The block time in seconds since epoch (Jan 1 1970 GMT).
The nonce.
The bits in hex notation.
The number of transactions in the block.
The hash of the previous block.
The raw hex of the block.
GetCFilter returns a compact filter from a block.
Block hash in hex notation.
GCS filter.
Deprecated, use chainrpc.GetBlockHash instead. GetBlockHash returns the header hash of a block at a given height.
The block height or index.
The block hash.