Documentation ¶
Index ¶
- Constants
- func RandomizedGenState(simState *module.SimulationState)
- func SimulateMsgCloseDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
- func SimulateMsgCreateDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
- func SimulateMsgUpdateDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
- func WeightedOperations(appParams simulation.AppParams, cdc *codec.Codec, ak govtypes.AccountKeeper, ...) simulation.WeightedOperations
- type GenesisDeployment
- type GenesisState
Constants ¶
View Source
const ( OpWeightMsgCreateDeployment = "op_weight_msg_create_deployment" OpWeightMsgUpdateDeployment = "op_weight_msg_update_deployment" OpWeightMsgCloseDeployment = "op_weight_msg_close_deployment" )
Simulation operation weights constants
Variables ¶
This section is empty.
Functions ¶
func RandomizedGenState ¶
func RandomizedGenState(simState *module.SimulationState)
RandomizedGenState generates a random GenesisState for supply
func SimulateMsgCloseDeployment ¶
func SimulateMsgCloseDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
SimulateMsgCloseDeployment generates a MsgClose with random values
func SimulateMsgCreateDeployment ¶
func SimulateMsgCreateDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
SimulateMsgCreateDeployment generates a MsgCreate with random values
func SimulateMsgUpdateDeployment ¶
func SimulateMsgUpdateDeployment(ak govtypes.AccountKeeper, k keeper.Keeper) simulation.Operation
SimulateMsgUpdateDeployment generates a MsgUpdate with random values
func WeightedOperations ¶
func WeightedOperations( appParams simulation.AppParams, cdc *codec.Codec, ak govtypes.AccountKeeper, k keeper.Keeper) simulation.WeightedOperations
WeightedOperations returns all the operations from the module with their respective weights
Types ¶
type GenesisDeployment ¶
type GenesisDeployment struct { types.Deployment Groups []types.Group }
GenesisDeployment defines the basic genesis state used by deployment module
type GenesisState ¶
type GenesisState struct {
Deployments []GenesisDeployment `json:"deployments"`
}
GenesisState stores slice of genesis deployment instance
Click to show internal directories.
Click to hide internal directories.