e90b21bc8e
1. add bond,auction, nameserivce module 2. update to v0.12.2 ethermint version 3. fix the test cases 4. add gql server
41 lines
946 B
Go
41 lines
946 B
Go
package bond
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"github.com/tharsis/ethermint/x/bond/keeper"
|
|
"github.com/tharsis/ethermint/x/bond/types"
|
|
)
|
|
|
|
// InitGenesis initializes genesis state based on exported genesis
|
|
func InitGenesis(
|
|
ctx sdk.Context,
|
|
k keeper.Keeper, data types.GenesisState) []abci.ValidatorUpdate {
|
|
|
|
k.SetParams(ctx, data.Params)
|
|
|
|
for _, bond := range data.Bonds {
|
|
k.SaveBond(ctx, bond)
|
|
}
|
|
|
|
return []abci.ValidatorUpdate{}
|
|
}
|
|
|
|
// ExportGenesis - output genesis parameters
|
|
func ExportGenesis(ctx sdk.Context, keeper keeper.Keeper) types.GenesisState {
|
|
params := keeper.GetParams(ctx)
|
|
bonds := keeper.ListBonds(ctx)
|
|
|
|
return types.GenesisState{Params: params, Bonds: bonds}
|
|
}
|
|
|
|
// ValidateGenesis - validating the genesis data
|
|
func ValidateGenesis(data types.GenesisState) error {
|
|
err := data.Params.Validate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|