-
Notifications
You must be signed in to change notification settings - Fork 182
/
module.go
153 lines (126 loc) · 4.56 KB
/
module.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package params
import (
"encoding/json"
"fmt"
sim "github.com/cosmos/cosmos-sdk/x/simulation"
"math/rand"
"github.com/okex/okexchain/x/params/client/cli"
"github.com/okex/okexchain/x/params/types"
"github.com/gorilla/mux"
"github.com/spf13/cobra"
"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"
abci "github.com/tendermint/tendermint/abci/types"
)
var (
_ module.AppModuleBasic = AppModuleBasic{}
_ module.AppModule = AppModule{}
)
// GenesisState contains all params state that must be provided at genesis
type GenesisState struct {
Params types.Params `json:"params" yaml:"params"`
}
// DefaultGenesisState returns the default genesis state of this module
func DefaultGenesisState() GenesisState {
return GenesisState{
Params: types.DefaultParams(),
}
}
// ValidateGenesis checks if parameters are within valid ranges
func ValidateGenesis(data GenesisState) error {
if !data.Params.MinDeposit.IsValid() {
return fmt.Errorf("params deposit amount must be a valid sdk.Coins amount, is %s",
data.Params.MinDeposit.String())
}
return nil
}
// AppModuleBasic is the struct of app module basics object
type AppModuleBasic struct{}
// Name returns the module name
func (AppModuleBasic) Name() string {
return ModuleName
}
// RegisterCodec registers module codec
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec) {
RegisterCodec(cdc)
}
// DefaultGenesis returns the default genesis state in json raw message
func (AppModuleBasic) DefaultGenesis() json.RawMessage {
return ModuleCdc.MustMarshalJSON(DefaultGenesisState())
}
// ValidateGenesis gives a quick validity check for module genesis
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error {
var data GenesisState
err := ModuleCdc.UnmarshalJSON(bz, &data)
if err != nil {
return err
}
return ValidateGenesis(data)
}
// nolint
func (AppModuleBasic) RegisterRESTRoutes(_ context.CLIContext, _ *mux.Router) {}
func (AppModuleBasic) GetTxCmd(_ *codec.Codec) *cobra.Command { return nil }
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command {
return cli.GetQueryCmd(RouterKey, cdc)
}
// AppModule is the struct of this app module
type AppModule struct {
AppModuleBasic
keeper Keeper
}
// NewAppModule creates a new AppModule object
func NewAppModule(keeper Keeper) AppModule {
return AppModule{
AppModuleBasic: AppModuleBasic{},
keeper: keeper,
}
}
// Route returns the module route name
func (AppModule) Route() string {
return RouterKey
}
// InitGenesis initializes the module genesis state
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate {
var genesisState GenesisState
ModuleCdc.MustUnmarshalJSON(data, &genesisState)
am.keeper.SetParams(ctx, genesisState.Params)
return []abci.ValidatorUpdate{}
}
// ExportGenesis exports the module genesis state
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage {
gs := GenesisState{
Params: am.keeper.GetParams(ctx),
}
return ModuleCdc.MustMarshalJSON(gs)
}
// nolint
func (AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {}
func (AppModule) NewHandler() sdk.Handler { return nil }
func (AppModule) QuerierRoute() string { return RouterKey }
func (am AppModule) NewQuerierHandler() sdk.Querier { return NewQuerier(am.keeper) }
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {}
func (AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
return []abci.ValidatorUpdate{}
}
// AppModuleSimulation functions
// TODO: implement the AppModuleSimulation interface
// GenerateGenesisState creates a randomized GenState of the staking module.
func (AppModule) GenerateGenesisState(simState *module.SimulationState) {
}
// ProposalContents doesn't return any content functions for governance proposals.
func (AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
return nil
}
// RandomizedParams creates randomized staking param changes for the simulator.
func (AppModule) RandomizedParams(r *rand.Rand) []sim.ParamChange {
return nil
}
// RegisterStoreDecoder registers a decoder for staking module's types
func (AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {
}
// WeightedOperations returns the all the staking module operations with their respective weights.
func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation {
return nil
}