# Functions
DefaultWaitStrategy is the standard backoff algorithm, but you can plug in another one.
Wait for height will poll status at reasonable intervals until the block at the given height is available.
WaitForOneEvent subscribes to a websocket event for the given event time and returns upon receiving it one time, or when the timeout duration has expired.
# Variables
DefaultABCIQueryOptions are latest height (0) and prove false.
# Structs
ABCIQueryOptions can be used to provide options for ABCIQuery call other than the DefaultABCIQueryOptions.
# Interfaces
ABCIClient groups together the functionality that principally affects the ABCI app.
Client wraps most important rpc calls a client would make if you want to listen for events, test if it also implements events.EventSwitch.
EventsClient is reactive, you can subscribe to any message, given the proper string.
EvidenceClient is used for submitting an evidence of the malicious behaviour.
HistoryClient provides access to data from genesis to now in large chunks.
MempoolClient shows us data about current mempool state.
NetworkClient is general info about the network state.
RemoteClient is a Client, which can also return the remote network address.
SignClient groups together the functionality needed to get valid signatures and prove anything about the chain.
StatusClient provides access to general chain info.
# Type aliases
Waiter is informed of current height, decided whether to quit early.