2024-02-09 08:44:45 +00:00
|
|
|
package module
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"cosmossdk.io/core/appmodule"
|
|
|
|
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
2024-02-15 06:56:18 +00:00
|
|
|
"github.com/spf13/cobra"
|
2024-02-09 08:44:45 +00:00
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
"git.vdb.to/cerc-io/laconicd/x/auction"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/x/auction/client/cli"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/x/auction/keeper"
|
2024-02-09 08:44:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ module.AppModuleBasic = AppModule{}
|
|
|
|
_ appmodule.AppModule = AppModule{}
|
|
|
|
_ module.HasGenesis = AppModule{}
|
|
|
|
_ module.HasServices = AppModule{}
|
|
|
|
_ module.HasConsensusVersion = AppModule{}
|
|
|
|
_ appmodule.HasEndBlocker = AppModule{}
|
2024-03-06 09:24:15 +00:00
|
|
|
_ module.HasInvariants = AppModule{}
|
2024-02-09 08:44:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ConsensusVersion defines the current module consensus version
|
|
|
|
const ConsensusVersion = 1
|
|
|
|
|
|
|
|
type AppModule struct {
|
|
|
|
cdc codec.Codec
|
2024-02-28 04:34:58 +00:00
|
|
|
keeper *keeper.Keeper
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewAppModule creates a new AppModule object
|
2024-02-28 04:34:58 +00:00
|
|
|
func NewAppModule(cdc codec.Codec, keeper *keeper.Keeper) AppModule {
|
2024-02-09 08:44:45 +00:00
|
|
|
return AppModule{
|
|
|
|
cdc: cdc,
|
|
|
|
keeper: keeper,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAppModuleBasic(m AppModule) module.AppModuleBasic {
|
|
|
|
return module.CoreAppModuleBasicAdaptor(m.Name(), m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// module.AppModuleBasic
|
|
|
|
|
|
|
|
// Name returns the auction module's name.
|
|
|
|
func (AppModule) Name() string { return auction.ModuleName }
|
|
|
|
|
|
|
|
// RegisterLegacyAminoCodec registers the auction module's types on the LegacyAmino codec.
|
|
|
|
// New modules do not need to support Amino.
|
|
|
|
func (AppModule) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {}
|
|
|
|
|
|
|
|
// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the auction module.
|
|
|
|
func (AppModule) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *gwruntime.ServeMux) {
|
|
|
|
if err := auction.RegisterQueryHandlerClient(context.Background(), mux, auction.NewQueryClient(clientCtx)); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterInterfaces registers interfaces and implementations of the auction module.
|
|
|
|
func (AppModule) RegisterInterfaces(registry codectypes.InterfaceRegistry) {
|
|
|
|
auction.RegisterInterfaces(registry)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConsensusVersion implements AppModule/ConsensusVersion.
|
|
|
|
func (AppModule) ConsensusVersion() uint64 { return ConsensusVersion }
|
|
|
|
|
|
|
|
// module.HasGenesis
|
|
|
|
|
|
|
|
// DefaultGenesis returns default genesis state as raw bytes for the module.
|
|
|
|
func (AppModule) DefaultGenesis(jsonCodec codec.JSONCodec) json.RawMessage {
|
|
|
|
return jsonCodec.MustMarshalJSON(auction.DefaultGenesisState())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateGenesis performs genesis state validation for the module.
|
|
|
|
func (AppModule) ValidateGenesis(cdc codec.JSONCodec, config client.TxEncodingConfig, message json.RawMessage) error {
|
|
|
|
var data auction.GenesisState
|
|
|
|
if err := cdc.UnmarshalJSON(message, &data); err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal %s genesis state: %w", auction.ModuleName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return data.Validate()
|
|
|
|
}
|
|
|
|
|
2024-07-03 11:38:48 +00:00
|
|
|
// InitGenesis performs genesis initialization for the auction module.
|
2024-02-09 08:44:45 +00:00
|
|
|
// It returns no validator updates.
|
|
|
|
func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, data json.RawMessage) {
|
|
|
|
var genesisState auction.GenesisState
|
|
|
|
cdc.MustUnmarshalJSON(data, &genesisState)
|
|
|
|
|
|
|
|
if err := am.keeper.InitGenesis(ctx, &genesisState); err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to initialize %s genesis state: %v", auction.ModuleName, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExportGenesis returns the exported genesis state as raw bytes for the circuit
|
|
|
|
// module.
|
|
|
|
func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage {
|
|
|
|
gs, err := am.keeper.ExportGenesis(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to export %s genesis state: %v", auction.ModuleName, err))
|
|
|
|
}
|
|
|
|
|
|
|
|
return cdc.MustMarshalJSON(gs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// module.HasServices
|
|
|
|
|
|
|
|
func (am AppModule) RegisterServices(cfg module.Configurator) {
|
|
|
|
// Register servers
|
2024-02-12 08:34:40 +00:00
|
|
|
auction.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(am.keeper))
|
|
|
|
auction.RegisterQueryServer(cfg.QueryServer(), keeper.NewQueryServerImpl(am.keeper))
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// appmodule.HasEndBlocker
|
|
|
|
|
|
|
|
func (am AppModule) EndBlock(ctx context.Context) error {
|
|
|
|
return EndBlocker(ctx, am.keeper)
|
|
|
|
}
|
2024-02-15 06:56:18 +00:00
|
|
|
|
2024-03-06 09:24:15 +00:00
|
|
|
// module.HasInvariants
|
|
|
|
|
|
|
|
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
|
|
|
|
keeper.RegisterInvariants(ir, am.keeper)
|
|
|
|
}
|
|
|
|
|
2024-02-15 06:56:18 +00:00
|
|
|
// Get the root tx command of this module
|
|
|
|
func (AppModule) GetTxCmd() *cobra.Command {
|
|
|
|
return cli.GetTxCmd()
|
|
|
|
}
|