forked from crescent-network/crescent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
operations.go
157 lines (136 loc) · 4.89 KB
/
operations.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
package simulation
import (
"math/rand"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/codec"
simappparams "github.com/cosmos/cosmos-sdk/simapp/params"
sdk "github.com/cosmos/cosmos-sdk/types"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/simulation"
appparams "github.com/jesse-pinkman-cre/crescent/app/params"
utils "github.com/jesse-pinkman-cre/crescent/types"
marketmakerkeeper "github.com/jesse-pinkman-cre/crescent/x/marketmaker/keeper"
marketmakertypes "github.com/jesse-pinkman-cre/crescent/x/marketmaker/types"
)
// Simulation operation weights constants.
const (
OpWeightMsgApplyMarketMaker = "op_weight_msg_apply_market_maker"
OpWeightMsgClaimIncentives = "op_weight_msg_claim_incentives"
)
var (
Gas = uint64(20000000)
Fees = sdk.Coins{
{
Denom: "stake",
Amount: sdk.NewInt(0),
},
}
)
// WeightedOperations returns all the operations from the module with their respective weights.
func WeightedOperations(
appParams simtypes.AppParams, cdc codec.JSONCodec, ak marketmakertypes.AccountKeeper,
bk marketmakertypes.BankKeeper, k marketmakerkeeper.Keeper,
) simulation.WeightedOperations {
var weightMsgApplyMarketMaker int
appParams.GetOrGenerate(cdc, OpWeightMsgApplyMarketMaker, &weightMsgApplyMarketMaker, nil,
func(_ *rand.Rand) {
weightMsgApplyMarketMaker = appparams.DefaultWeightMsgApplyMarketMaker
},
)
var weightMsgClaimIncentives int
appParams.GetOrGenerate(cdc, OpWeightMsgClaimIncentives, &weightMsgClaimIncentives, nil,
func(_ *rand.Rand) {
weightMsgClaimIncentives = appparams.DefaultWeightMsgClaimIncentives
},
)
return simulation.WeightedOperations{
simulation.NewWeightedOperation(
weightMsgApplyMarketMaker,
SimulateMsgApplyMarketMaker(ak, bk, k),
),
simulation.NewWeightedOperation(
weightMsgClaimIncentives,
SimulateMsgClaimIncentives(ak, bk, k),
),
}
}
// SimulateMsgApplyMarketMaker generates a MsgApplyMarketMaker with random values
// nolint: interfacer
func SimulateMsgApplyMarketMaker(ak marketmakertypes.AccountKeeper, bk marketmakertypes.BankKeeper, k marketmakerkeeper.Keeper) simtypes.Operation {
return func(
r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainID string,
) (simtypes.OperationMsg, []simtypes.FutureOperation, error) {
simAccount, _ := simtypes.RandomAcc(r, accs)
account := ak.GetAccount(ctx, simAccount.Address)
params := k.GetParams(ctx)
var pairs []uint64
applyDeposit := sdk.Coins{}
if simtypes.RandIntBetween(r, 0, 2) == 1 {
pairs = []uint64{2}
applyDeposit = applyDeposit.Add(params.DepositAmount...)
} else {
pairs = []uint64{2, 3}
applyDeposit = applyDeposit.Add(params.DepositAmount...).Add(params.DepositAmount...)
}
for _, pair := range pairs {
_, found := k.GetMarketMaker(ctx, account.GetAddress(), pair)
if found {
return simtypes.NoOpMsg(marketmakertypes.ModuleName, marketmakertypes.TypeMsgApplyMarketMaker, "already exist market maker"), nil, nil
}
}
msg := marketmakertypes.NewMsgApplyMarketMaker(account.GetAddress(), pairs)
txCtx := simulation.OperationInput{
R: r,
App: app,
TxGen: simappparams.MakeTestEncodingConfig().TxConfig,
Cdc: nil,
Msg: msg,
MsgType: msg.Type(),
Context: ctx,
SimAccount: simAccount,
AccountKeeper: ak,
Bankkeeper: bk,
ModuleName: marketmakertypes.ModuleName,
CoinsSpentInMsg: applyDeposit,
}
return utils.GenAndDeliverTxWithFees(txCtx, Gas, Fees)
}
}
// SimulateMsgClaimIncentives generates a MsgClaimIncentives with random values
// nolint: interfacer
func SimulateMsgClaimIncentives(ak marketmakertypes.AccountKeeper, bk marketmakertypes.BankKeeper, k marketmakerkeeper.Keeper) simtypes.Operation {
return func(
r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainID string,
) (simtypes.OperationMsg, []simtypes.FutureOperation, error) {
var simAccount simtypes.Account
skip := true
// find incentive from the simulated accounts
for _, acc := range accs {
_, found := k.GetIncentive(ctx, acc.Address)
if found {
simAccount = acc
skip = false
break
}
}
if skip {
return simtypes.NoOpMsg(marketmakertypes.ModuleName, marketmakertypes.TypeMsgClaimIncentives, "no account to claim rewards"), nil, nil
}
msg := marketmakertypes.NewMsgClaimIncentives(simAccount.Address)
txCtx := simulation.OperationInput{
R: r,
App: app,
TxGen: simappparams.MakeTestEncodingConfig().TxConfig,
Cdc: nil,
Msg: msg,
MsgType: msg.Type(),
Context: ctx,
SimAccount: simAccount,
AccountKeeper: ak,
Bankkeeper: bk,
ModuleName: marketmakertypes.ModuleName,
CoinsSpentInMsg: sdk.Coins{},
}
return simulation.GenAndDeliverTxWithRandFees(txCtx)
}
}