laconicd/x/evm/module.go

167 lines
5.2 KiB
Go
Raw Normal View History

package evm
import (
2021-04-17 10:00:07 +00:00
"context"
"encoding/json"
2021-04-17 10:00:07 +00:00
"fmt"
"github.com/gorilla/mux"
2021-04-17 10:00:07 +00:00
"github.com/grpc-ecosystem/grpc-gateway/runtime"
"github.com/spf13/cobra"
abci "github.com/tendermint/tendermint/abci/types"
2021-04-17 10:00:07 +00:00
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
2021-04-17 10:00:07 +00:00
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/tharsis/ethermint/x/evm/client/cli"
"github.com/tharsis/ethermint/x/evm/keeper"
"github.com/tharsis/ethermint/x/evm/types"
)
2021-04-17 10:00:07 +00:00
var (
_ module.AppModule = AppModule{}
_ module.AppModuleBasic = AppModuleBasic{}
)
2021-04-17 10:00:07 +00:00
// AppModuleBasic defines the basic application module used by the evm module.
type AppModuleBasic struct{}
2021-04-17 10:00:07 +00:00
// Name returns the evm module's name.
func (AppModuleBasic) Name() string {
return types.ModuleName
}
2021-04-17 10:00:07 +00:00
// RegisterLegacyAminoCodec performs a no-op as the evm module doesn't support amino.
func (AppModuleBasic) RegisterLegacyAminoCodec(_ *codec.LegacyAmino) {
}
// ConsensusVersion returns the consensus state-breaking version for the module.
func (AppModuleBasic) ConsensusVersion() uint64 {
return 1
}
2021-04-17 10:00:07 +00:00
// DefaultGenesis returns default genesis state as raw bytes for the evm
// module.
func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
2021-04-17 10:00:07 +00:00
return cdc.MustMarshalJSON(types.DefaultGenesisState())
}
// ValidateGenesis is the validation check of the Genesis
func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, _ client.TxEncodingConfig, bz json.RawMessage) error {
var genesisState types.GenesisState
2021-04-17 10:00:07 +00:00
if err := cdc.UnmarshalJSON(bz, &genesisState); err != nil {
return fmt.Errorf("failed to unmarshal %s genesis state: %w", types.ModuleName, err)
}
return genesisState.Validate()
}
2021-04-17 10:00:07 +00:00
// RegisterRESTRoutes performs a no-op as the EVM module doesn't expose REST
// endpoints
2021-04-18 15:54:18 +00:00
func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Router) {
}
2021-04-18 15:54:18 +00:00
func (b AppModuleBasic) RegisterGRPCGatewayRoutes(c client.Context, serveMux *runtime.ServeMux) {
if err := types.RegisterQueryHandlerClient(context.Background(), serveMux, types.NewQueryClient(c)); err != nil {
2021-04-17 10:00:07 +00:00
panic(err)
}
}
2021-04-18 15:54:18 +00:00
// GetTxCmd returns the root tx command for the evm module.
2021-04-17 10:00:07 +00:00
func (AppModuleBasic) GetTxCmd() *cobra.Command {
return nil
}
2021-04-17 10:00:07 +00:00
// GetQueryCmd returns no root query command for the evm module.
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
// RegisterInterfaces registers interfaces and implementations of the evm module.
func (AppModuleBasic) RegisterInterfaces(registry codectypes.InterfaceRegistry) {
types.RegisterInterfaces(registry)
}
2021-06-25 08:31:57 +00:00
// ____________________________________________________________________________
// AppModule implements an application module for the evm module.
type AppModule struct {
AppModuleBasic
2021-04-17 10:00:07 +00:00
keeper *keeper.Keeper
ak types.AccountKeeper
}
2021-04-17 10:00:07 +00:00
// NewAppModule creates a new AppModule object
func NewAppModule(k *keeper.Keeper, ak types.AccountKeeper) AppModule {
return AppModule{
AppModuleBasic: AppModuleBasic{},
keeper: k,
ak: ak,
}
}
2021-04-17 10:00:07 +00:00
// Name returns the evm module's name.
func (AppModule) Name() string {
return types.ModuleName
}
2021-04-18 15:54:18 +00:00
// RegisterInvariants interface for registering invariants. Performs a no-op
// as the evm module doesn't expose invariants.
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
2021-04-18 15:54:18 +00:00
// Invariats lead to performance degradation
//
// keeper.RegisterInvariants(ir, *am.keeper)
}
2021-04-18 15:54:18 +00:00
// RegisterQueryService registers a GRPC query service to respond to the
// module-specific GRPC queries.
2021-04-17 10:00:07 +00:00
func (am AppModule) RegisterServices(cfg module.Configurator) {
types.RegisterQueryServer(cfg.QueryServer(), am.keeper)
}
2021-04-17 10:00:07 +00:00
// Route returns the message routing key for the evm module.
func (am AppModule) Route() sdk.Route {
2021-04-18 15:54:18 +00:00
return sdk.NewRoute(types.RouterKey, NewHandler(am.keeper))
}
2021-04-17 10:00:07 +00:00
// QuerierRoute returns the evm module's querier route name.
func (AppModule) QuerierRoute() string { return types.RouterKey }
2021-04-17 10:00:07 +00:00
// LegacyQuerierHandler returns nil as the evm module doesn't expose a legacy
// Querier.
func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier {
return nil
}
2021-04-17 10:00:07 +00:00
// BeginBlock returns the begin block for the evm module.
func (am AppModule) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
am.keeper.BeginBlock(ctx, req)
}
2021-04-17 10:00:07 +00:00
// EndBlock returns the end blocker for the evm module. It returns no validator
// updates.
func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.ValidatorUpdate {
return am.keeper.EndBlock(ctx, req)
}
2021-04-17 10:00:07 +00:00
// InitGenesis performs genesis initialization for the evm module. It returns
// no validator updates.
func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, data json.RawMessage) []abci.ValidatorUpdate {
var genesisState types.GenesisState
2021-04-17 10:00:07 +00:00
cdc.MustUnmarshalJSON(data, &genesisState)
InitGenesis(ctx, am.keeper, am.ak, genesisState)
2021-04-18 15:54:18 +00:00
return []abci.ValidatorUpdate{}
}
2021-04-17 10:00:07 +00:00
// ExportGenesis returns the exported genesis state as raw bytes for the evm
// module.
func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage {
gs := ExportGenesis(ctx, am.keeper, am.ak)
2021-04-17 10:00:07 +00:00
return cdc.MustMarshalJSON(gs)
}