0351bef644
* testnet faucet * commands * updates * faucet module * genesis state * fixes * module.go * add module to app * update Fund * querier route * querier * CLI query * fix query * add rest routes * update cli query
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(cdc codec.JSONMarshaler) json.RawMessage {
|
|
return cdc.MustMarshalJSON(types.DefaultGenesisState())
|
|
}
|
|
|
|
// ValidateGenesis performs genesis state validation for the faucet module.
|
|
func (AppModuleBasic) ValidateGenesis(cdc codec.JSONMarshaler, bz json.RawMessage) error {
|
|
var genesisState types.GenesisState
|
|
if err := cdc.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, cdc codec.JSONMarshaler, data json.RawMessage) []abci.ValidatorUpdate {
|
|
var genesisState types.GenesisState
|
|
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, cdc codec.JSONMarshaler) json.RawMessage {
|
|
gs := ExportGenesis(ctx, am.keeper)
|
|
return cdc.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{}
|
|
}
|