package auth import ( "encoding/json" "github.com/gorilla/mux" "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" "github.com/cosmos/cosmos-sdk/client/context" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth/client/cli" "github.com/cosmos/cosmos-sdk/x/auth/client/rest" "github.com/cosmos/cosmos-sdk/x/auth/types" ) var ( _ module.AppModule = AppModule{} _ module.AppModuleBasic = AppModuleBasic{} ) // app module basics object type AppModuleBasic struct{} // module name func (AppModuleBasic) Name() string { return types.ModuleName } // register module codec func (AppModuleBasic) RegisterCodec(cdc *codec.Codec) { types.RegisterCodec(cdc) } // default genesis state func (AppModuleBasic) DefaultGenesis() json.RawMessage { return types.ModuleCdc.MustMarshalJSON(types.DefaultGenesisState()) } // module validate genesis func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error { var data types.GenesisState err := types.ModuleCdc.UnmarshalJSON(bz, &data) if err != nil { return err } return types.ValidateGenesis(data) } // register rest routes func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router) { rest.RegisterRoutes(ctx, rtr, types.StoreKey) } // get the root tx command of this module func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command { return cli.GetTxCmd(cdc) } // get the root query command of this module func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command { return cli.GetQueryCmd(cdc) } //___________________________ // app module object type AppModule struct { AppModuleBasic accountKeeper AccountKeeper feeCollectionKeeper types.FeeCollectionKeeper } // NewAppModule creates a new AppModule object func NewAppModule(accountKeeper AccountKeeper, feeCollectionKeeper types.FeeCollectionKeeper) AppModule { return AppModule{ AppModuleBasic: AppModuleBasic{}, accountKeeper: accountKeeper, feeCollectionKeeper: feeCollectionKeeper, } } // module name func (AppModule) Name() string { return types.ModuleName } // register invariants func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {} // module message route name func (AppModule) Route() string { return "" } // module handler func (AppModule) NewHandler() sdk.Handler { return nil } // module querier route name func (AppModule) QuerierRoute() string { return types.QuerierRoute } // module querier func (am AppModule) NewQuerierHandler() sdk.Querier { return NewQuerier(am.accountKeeper) } // module init-genesis func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate { var genesisState types.GenesisState types.ModuleCdc.MustUnmarshalJSON(data, &genesisState) InitGenesis(ctx, am.accountKeeper, am.feeCollectionKeeper, genesisState) return []abci.ValidatorUpdate{} } // module export genesis func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage { gs := ExportGenesis(ctx, am.accountKeeper, am.feeCollectionKeeper) return types.ModuleCdc.MustMarshalJSON(gs) } // module begin-block func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) sdk.Tags { return sdk.EmptyTags() } // module end-block func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) ([]abci.ValidatorUpdate, sdk.Tags) { return []abci.ValidatorUpdate{}, sdk.EmptyTags() }