# README
Cosmos/Tendermint base
Usage
(Query) Node info
// Query node info
res, err = xplac.NodeInfo().Query()
(Query) Syncing
// Query syncing
res, err = xplac.Syncing().Query()
(Query) Blocks
// Query latest block info
res, err = xplac.Block().Query()
// Query block info by height
blockMsg := types.BlockMsg{
Height: "1",
}
res, err = xplac.Block(blockMsg).Query()
(Query) Validator set
// Query latest validator set
res, err = xplac.ValidatorSet().Query()
// QUery validator set by height
validatorSetMsg := types.ValidatorSetMsg{
Height: "1",
}
res, err = xplac.ValidatorSet(validatorSetMsg).Query()
# Functions
(Query) make msg - get block by height.
(Query) make msg - latest block.
(Query) make msg - node info.
(Query) make msg - syncing.
(Query) make msg - latest validator set.
(Query) make msg - latest validator set.
No description provided by the author
No description provided by the author
Query client for bank module.
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author