-
Notifications
You must be signed in to change notification settings - Fork 52
/
module_simulation.go
161 lines (137 loc) · 5.54 KB
/
module_simulation.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
154
155
156
157
158
159
160
161
package amm
import (
"math/rand"
"github.com/cosmos/cosmos-sdk/baseapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/simulation"
"github.com/elys-network/elys/testutil/sample"
ammsimulation "github.com/elys-network/elys/x/amm/simulation"
"github.com/elys-network/elys/x/amm/types"
)
// avoid unused import issue
var (
_ = sample.AccAddress
_ = ammsimulation.FindAccount
_ = simulation.MsgEntryKind
_ = baseapp.Paramspace
)
const (
opWeightMsgCreatePool = "op_weight_msg_create_pool"
// TODO: Determine the simulation weight value
defaultWeightMsgCreatePool int = 100
opWeightMsgJoinPool = "op_weight_msg_join_pool"
// TODO: Determine the simulation weight value
defaultWeightMsgJoinPool int = 100
opWeightMsgExitPool = "op_weight_msg_exit_pool"
// TODO: Determine the simulation weight value
defaultWeightMsgExitPool int = 100
opWeightMsgSwapExactAmountIn = "op_weight_msg_swap_exact_amount_in"
// TODO: Determine the simulation weight value
defaultWeightMsgSwapExactAmountIn int = 100
opWeightMsgSwapExactAmountOut = "op_weight_msg_swap_exact_amount_out"
// TODO: Determine the simulation weight value
defaultWeightMsgSwapExactAmountOut int = 100
opWeightMsgSwapByDenom = "op_weight_msg_swap_by_denom"
// TODO: Determine the simulation weight value
defaultWeightMsgSwapByDenom int = 100
opWeightMsgUpdatePoolParams = "op_weight_msg_update_pool_params"
// TODO: Determine the simulation weight value
defaultWeightMsgUpdatePoolParams int = 100
// this line is used by starport scaffolding # simapp/module/const
)
// GenerateGenesisState creates a randomized GenState of the module
func (AppModule) GenerateGenesisState(simState *module.SimulationState) {
accs := make([]string, len(simState.Accounts))
for i, acc := range simState.Accounts {
accs[i] = acc.Address.String()
}
ammGenesis := types.GenesisState{
Params: types.DefaultParams(),
// this line is used by starport scaffolding # simapp/module/genesisState
}
simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(&ammGenesis)
}
// ProposalContents doesn't return any content functions for governance proposals
func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent {
return nil
}
// RegisterStoreDecoder registers a decoder
func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) {}
// WeightedOperations returns the all the gov module operations with their respective weights.
func (am AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation {
operations := make([]simtypes.WeightedOperation, 0)
var weightMsgCreatePool int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgCreatePool, &weightMsgCreatePool, nil,
func(_ *rand.Rand) {
weightMsgCreatePool = defaultWeightMsgCreatePool
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgCreatePool,
ammsimulation.SimulateMsgCreatePool(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgJoinPool int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgJoinPool, &weightMsgJoinPool, nil,
func(_ *rand.Rand) {
weightMsgJoinPool = defaultWeightMsgJoinPool
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgJoinPool,
ammsimulation.SimulateMsgJoinPool(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgExitPool int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgExitPool, &weightMsgExitPool, nil,
func(_ *rand.Rand) {
weightMsgExitPool = defaultWeightMsgExitPool
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgExitPool,
ammsimulation.SimulateMsgExitPool(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgSwapExactAmountIn int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgSwapExactAmountIn, &weightMsgSwapExactAmountIn, nil,
func(_ *rand.Rand) {
weightMsgSwapExactAmountIn = defaultWeightMsgSwapExactAmountIn
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgSwapExactAmountIn,
ammsimulation.SimulateMsgSwapExactAmountIn(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgSwapExactAmountOut int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgSwapExactAmountOut, &weightMsgSwapExactAmountOut, nil,
func(_ *rand.Rand) {
weightMsgSwapExactAmountOut = defaultWeightMsgSwapExactAmountOut
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgSwapExactAmountOut,
ammsimulation.SimulateMsgSwapExactAmountOut(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgSwapByDenom int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgSwapByDenom, &weightMsgSwapByDenom, nil,
func(_ *rand.Rand) {
weightMsgSwapByDenom = defaultWeightMsgSwapByDenom
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgSwapByDenom,
ammsimulation.SimulateMsgSwapByDenom(am.accountKeeper, am.bankKeeper, am.keeper),
))
var weightMsgUpdatePoolParams int
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgUpdatePoolParams, &weightMsgUpdatePoolParams, nil,
func(_ *rand.Rand) {
weightMsgUpdatePoolParams = defaultWeightMsgUpdatePoolParams
},
)
operations = append(operations, simulation.NewWeightedOperation(
weightMsgUpdatePoolParams,
ammsimulation.SimulateMsgUpdatePoolParams(am.accountKeeper, am.bankKeeper, am.keeper),
))
// this line is used by starport scaffolding # simapp/module/operation
return operations
}