2020-03-10 22:29:16 +00:00
|
|
|
package committee
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-03-29 19:50:32 +00:00
|
|
|
"math/rand"
|
2020-03-10 22:29:16 +00:00
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"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"
|
2020-04-27 18:19:05 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
2020-03-29 19:50:32 +00:00
|
|
|
sim "github.com/cosmos/cosmos-sdk/x/simulation"
|
2020-03-10 22:29:16 +00:00
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
2020-03-13 23:13:42 +00:00
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/committee/client/cli"
|
2020-03-14 01:16:45 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/client/rest"
|
2020-03-29 19:50:32 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/simulation"
|
2020-03-10 22:29:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-03-29 19:50:32 +00:00
|
|
|
_ module.AppModule = AppModule{}
|
|
|
|
_ module.AppModuleBasic = AppModuleBasic{}
|
2020-04-27 18:19:05 +00:00
|
|
|
_ module.AppModuleSimulation = AppModule{}
|
2020-03-10 22:29:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// AppModuleBasic app module basics object
|
|
|
|
type AppModuleBasic struct{}
|
|
|
|
|
2020-03-11 19:27:36 +00:00
|
|
|
// Name gets the module name
|
2020-03-10 22:29:16 +00:00
|
|
|
func (AppModuleBasic) Name() string {
|
|
|
|
return ModuleName
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterCodec register module codec
|
|
|
|
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec) {
|
2020-04-28 00:26:00 +00:00
|
|
|
RegisterCodec(cdc)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultGenesis default genesis state
|
|
|
|
func (AppModuleBasic) DefaultGenesis() json.RawMessage {
|
2020-03-11 19:27:36 +00:00
|
|
|
return ModuleCdc.MustMarshalJSON(DefaultGenesisState())
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateGenesis module validate genesis
|
|
|
|
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error {
|
2020-03-11 19:27:36 +00:00
|
|
|
var gs GenesisState
|
|
|
|
err := ModuleCdc.UnmarshalJSON(bz, &gs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return gs.Validate()
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterRESTRoutes registers the REST routes for the module.
|
|
|
|
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router) {
|
2020-03-14 01:16:45 +00:00
|
|
|
rest.RegisterRoutes(ctx, rtr)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetTxCmd returns the root tx command for the module.
|
|
|
|
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command {
|
2020-03-13 23:13:42 +00:00
|
|
|
return cli.GetTxCmd(StoreKey, cdc)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 23:13:42 +00:00
|
|
|
// GetQueryCmd returns the root query command for the module.
|
2020-03-10 22:29:16 +00:00
|
|
|
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command {
|
2020-03-13 23:13:42 +00:00
|
|
|
return cli.GetQueryCmd(StoreKey, cdc)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//____________________________________________________________________________
|
|
|
|
|
|
|
|
// AppModule app module type
|
|
|
|
type AppModule struct {
|
|
|
|
AppModuleBasic
|
|
|
|
|
2020-04-27 18:19:05 +00:00
|
|
|
keeper Keeper
|
|
|
|
accountKeeper auth.AccountKeeper
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewAppModule creates a new AppModule object
|
2020-04-27 18:19:05 +00:00
|
|
|
func NewAppModule(keeper Keeper, accountKeeper auth.AccountKeeper) AppModule {
|
2020-03-10 22:29:16 +00:00
|
|
|
return AppModule{
|
|
|
|
AppModuleBasic: AppModuleBasic{},
|
|
|
|
keeper: keeper,
|
2020-04-27 18:19:05 +00:00
|
|
|
accountKeeper: accountKeeper,
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name module name
|
|
|
|
func (AppModule) Name() string {
|
|
|
|
return ModuleName
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterInvariants register module invariants
|
|
|
|
func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {}
|
|
|
|
|
|
|
|
// Route module message route name
|
|
|
|
func (AppModule) Route() string {
|
2020-04-27 18:19:05 +00:00
|
|
|
return RouterKey
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewHandler module handler
|
|
|
|
func (am AppModule) NewHandler() sdk.Handler {
|
2020-03-13 23:13:42 +00:00
|
|
|
return NewHandler(am.keeper)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuerierRoute module querier route name
|
|
|
|
func (AppModule) QuerierRoute() string {
|
2020-04-27 18:19:05 +00:00
|
|
|
return QuerierRoute
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQuerierHandler module querier
|
|
|
|
func (am AppModule) NewQuerierHandler() sdk.Querier {
|
2020-03-13 23:13:42 +00:00
|
|
|
return NewQuerier(am.keeper)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitGenesis module init-genesis
|
|
|
|
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate {
|
2020-03-11 19:27:36 +00:00
|
|
|
var genesisState GenesisState
|
|
|
|
ModuleCdc.MustUnmarshalJSON(data, &genesisState)
|
|
|
|
InitGenesis(ctx, am.keeper, genesisState)
|
2020-03-10 22:29:16 +00:00
|
|
|
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExportGenesis module export genesis
|
|
|
|
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage {
|
2020-03-11 19:27:36 +00:00
|
|
|
gs := ExportGenesis(ctx, am.keeper)
|
|
|
|
return ModuleCdc.MustMarshalJSON(gs)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BeginBlock module begin-block
|
|
|
|
func (am AppModule) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
|
2020-03-12 17:05:40 +00:00
|
|
|
BeginBlocker(ctx, req, am.keeper)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// EndBlock module end-block
|
|
|
|
func (am AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
|
|
}
|
2020-04-27 18:19:05 +00:00
|
|
|
|
|
|
|
//____________________________________________________________________________
|
|
|
|
|
|
|
|
// GenerateGenesisState creates a randomized GenState for the module
|
|
|
|
func (AppModuleBasic) GenerateGenesisState(simState *module.SimulationState) {
|
|
|
|
simulation.RandomizedGenState(simState)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
func (AppModuleBasic) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RandomizedParams returns functions that generate params for the module.
|
|
|
|
func (AppModuleBasic) RandomizedParams(r *rand.Rand) []sim.ParamChange {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterStoreDecoder registers a decoder for the module's types
|
|
|
|
func (AppModuleBasic) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {
|
|
|
|
sdr[StoreKey] = simulation.DecodeStore
|
|
|
|
}
|
|
|
|
|
|
|
|
// WeightedOperations returns the all the auction module operations with their respective weights.
|
|
|
|
func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation {
|
|
|
|
return nil // TODO simulation.WeightedOperations(simState.AppParams, simState.Cdc, am.accountKeeper, am.keeper)
|
|
|
|
}
|