Versions in this module Expand all Collapse all v0 v0.0.1 Jul 23, 2024 Changes in this version + func NewAuthInfoFromSdkAuthInfo(cdc codec.Codec, authInfo *tx.AuthInfo) *types.AuthInfo + func NewFeeFromSdkFee(fee *tx.Fee) *types.Fee + func NewSignerInfoFromSdkSignerInfo(cdc codec.Codec, signerInfo *tx.SignerInfo) *types.SignerInfo + func NewTxBodyFromSdkTxBody(cdc codec.Codec, body *tx.TxBody) *types.TxBody + func NewTxFromSdkTx(cdc codec.Codec, tx *tx.Tx) *types.Tx + func NewTxResponseFromSdkTxResponse(txResponse *sdk.TxResponse, tx *types.Tx) *types.TxResponse + func ParseConfig() (*cfg.Config, error) + type Details struct + Home string + func DefaultDetails() *Details + func NewDetails(home string) *Details + func (d *Details) Validate() error + type Node struct + func NewNode(config *Details, txConfig client.TxConfig, codec codec.Codec) (*Node, error) + func (cp *Node) Block(height int64) (*tmctypes.ResultBlock, error) + func (cp *Node) BlockResults(height int64) (*tmctypes.ResultBlockResults, error) + func (cp *Node) ChainID() (string, error) + func (cp *Node) ConsensusState() (*constypes.RoundStateSimple, error) + func (cp *Node) Genesis() (*tmctypes.ResultGenesis, error) + func (cp *Node) LatestHeight() (int64, error) + func (cp *Node) Stop() + func (cp *Node) SubscribeEvents(subscriber, query string) (<-chan tmctypes.ResultEvent, context.CancelFunc, error) + func (cp *Node) SubscribeNewBlocks(subscriber string) (<-chan tmctypes.ResultEvent, context.CancelFunc, error) + func (cp *Node) Tx(hash string) (*types.Transaction, error) + func (cp *Node) TxSearch(query string, pagePtr *int, perPagePtr *int, orderBy string) (*tmctypes.ResultTxSearch, error) + func (cp *Node) Txs(block *tmctypes.ResultBlock) ([]*types.Transaction, error) + func (cp *Node) Validators(height int64) (*tmctypes.ResultValidators, error) + type Source struct + BlockStore *tmstore.BlockStore + Cms store.CommitMultiStore + Codec codec.Codec + Initialized bool + Logger log.Logger + StoreDB dbm.DB + func NewSource(home string, codec codec.Codec) (*Source, error) + func (k Source) InitStores() error + func (k Source) LoadHeight(height int64) (sdk.Context, error) + func (k Source) MountKVStores(app interface{}, fieldName string) error + func (k Source) MountMemoryStores(app interface{}, fieldName string) error + func (k Source) MountTransientStores(app interface{}, fieldName string) error + func (k Source) Type() string