Documentation ¶
Overview ¶
nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/hbtc-chain/bhchain/x/bank/types
Index ¶
- Constants
- Variables
- func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)
- func NewHandler(k keeper.Keeper) sdk.Handler
- func SimulateMsgSend(mapper types.CUKeeper, bk keeper.Keeper) simulation.Operation
- func SimulateSingleInputMsgMultiSend(mapper types.CUKeeper, bk keeper.Keeper) simulation.Operation
- func ValidateGenesis(data GenesisState) error
- type AppModule
- func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
- func (AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (AppModule) QuerierRoute() string
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (AppModule) Route() string
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(_ *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(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type BaseKeeper
- type GenesisState
- type Input
- type Keeper
- type MsgCancelWithdrawal
- type MsgCollectFinish
- type MsgCollectSignFinish
- type MsgCollectWaitSign
- type MsgConfirmedDeposit
- type MsgDeposit
- type MsgMultiSend
- type MsgOpcuAssetTransfer
- type MsgOpcuAssetTransferFinish
- type MsgOpcuAssetTransferSignFinish
- type MsgOpcuAssetTransferWaitSign
- type MsgOrderRetry
- type MsgSend
- type MsgSysTransfer
- type MsgSysTransferFinish
- type MsgSysTransferSignFinish
- type MsgSysTransferWaitSign
- type MsgWithdrawal
- type MsgWithdrawalConfirm
- type MsgWithdrawalFinish
- type MsgWithdrawalSignFinish
- type MsgWithdrawalWaitSign
- type Output
Constants ¶
const ( DefaultCodespace = types.DefaultCodespace CodeSendDisabled = types.CodeSendDisabled CodeInvalidInputsOutputs = types.CodeInvalidInputsOutputs ModuleName = types.ModuleName RouterKey = types.RouterKey QuerierRoute = types.QuerierRoute DefaultParamspace = types.DefaultParamspace DefaultSendEnabled = types.DefaultSendEnabled EventTypeTransfer = types.EventTypeTransfer AttributeKeyRecipient = types.AttributeKeyRecipient AttributeKeySender = types.AttributeKeySender AttributeValueCategory = types.AttributeValueCategory UtxoBased = sdk.UtxoBased StoreKey = types.StoreKey )
Variables ¶
var ( // functions aliases RegisterCodec = types.RegisterCodec ErrNoInputs = types.ErrNoInputs ErrNoOutputs = types.ErrNoOutputs ErrInputOutputMismatch = types.ErrInputOutputMismatch ErrSendDisabled = types.ErrSendDisabled NewBaseKeeper = keeper.NewBaseKeeper NewInput = types.NewInput NewOutput = types.NewOutput ParamKeyTable = types.ParamKeyTable // variable aliases ModuleCdc = types.ModuleCdc ParamStoreKeySendEnabled = types.ParamStoreKeySendEnabled )
Functions ¶
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)
InitGenesis sets distribution information for genesis.
func NewHandler ¶
NewHandler returns a handler for "transfer" type messages.
func SimulateMsgSend ¶
SendTx tests and runs a single msg send where both accounts already exist.
func SimulateSingleInputMsgMultiSend ¶
SingleInputSendMsg tests and runs a single msg multisend, with one input and one output, where both accounts already exist.
func ValidateGenesis ¶
func ValidateGenesis(data GenesisState) error
ValidateGenesis performs basic validation of bank genesis data returning an error for any failed validation criteria.
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
___________________________ app module
func NewAppModule ¶
func NewAppModule(keeper Keeper, cuKeeper types.CUKeeper, tk types.TokenKeeper, ok types.OrderKeeper, rk types.ReceiptKeeper, cn types.Chainnode) AppModule
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
module begin-block
func (AppModule) EndBlock ¶
func (AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
module end-block
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
module export genesis
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
module init-genesis
func (AppModule) NewQuerierHandler ¶
module querier
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
register invariants
type AppModuleBasic ¶
type AppModuleBasic struct{}
app module basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
default genesis state
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(_ *codec.Codec) *cobra.Command
get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
get the root tx command of this module
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
register module codec
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
register rest routes
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
module validate genesis
type BaseKeeper ¶
type BaseKeeper = keeper.BaseKeeper // ibc module depends on this
type GenesisState ¶
type GenesisState struct {
SendEnabled bool `json:"send_enabled" yaml:"send_enabled"`
}
GenesisState is the bank state that must be provided at genesis.
func DefaultGenesisState ¶
func DefaultGenesisState() GenesisState
DefaultGenesisState returns a default genesis state
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState
ExportGenesis returns a GenesisState for a given context and keeper.
func NewGenesisState ¶
func NewGenesisState(sendEnabled bool) GenesisState
NewGenesisState creates a new genesis state.
type MsgCancelWithdrawal ¶
type MsgCancelWithdrawal = types.MsgCancelWithdrawal
type MsgCollectFinish ¶
type MsgCollectFinish = types.MsgCollectFinish
type MsgCollectSignFinish ¶
type MsgCollectSignFinish = types.MsgCollectSignFinish
type MsgCollectWaitSign ¶
type MsgCollectWaitSign = types.MsgCollectWaitSign
type MsgConfirmedDeposit ¶
type MsgConfirmedDeposit = types.MsgConfirmedDeposit
type MsgDeposit ¶
type MsgDeposit = types.MsgDeposit
type MsgMultiSend ¶
type MsgMultiSend = types.MsgMultiSend
type MsgOpcuAssetTransfer ¶
type MsgOpcuAssetTransfer = types.MsgOpcuAssetTransfer
type MsgOpcuAssetTransferFinish ¶
type MsgOpcuAssetTransferFinish = types.MsgOpcuAssetTransferFinish
type MsgOpcuAssetTransferSignFinish ¶
type MsgOpcuAssetTransferSignFinish = types.MsgOpcuAssetTransferSignFinish
type MsgOpcuAssetTransferWaitSign ¶
type MsgOpcuAssetTransferWaitSign = types.MsgOpcuAssetTransferWaitSign
type MsgOrderRetry ¶
type MsgOrderRetry = types.MsgOrderRetry
type MsgSysTransfer ¶
type MsgSysTransfer = types.MsgSysTransfer
type MsgSysTransferFinish ¶
type MsgSysTransferFinish = types.MsgSysTransferFinish
type MsgSysTransferSignFinish ¶
type MsgSysTransferSignFinish = types.MsgSysTransferSignFinish
type MsgSysTransferWaitSign ¶
type MsgSysTransferWaitSign = types.MsgSysTransferWaitSign
type MsgWithdrawal ¶
type MsgWithdrawal = types.MsgWithdrawal
type MsgWithdrawalConfirm ¶
type MsgWithdrawalConfirm = types.MsgWithdrawalConfirm
type MsgWithdrawalFinish ¶
type MsgWithdrawalFinish = types.MsgWithdrawalFinish
type MsgWithdrawalSignFinish ¶
type MsgWithdrawalSignFinish = types.MsgWithdrawalSignFinish
type MsgWithdrawalWaitSign ¶
type MsgWithdrawalWaitSign = types.MsgWithdrawalWaitSign