2021-06-08 15:19:12 +00:00
|
|
|
package swap
|
|
|
|
|
|
|
|
import (
|
2022-01-08 00:39:27 +00:00
|
|
|
"context"
|
2021-06-08 15:19:12 +00:00
|
|
|
"encoding/json"
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
2021-06-08 15:19:12 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
2022-01-08 00:39:27 +00:00
|
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
2021-06-08 15:19:12 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
2022-01-08 00:39:27 +00:00
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
|
|
"github.com/spf13/cobra"
|
2021-06-08 15:19:12 +00:00
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/swap/client/cli"
|
|
|
|
"github.com/kava-labs/kava/x/swap/keeper"
|
|
|
|
"github.com/kava-labs/kava/x/swap/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-01-08 00:39:27 +00:00
|
|
|
_ module.AppModule = AppModule{}
|
|
|
|
_ module.AppModuleBasic = AppModuleBasic{}
|
|
|
|
// _ module.AppModuleSimulation = AppModule{} // TODO simulation
|
2021-06-08 15:19:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// AppModuleBasic app module basics object
|
|
|
|
type AppModuleBasic struct{}
|
|
|
|
|
|
|
|
// Name get module name
|
|
|
|
func (AppModuleBasic) Name() string {
|
2022-01-08 00:39:27 +00:00
|
|
|
return types.ModuleName
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// RegisterLegacyAminoCodec register module codec
|
|
|
|
func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
|
|
|
|
types.RegisterLegacyAminoCodec(cdc)
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultGenesis default genesis state
|
2022-01-08 00:39:27 +00:00
|
|
|
func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
|
|
|
|
gs := types.DefaultGenesisState()
|
|
|
|
return cdc.MustMarshalJSON(&gs)
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateGenesis module validate genesis
|
2022-01-08 00:39:27 +00:00
|
|
|
func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, config client.TxEncodingConfig, bz json.RawMessage) error {
|
|
|
|
var gs types.GenesisState
|
|
|
|
err := cdc.UnmarshalJSON(bz, &gs)
|
2021-06-08 15:19:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return gs.Validate()
|
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// RegisterInterfaces implements InterfaceModule.RegisterInterfaces
|
|
|
|
func (a AppModuleBasic) RegisterInterfaces(registry codectypes.InterfaceRegistry) {
|
|
|
|
types.RegisterInterfaces(registry)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the gov module.
|
|
|
|
func (a AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
|
|
|
|
if err := types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx)); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetTxCmd returns the root tx command for the swap module.
|
2022-01-08 00:39:27 +00:00
|
|
|
func (AppModuleBasic) GetTxCmd() *cobra.Command {
|
|
|
|
return cli.GetTxCmd()
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetQueryCmd returns no root query command for the swap module.
|
2022-01-08 00:39:27 +00:00
|
|
|
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
|
|
|
|
return cli.GetQueryCmd(types.StoreKey)
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//____________________________________________________________________________
|
|
|
|
|
|
|
|
// AppModule app module type
|
|
|
|
type AppModule struct {
|
|
|
|
AppModuleBasic
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
keeper keeper.Keeper
|
2021-07-15 15:35:24 +00:00
|
|
|
accountKeeper types.AccountKeeper
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewAppModule creates a new AppModule object
|
2022-01-08 00:39:27 +00:00
|
|
|
func NewAppModule(keeper keeper.Keeper, accountKeeper types.AccountKeeper) AppModule {
|
2021-06-08 15:19:12 +00:00
|
|
|
return AppModule{
|
|
|
|
AppModuleBasic: AppModuleBasic{},
|
|
|
|
keeper: keeper,
|
2021-07-15 15:35:24 +00:00
|
|
|
accountKeeper: accountKeeper,
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name module name
|
2022-01-08 00:39:27 +00:00
|
|
|
func (am AppModule) Name() string {
|
|
|
|
return am.AppModuleBasic.Name()
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterInvariants register module invariants
|
2021-08-06 01:43:55 +00:00
|
|
|
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
|
|
|
|
keeper.RegisterInvariants(ir, am.keeper)
|
|
|
|
}
|
2021-06-08 15:19:12 +00:00
|
|
|
|
|
|
|
// Route module message route name
|
2022-01-08 00:39:27 +00:00
|
|
|
func (am AppModule) Route() sdk.Route {
|
|
|
|
return sdk.Route{}
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuerierRoute module querier route name
|
|
|
|
func (AppModule) QuerierRoute() string {
|
2022-01-08 00:39:27 +00:00
|
|
|
return types.QuerierRoute
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// LegacyQuerierHandler returns no sdk.Querier.
|
|
|
|
func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier {
|
|
|
|
return keeper.NewQuerier(am.keeper, legacyQuerierCdc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConsensusVersion implements AppModule/ConsensusVersion.
|
|
|
|
func (AppModule) ConsensusVersion() uint64 {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterServices registers module services.
|
|
|
|
func (am AppModule) RegisterServices(cfg module.Configurator) {
|
|
|
|
types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(am.keeper))
|
|
|
|
types.RegisterQueryServer(cfg.QueryServer(), keeper.NewQueryServerImpl(am.keeper))
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitGenesis module init-genesis
|
2022-01-08 00:39:27 +00:00
|
|
|
func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, gs json.RawMessage) []abci.ValidatorUpdate {
|
|
|
|
var genState types.GenesisState
|
|
|
|
// Initialize global index to index in genesis state
|
|
|
|
cdc.MustUnmarshalJSON(gs, &genState)
|
|
|
|
|
|
|
|
InitGenesis(ctx, am.keeper, genState)
|
2021-06-08 15:19:12 +00:00
|
|
|
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExportGenesis module export genesis
|
2022-01-08 00:39:27 +00:00
|
|
|
func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage {
|
2021-06-08 15:19:12 +00:00
|
|
|
gs := ExportGenesis(ctx, am.keeper)
|
2022-01-08 00:39:27 +00:00
|
|
|
return cdc.MustMarshalJSON(&gs)
|
2021-06-08 15:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BeginBlock module begin-block
|
|
|
|
func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// EndBlock module end-block
|
|
|
|
func (am AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
|
|
}
|
|
|
|
|
|
|
|
//____________________________________________________________________________
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// // GenerateGenesisState creates a randomized GenState of the swap module
|
|
|
|
// func (AppModuleBasic) GenerateGenesisState(simState *module.SimulationState) {
|
|
|
|
// simulation.RandomizedGenState(simState)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // ProposalContents doesn't return any content functions for governance proposals.
|
|
|
|
// func (AppModuleBasic) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // RandomizedParams returns nil because swap has no params.
|
|
|
|
// func (AppModuleBasic) RandomizedParams(r *rand.Rand) []sim.ParamChange {
|
|
|
|
// return simulation.ParamChanges(r)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // RegisterStoreDecoder registers a decoder for swap module's types
|
|
|
|
// func (AppModuleBasic) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {
|
|
|
|
// sdr[StoreKey] = simulation.DecodeStore
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // WeightedOperations returns the all the swap module operations with their respective weights.
|
|
|
|
// func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation {
|
|
|
|
// return simulation.WeightedOperations(simState.AppParams, simState.Cdc, am.accountKeeper, am.keeper)
|
|
|
|
// }
|