261f86fdf2
* bump sdk version to v0.39.0 candidate * updates * update evm * bump commit * more changes * build * genesis * fix tests * fix tests * bump commit * bump commit * bump commit * add keygen func * bump version to 0.39.0-rc0 * update AnteHandler * fix TxDecoder * lint * fix test * update statedb * changelog * fixes * remove extra files * update make test-import * rename test * bump SDK version to final release * update to 0.39.1-rc1 * fix evm tests * update RPC * minor fixes * update to rc2 * bump to v0.39.1 * fix personal API * fix string type cast ambiguity (#449) * init * fix estimate gas test * minor genesis change * remove comments from unstable commit (stargate release) Co-authored-by: Alessio Treglia <quadrispro@ubuntu.com>
138 lines
4.0 KiB
Go
138 lines
4.0 KiB
Go
package faucet
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"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/ethermint/x/faucet/client/cli"
|
|
"github.com/cosmos/ethermint/x/faucet/client/rest"
|
|
"github.com/cosmos/ethermint/x/faucet/types"
|
|
)
|
|
|
|
// type check to ensure the interface is properly implemented
|
|
var (
|
|
_ module.AppModule = AppModule{}
|
|
_ module.AppModuleBasic = AppModuleBasic{}
|
|
)
|
|
|
|
// AppModuleBasic defines the basic application module used by the faucet module.
|
|
type AppModuleBasic struct{}
|
|
|
|
// Name returns the faucet module's name.
|
|
func (AppModuleBasic) Name() string {
|
|
return types.ModuleName
|
|
}
|
|
|
|
// RegisterCodec registers the faucet module's types for the given codec.
|
|
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec) {
|
|
RegisterCodec(cdc)
|
|
}
|
|
|
|
// DefaultGenesis returns default genesis state as raw bytes for the faucet
|
|
// module.
|
|
func (AppModuleBasic) DefaultGenesis() json.RawMessage {
|
|
return types.ModuleCdc.MustMarshalJSON(types.DefaultGenesisState())
|
|
}
|
|
|
|
// ValidateGenesis performs genesis state validation for the faucet module.
|
|
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error {
|
|
var genesisState types.GenesisState
|
|
if err := types.ModuleCdc.UnmarshalJSON(bz, &genesisState); err != nil {
|
|
return fmt.Errorf("failed to unmarshal %s genesis state: %w", types.ModuleName, err)
|
|
}
|
|
|
|
return genesisState.Validate()
|
|
}
|
|
|
|
// RegisterRESTRoutes registers the REST routes for the faucet module.
|
|
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router) {
|
|
rest.RegisterRoutes(ctx, rtr)
|
|
}
|
|
|
|
// GetTxCmd returns the root tx command for the faucet module.
|
|
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command {
|
|
return cli.GetTxCmd(cdc)
|
|
}
|
|
|
|
// GetQueryCmd returns no root query command for the faucet module.
|
|
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command {
|
|
return cli.GetQueryCmd(cdc)
|
|
}
|
|
|
|
type AppModule struct {
|
|
AppModuleBasic
|
|
keeper Keeper
|
|
}
|
|
|
|
// NewAppModule creates a new AppModule Object
|
|
func NewAppModule(k Keeper) AppModule {
|
|
return AppModule{
|
|
AppModuleBasic: AppModuleBasic{},
|
|
keeper: k,
|
|
}
|
|
}
|
|
|
|
// Name returns the faucet module's name.
|
|
func (AppModule) Name() string {
|
|
return ModuleName
|
|
}
|
|
|
|
// RegisterInvariants registers the faucet module invariants.
|
|
func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {}
|
|
|
|
// Route returns the message routing key for the faucet module.
|
|
func (AppModule) Route() string {
|
|
return RouterKey
|
|
}
|
|
|
|
// NewHandler returns an sdk.Handler for the faucet module.
|
|
func (am AppModule) NewHandler() sdk.Handler {
|
|
return NewHandler(am.keeper)
|
|
}
|
|
|
|
// QuerierRoute returns the faucet module's querier route name.
|
|
func (AppModule) QuerierRoute() string {
|
|
return QuerierRoute
|
|
}
|
|
|
|
// NewQuerierHandler returns the faucet module sdk.Querier.
|
|
func (am AppModule) NewQuerierHandler() sdk.Querier {
|
|
return NewQuerier(am.keeper)
|
|
}
|
|
|
|
// InitGenesis performs genesis initialization for the faucet module. It returns
|
|
// no validator updates.
|
|
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate {
|
|
var genesisState types.GenesisState
|
|
types.ModuleCdc.MustUnmarshalJSON(data, &genesisState)
|
|
InitGenesis(ctx, am.keeper, genesisState)
|
|
return []abci.ValidatorUpdate{}
|
|
}
|
|
|
|
// ExportGenesis returns the exported genesis state as raw bytes for the faucet
|
|
// module.
|
|
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage {
|
|
gs := ExportGenesis(ctx, am.keeper)
|
|
return types.ModuleCdc.MustMarshalJSON(gs)
|
|
}
|
|
|
|
// BeginBlock returns the begin blocker for the faucet module.
|
|
func (am AppModule) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
|
|
}
|
|
|
|
// EndBlock returns the end blocker for the faucet module. It returns no validator
|
|
// updates.
|
|
func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
|
|
return []abci.ValidatorUpdate{}
|
|
}
|