Documentation ¶
Overview ¶
nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/terra-project/core/x/bank/internal/types/
nolint
Index ¶
- Constants
- Variables
- func EndBlocker(ctx sdk.Context, k Keeper, sk types.SupplyKeeper)
- type AppModule
- func (am AppModule) BeginBlock(ctx sdk.Context, rbb abci.RequestBeginBlock)
- func (am AppModule) EndBlock(ctx sdk.Context, rbb abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) GenerateGenesisState(simState *module.SimulationState)
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (am AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (am AppModule) ProposalContents(simState module.SimulationState) []sim.WeightedProposalContent
- func (am AppModule) QuerierRoute() string
- func (am AppModule) RandomizedParams(r *rand.Rand) []sim.ParamChange
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (am AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
- func (am AppModule) Route() string
- func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(cliCtx context.CLIContext, route *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type BaseKeeper
- type BaseSendKeeper
- type BaseViewKeeper
- type CosmosAppModule
- type CosmosAppModuleBasic
- type GenesisState
- type Input
- type Keeper
- type MsgMultiSend
- type MsgSend
- type Output
- type QueryBalanceParams
- type SendKeeper
- type ViewKeeper
Constants ¶
const ( QueryBalance = bank.QueryBalance ModuleName = bank.ModuleName QuerierRoute = bank.QuerierRoute RouterKey = bank.RouterKey DefaultParamspace = bank.DefaultParamspace DefaultSendEnabled = bank.DefaultSendEnabled )
Variables ¶
var ( // functions aliases RegisterCodec = types.RegisterCodec // variable aliases ModuleCdc = types.ModuleCdc BurnModuleName = types.BurnModuleName )
var ( RegisterInvariants = bank.RegisterInvariants NonnegativeBalanceInvariant = bank.NonnegativeBalanceInvariant NewBaseKeeper = bank.NewBaseKeeper NewBaseSendKeeper = bank.NewBaseSendKeeper NewBaseViewKeeper = bank.NewBaseViewKeeper NewQuerier = bank.NewQuerier ErrNoInputs = bank.ErrNoInputs ErrNoOutputs = bank.ErrNoOutputs ErrInputOutputMismatch = bank.ErrInputOutputMismatch ErrSendDisabled = bank.ErrSendDisabled NewGenesisState = bank.NewGenesisState DefaultGenesisState = bank.DefaultGenesisState ValidateGenesis = bank.ValidateGenesis NewMsgSend = bank.NewMsgSend NewMsgMultiSend = bank.NewMsgMultiSend NewInput = bank.NewInput NewOutput = bank.NewOutput ValidateInputsOutputs = bank.ValidateInputsOutputs ParamKeyTable = bank.ParamKeyTable NewQueryBalanceParams = bank.NewQueryBalanceParams ParamStoreKeySendEnabled = bank.ParamStoreKeySendEnabled NewCosmosAppModule = bank.NewAppModule CosmosModuleCdc = bank.ModuleCdc )
Functions ¶
func EndBlocker ¶ added in v0.4.0
func EndBlocker(ctx sdk.Context, k Keeper, sk types.SupplyKeeper)
Types ¶
type AppModule ¶ added in v0.3.0
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
AppModule implements an application module for the bank module.
func NewAppModule ¶ added in v0.3.0
func NewAppModule(keeper Keeper, accountKeeper types.AccountKeeper, supplyKeeper types.SupplyKeeper) AppModule
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶ added in v0.3.0
func (am AppModule) BeginBlock(ctx sdk.Context, rbb abci.RequestBeginBlock)
BeginBlock returns the begin blocker for the bank module.
func (AppModule) EndBlock ¶ added in v0.3.0
func (am AppModule) EndBlock(ctx sdk.Context, rbb abci.RequestEndBlock) []abci.ValidatorUpdate
EndBlock returns the end blocker for the bank module.
func (AppModule) ExportGenesis ¶ added in v0.3.0
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
ExportGenesis returns the exported genesis state as raw bytes for the bank module.
func (AppModule) GenerateGenesisState ¶ added in v0.4.0
func (am AppModule) GenerateGenesisState(simState *module.SimulationState)
GenerateGenesisState creates a randomized GenState of the auth module
func (AppModule) InitGenesis ¶ added in v0.3.0
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
InitGenesis performs genesis initialization for the bank module.
func (AppModule) NewHandler ¶ added in v0.3.0
NewHandler returns an sdk.Handler for the bank module.
func (AppModule) NewQuerierHandler ¶ added in v0.3.0
NewQuerierHandler returns the bank module sdk.Querier.
func (AppModule) ProposalContents ¶ added in v0.4.0
func (am AppModule) ProposalContents(simState module.SimulationState) []sim.WeightedProposalContent
ProposalContents doesn't return any content functions for governance proposals.
func (AppModule) QuerierRoute ¶ added in v0.3.0
QuerierRoute returns the bank module's querier route name.
func (AppModule) RandomizedParams ¶ added in v0.4.0
func (am AppModule) RandomizedParams(r *rand.Rand) []sim.ParamChange
RandomizedParams creates randomized auth param changes for the simulator.
func (AppModule) RegisterInvariants ¶ added in v0.3.0
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
RegisterInvariants registers the bank module invariants.
func (AppModule) RegisterStoreDecoder ¶ added in v0.4.0
func (am AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
RegisterStoreDecoder registers a decoder for auth module's types
func (AppModule) WeightedOperations ¶ added in v0.4.0
func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation
WeightedOperations doesn't return any auth module operation.
type AppModuleBasic ¶ added in v0.3.0
type AppModuleBasic struct{}
AppModuleBasic defines the basic application module used by the bank module.
func (AppModuleBasic) DefaultGenesis ¶ added in v0.3.0
func (AppModuleBasic) DefaultGenesis() json.RawMessage
DefaultGenesis returns default genesis state as raw bytes for the bank module.
func (AppModuleBasic) GetQueryCmd ¶ added in v0.3.0
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
GetQueryCmd returns the root query command for the bank module.
func (AppModuleBasic) GetTxCmd ¶ added in v0.3.0
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
GetTxCmd returns the root tx command for the bank module.
func (AppModuleBasic) Name ¶ added in v0.3.0
func (AppModuleBasic) Name() string
Name returns the bank module's name
func (AppModuleBasic) RegisterCodec ¶ added in v0.3.0
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
RegisterCodec registers the bank module's types for the given codec.
func (AppModuleBasic) RegisterRESTRoutes ¶ added in v0.3.0
func (AppModuleBasic) RegisterRESTRoutes(cliCtx context.CLIContext, route *mux.Router)
RegisterRESTRoutes registers the REST routes for the bank module.
func (AppModuleBasic) ValidateGenesis ¶ added in v0.3.0
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
ValidateGenesis performs genesis state validation for the bank module.
type BaseKeeper ¶
type BaseKeeper = bank.BaseKeeper
type BaseSendKeeper ¶
type BaseSendKeeper = bank.BaseSendKeeper
type BaseViewKeeper ¶
type BaseViewKeeper = bank.BaseViewKeeper
type CosmosAppModule ¶ added in v0.3.0
type CosmosAppModuleBasic ¶ added in v0.3.0
type CosmosAppModuleBasic = bank.AppModuleBasic
type GenesisState ¶ added in v0.4.0
type GenesisState = bank.GenesisState
type MsgMultiSend ¶ added in v0.3.0
type MsgMultiSend = bank.MsgMultiSend
type QueryBalanceParams ¶ added in v0.4.0
type QueryBalanceParams = bank.QueryBalanceParams
type SendKeeper ¶
type SendKeeper = bank.SendKeeper
type ViewKeeper ¶
type ViewKeeper = bank.ViewKeeper