5#ifndef BITCOIN_INTERFACES_NODE_H
6#define BITCOIN_INTERFACES_NODE_H
112 virtual void mapPort(
bool use_upnp,
bool use_natpmp) = 0;
122 std::vector<std::tuple<CNodeStats, bool, CNodeStateStats>>;
129 virtual bool ban(
const CNetAddr &net_addr, int64_t ban_time_offset) = 0;
184 const std::string &command,
186 const std::string &uri) = 0;
210 const std::string &caption,
unsigned int style)>;
216 const std::string &non_interactive_message,
217 const std::string &caption,
unsigned int style)>;
222 const std::string &title,
int progress,
bool resume_possible)>;
227 std::function<void(
int new_num_connections)>;
228 virtual std::unique_ptr<Handler>
233 std::function<void(
bool network_active)>;
234 virtual std::unique_ptr<Handler>
239 virtual std::unique_ptr<Handler>
244 virtual std::unique_ptr<Handler>
250 double verification_progress)>;
251 virtual std::unique_ptr<Handler>
257 virtual std::unique_ptr<Handler>
Fee rate in satoshis per kilobyte: Amount / kB.
Class for registering and managing all RPC calls.
Top-level interface for a bitcoin node (bitcoind process).
virtual void rpcSetTimerInterfaceIfUnset(RPCTimerInterface *iface)=0
Set RPC timer interface if unset.
std::function< void()> BannedListChangedFn
Register handler for ban list messages.
virtual bool disconnectById(NodeId id)=0
Disconnect node by id.
std::function< bool(const bilingual_str &message, const std::string &non_interactive_message, const std::string &caption, unsigned int style)> QuestionFn
Register handler for question messages.
virtual std::unique_ptr< Handler > handleInitMessage(InitMessageFn fn)=0
virtual bool ban(const CNetAddr &net_addr, int64_t ban_time_offset)=0
Ban node.
std::function< void(bool network_active)> NotifyNetworkActiveChangedFn
Register handler for network active messages.
virtual std::unique_ptr< Handler > handleShowProgress(ShowProgressFn fn)=0
virtual void setNetworkActive(bool active)=0
Set network active.
std::function< bool(const bilingual_str &message, const std::string &caption, unsigned int style)> MessageBoxFn
Register handler for message box messages.
virtual bilingual_str getWarnings()=0
Get warnings.
virtual std::vector< std::string > listRpcCommands()=0
List rpc commands.
virtual void appShutdown()=0
Stop node.
virtual bool isPersistentSettingIgnored(const std::string &name)=0
Return whether a particular setting in <datadir>/settings.json would be ignored because it is also sp...
virtual bool appInitMain(Config &config, RPCServer &rpcServer, HTTPRPCRequestProcessor &httpRPCRequestProcessor, interfaces::BlockAndHeaderTipInfo *tip_info=nullptr)=0
Start node.
virtual std::unique_ptr< Handler > handleNotifyBlockTip(NotifyBlockTipFn fn)=0
virtual void resetSettings()=0
Clear all settings in <datadir>/settings.json and store a backup of previous settings in <datadir>/se...
virtual void rpcUnsetTimerInterface(RPCTimerInterface *iface)=0
Unset RPC timer interface.
virtual std::unique_ptr< Handler > handleNotifyAlertChanged(NotifyAlertChangedFn fn)=0
virtual std::unique_ptr< Handler > handleNotifyHeaderTip(NotifyHeaderTipFn fn)=0
virtual std::unique_ptr< Handler > handleMessageBox(MessageBoxFn fn)=0
std::vector< std::tuple< CNodeStats, bool, CNodeStateStats > > NodesStats
Get stats for connected nodes.
virtual bool getProxy(Network net, proxyType &proxy_info)=0
Get proxy.
std::function< void(const std::string &title, int progress, bool resume_possible)> ShowProgressFn
Register handler for progress messages.
virtual void initParameterInteraction()=0
Init parameter interaction.
virtual void startShutdown()=0
Start shutdown.
std::function< void()> NotifyAlertChangedFn
Register handler for notify alert messages.
virtual int64_t getLastBlockTime()=0
Get last block time.
virtual bool getBanned(banmap_t &banmap)=0
Get ban map entries.
std::function< void(SynchronizationState, interfaces::BlockTip tip, bool presync)> NotifyHeaderTipFn
Register handler for header tip messages.
virtual void forceSetting(const std::string &name, const util::SettingsValue &value)=0
Force a setting value to be applied, overriding any other configuration source, but not being persist...
virtual BlockHash getBestBlockHash()=0
Get best block hash.
virtual size_t getMempoolSize()=0
Get mempool size.
virtual void updateRwSetting(const std::string &name, const util::SettingsValue &value)=0
Update a setting in <datadir>/settings.json.
virtual bool getNetworkActive()=0
Get network active.
virtual bool unban(const CSubNet &ip)=0
Unban node.
virtual bool isLoadingBlocks()=0
Is loading blocks.
virtual std::unique_ptr< Handler > handleQuestion(QuestionFn fn)=0
virtual size_t getNodeCount(ConnectionDirection flags)=0
Get number of connections.
virtual double getVerificationProgress()=0
Get verification progress.
virtual bool getHeaderTip(int &height, int64_t &block_time)=0
Get header tip height and time.
virtual bool disconnectByAddress(const CNetAddr &net_addr)=0
Disconnect node by address.
virtual int64_t getTotalBytesRecv()=0
Get total bytes recv.
virtual std::unique_ptr< Handler > handleBannedListChanged(BannedListChangedFn fn)=0
virtual WalletClient & walletClient()=0
Get wallet client.
virtual UniValue executeRpc(const Config &config, const std::string &command, const UniValue ¶ms, const std::string &uri)=0
Execute rpc command.
virtual void initLogging()=0
Init logging.
virtual std::unique_ptr< Handler > handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn)=0
virtual int64_t getTotalBytesSent()=0
Get total bytes sent.
virtual node::NodeContext * context()
Get and set internal node context.
virtual size_t getMempoolDynamicUsage()=0
Get mempool dynamic usage.
virtual void mapPort(bool use_upnp, bool use_natpmp)=0
Map port.
virtual util::SettingsValue getPersistentSetting(const std::string &name)=0
Return setting value from <datadir>/settings.json or bitcoin.conf.
virtual int getNumBlocks()=0
Get num blocks.
virtual bool shutdownRequested()=0
Return whether shutdown was requested.
std::function< void(const std::string &message)> InitMessageFn
Register handler for init messages.
virtual bool getNodesStats(NodesStats &stats)=0
virtual bool isInitialBlockDownload()=0
Is initial block download.
std::function< void(int new_num_connections)> NotifyNumConnectionsChangedFn
Register handler for number of connections changed messages.
virtual bool getUnspentOutput(const COutPoint &output, Coin &coin)=0
Get unspent outputs associated with a transaction.
virtual std::unique_ptr< Handler > handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn)=0
virtual bool baseInitialize(Config &config)=0
Initialize app dependencies.
virtual CFeeRate getDustRelayFee()=0
Get dust relay fee.
virtual void setContext(node::NodeContext *context)
std::function< void(SynchronizationState, interfaces::BlockTip tip, double verification_progress)> NotifyBlockTipFn
Register handler for block tip messages.
Wallet chain client that in addition to having chain client methods for starting up,...
std::unique_ptr< Node > MakeNode(node::NodeContext *context)
Return implementation of Node interface.
std::map< CSubNet, CBanEntry > banmap_t
A BlockHash is a unqiue identifier for a block.
POD that contains various stats about a node.
Block and header tip information.
double verification_progress
Block tip (could be a header or not, depends on the subscribed signal).
NodeContext struct containing references to chain state and connection state.
SynchronizationState
Current sync state passed to tip changed callbacks.