Documentation ¶
Index ¶
- func HandleBlock(block *tmctypes.ResultBlock, bankClient banktypes.QueryClient, ...) error
- func HandleGenesis(appState map[string]json.RawMessage, cdc codec.Marshaler, ...) error
- func HandleMsg(tx *types.Tx, msg sdk.Msg, authClient authtypes.QueryClient, ...) error
- type Module
- func (m *Module) HandleBlock(block *tmctypes.ResultBlock, _ []*types.Tx, _ *tmctypes.ResultValidators) error
- func (m *Module) HandleGenesis(_ *tmtypes.GenesisDoc, appState map[string]json.RawMessage) error
- func (m *Module) HandleMsg(_ int, sdkMsg sdk.Msg, tx *types.Tx) error
- func (m *Module) Name() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HandleBlock ¶
func HandleBlock(block *tmctypes.ResultBlock, bankClient banktypes.QueryClient, db *database.BigDipperDb) error
HandleBlock allows to handle a block properly
func HandleGenesis ¶
func HandleGenesis(appState map[string]json.RawMessage, cdc codec.Marshaler, db *database.BigDipperDb) error
HandleGenesis handles the genesis state of the x/bank module in order to store the initial values of the different accounts.
func HandleMsg ¶
func HandleMsg( tx *types.Tx, msg sdk.Msg, authClient authtypes.QueryClient, bankClient banktypes.QueryClient, cdc codec.Marshaler, db *database.BigDipperDb, ) error
Types ¶
type Module ¶
type Module struct {
// contains filtered or unexported fields
}
Module represents the x/bank module
func NewModule ¶
func NewModule(encodingConfig *params.EncodingConfig, grpcConnection *grpc.ClientConn, db *database.BigDipperDb) *Module
NewModule returns a new Module instance
func (*Module) HandleBlock ¶
func (m *Module) HandleBlock(block *tmctypes.ResultBlock, _ []*types.Tx, _ *tmctypes.ResultValidators) error
HandleBlock implements modules.Module
func (*Module) HandleGenesis ¶
func (m *Module) HandleGenesis(_ *tmtypes.GenesisDoc, appState map[string]json.RawMessage) error
HandleGenesis implements modules.Module
Click to show internal directories.
Click to hide internal directories.