-
Notifications
You must be signed in to change notification settings - Fork 3
/
tx.go
517 lines (433 loc) · 13.3 KB
/
tx.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
package cli
// DONTCOVER
// client is excluded from test coverage in MVP version
import (
"fmt"
"strconv"
"strings"
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/client/tx"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/version"
"github.com/cosmos/cosmos-sdk/x/gov/client/cli"
gov "github.com/cosmos/cosmos-sdk/x/gov/types"
"github.com/cosmosquad-labs/squad/v2/x/farming/keeper"
"github.com/cosmosquad-labs/squad/v2/x/farming/types"
)
// GetTxCmd returns a root CLI command handler for all x/farming transaction commands.
func GetTxCmd() *cobra.Command {
farmingTxCmd := &cobra.Command{
Use: types.ModuleName,
Short: "Farming transaction subcommands",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
farmingTxCmd.AddCommand(
NewCreateFixedAmountPlanCmd(),
NewStakeCmd(),
NewUnstakeCmd(),
NewHarvestCmd(),
NewRemovePlanCmd(),
)
if keeper.EnableRatioPlan {
farmingTxCmd.AddCommand(NewCreateRatioPlanCmd())
}
if keeper.EnableAdvanceEpoch {
farmingTxCmd.AddCommand(NewAdvanceEpochCmd())
}
return farmingTxCmd
}
// NewCreateFixedAmountPlanCmd implements the create a fixed amount plan command handler.
func NewCreateFixedAmountPlanCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "create-private-fixed-plan [plan-file]",
Args: cobra.ExactArgs(1),
Short: "Create private fixed amount farming plan",
Long: strings.TrimSpace(
fmt.Sprintf(`Create private fixed amount farming plan.
The plan details must be provided through a JSON file.
Example:
$ %s tx %s create-private-fixed-plan <path/to/plan.json> --from mykey
Where plan.json contains:
{
"name": "This plan intends to provide incentives for Cosmonauts!",
"staking_coin_weights": [
{
"denom": "pool1",
"amount": "1.000000000000000000"
}
],
"start_time": "2021-08-06T09:00:00Z",
"end_time": "2022-08-13T09:00:00Z",
"epoch_amount": [
{
"denom": "uatom",
"amount": "1"
}
]
}
Description for the parameters:
[name]: specifies the name for the plan
[staking_coin_weights]: specifies coin weights for the plan
[start_time]: specifies the time for the plan to start
[end_time]: specifies the time for the plan to end
[epoch_amount]: specifies an amount to distribute for every epoch
`,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
plan, err := ParsePrivateFixedPlan(args[0])
if err != nil {
return sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "failed to parse %s file due to %v", args[0], err)
}
msg := types.NewMsgCreateFixedAmountPlan(
plan.Name,
clientCtx.GetFromAddress(),
plan.StakingCoinWeights,
plan.StartTime,
plan.EndTime,
plan.EpochAmount,
)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewCreateRatioPlanCmd implements the create a ratio plan command handler.
func NewCreateRatioPlanCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "create-private-ratio-plan [plan-file]",
Args: cobra.ExactArgs(1),
Short: "Create private ratio farming plan",
Long: strings.TrimSpace(
fmt.Sprintf(`Create private ratio farming plan.
The plan details must be provided through a JSON file.
Example:
$ %s tx %s create-private-ratio-plan <path/to/plan.json> --from mykey
Where plan.json contains:
{
"name": "This plan intends to provide incentives for Cosmonauts!",
"staking_coin_weights": [
{
"denom": "pool1",
"amount": "1.000000000000000000"
}
],
"start_time": "2021-08-06T09:00:00Z",
"end_time": "2022-08-13T09:00:00Z",
"epoch_ratio": "1.000000000000000000"
}
Description for the parameters:
[name]: specifies the name for the plan
[staking_coin_weights]: specifies coin weights for the plan
[start_time]: specifies the time for the plan to start
[end_time]: specifies the time for the plan to end
[epoch_ratio]: specifies a ratio to distribute for every epoch. 1.000000000000000000 means to distribute all coins for an epoch
`,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
plan, err := ParsePrivateRatioPlan(args[0])
if err != nil {
return sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "failed to parse %s file due to %v", args[0], err)
}
msg := types.NewMsgCreateRatioPlan(
plan.Name,
clientCtx.GetFromAddress(),
plan.StakingCoinWeights,
plan.StartTime,
plan.EndTime,
plan.EpochRatio,
)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewStakeCmd implements the stake coin(s) command handler.
func NewStakeCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "stake [amount]",
Args: cobra.ExactArgs(1),
Short: "Stake coins",
Long: strings.TrimSpace(
fmt.Sprintf(`Stake coins.
To get farming rewards, you must stake coins that are defined in available plans on a network.
Example:
$ %s tx %s stake 1000pool1 --from mykey
$ %s tx %s stake 500pool1,500pool2 --from mykey
`,
version.AppName, types.ModuleName,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
farmer := clientCtx.GetFromAddress()
stakingCoins, err := sdk.ParseCoinsNormalized(args[0])
if err != nil {
return err
}
msg := types.NewMsgStake(farmer, stakingCoins)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewUnstakeCmd implements the unstake coin(s) command handler.
func NewUnstakeCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "unstake [amount]",
Args: cobra.ExactArgs(1),
Short: "Unstake coins",
Long: strings.TrimSpace(
fmt.Sprintf(`Unstake coins.
Note that unstaking doesn't require any period and your accumulated rewards are automatically withdrawn to your wallet.
Example:
$ %s tx %s unstake 500pool1 --from mykey
$ %s tx %s unstake 500pool1,500pool2 --from mykey
`,
version.AppName, types.ModuleName,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
farmer := clientCtx.GetFromAddress()
unstakingCoins, err := sdk.ParseCoinsNormalized(args[0])
if err != nil {
return err
}
msg := types.NewMsgUnstake(farmer, unstakingCoins)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewHarvestCmd implements the harvest rewards command handler.
func NewHarvestCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "harvest [staking-coin-denoms]",
Args: cobra.MaximumNArgs(1),
Short: "Harvest farming rewards",
Long: strings.TrimSpace(
fmt.Sprintf(`Harvest farming rewards from the staking coin denoms that are defined in the availble plans.
Example:
$ %s tx %s harvest pool1 --from mykey
$ %s tx %s harvest pool1,pool2 --from mykey
$ %s tx %s harvest --all --from mykey
`,
version.AppName, types.ModuleName,
version.AppName, types.ModuleName,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
var denoms []string
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
farmer := clientCtx.GetFromAddress()
switch len(args) {
case 0:
all, _ := cmd.Flags().GetBool(FlagAll)
if !all {
return fmt.Errorf("either staking-coin-denoms or --all flag must be specified")
}
// The transaction cannot be generated offline with --all flag since it
// requires a query to get all the staking denoms.
if clientCtx.Offline {
return fmt.Errorf("cannot generate tx in offline mode with --all flag")
}
queryClient := types.NewQueryClient(clientCtx)
resp, err := queryClient.Position(cmd.Context(), &types.QueryPositionRequest{
Farmer: farmer.String(),
})
if err != nil {
return err
}
for _, stakedCoin := range resp.StakedCoins {
denoms = append(denoms, stakedCoin.Denom)
}
if len(denoms) == 0 {
return fmt.Errorf("there is no staked coins")
}
case 1:
denoms = strings.Split(args[0], ",")
default:
return fmt.Errorf("either staking-coin-denoms or --all flag must be specified")
}
msg := types.NewMsgHarvest(farmer, denoms)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
cmd.Flags().AddFlagSet(flagSetHarvest())
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewRemovePlanCmd implements the remove plan handler.
func NewRemovePlanCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "remove-plan [plan-id]",
Args: cobra.ExactArgs(1),
Short: "Remove a terminated private plan",
Long: fmt.Sprintf(`Remove a terminated private plan and get the plan creation fee refunded.
Example:
$ %s tx %s remove-plan 1 --from mykey`,
version.AppName, types.ModuleName,
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
creator := clientCtx.GetFromAddress()
planId, err := strconv.ParseUint(args[0], 10, 64)
if err != nil {
return fmt.Errorf("parse plan id: %w", err)
}
msg := types.NewMsgRemovePlan(creator, planId)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// NewAdvanceEpochCmd implements the advance epoch by 1 command handler.
func NewAdvanceEpochCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "advance-epoch",
Args: cobra.NoArgs,
Short: "Advance epoch by 1 to simulate reward distribution",
Long: strings.TrimSpace(
fmt.Sprintf(`Advance epoch by 1 to simulate reward distribution.
This message is available for testing purpose and it can only be enabled when you build the binary with "make install-testing" command.
Example:
$ %s tx %s advance-epoch --from mykey
`,
version.AppName, types.ModuleName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
requesterAcc := clientCtx.GetFromAddress()
msg := types.NewMsgAdvanceEpoch(requesterAcc)
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}
// GetCmdSubmitPublicPlanProposal implements the create/update/delete public farming plan command handler.
func GetCmdSubmitPublicPlanProposal() *cobra.Command {
cmd := &cobra.Command{
Use: "public-farming-plan [proposal-file] [flags]",
Args: cobra.ExactArgs(1),
Short: "Submit a public farming plan",
Long: strings.TrimSpace(
fmt.Sprintf(`Submit a a public farming plan along with an initial deposit. You can submit this governance proposal
to add, update, and delete farming plan. The proposal details must be supplied via a JSON file. A JSON file to add plan request proposal is
provided below.
Example:
$ %s tx gov submit-proposal public-farming-plan <path/to/proposal.json> --from=<key_or_address> --deposit=<deposit_amount>
Where proposal.json contains:
{
"title": "Public Farming Plan",
"description": "Are you ready to farm?",
"name": "Cosmos Hub Community Tax",
"add_plan_requests": [
{
"farming_pool_address": "cosmos1mzgucqnfr2l8cj5apvdpllhzt4zeuh2cshz5xu",
"termination_address": "cosmos1mzgucqnfr2l8cj5apvdpllhzt4zeuh2cshz5xu",
"staking_coin_weights": [
{
"denom": "pool1",
"amount": "0.800000000000000000"
},
{
"denom": "stake",
"amount": "0.100000000000000000"
},
{
"denom": "uatom",
"amount": "0.100000000000000000"
}
],
"start_time": "2021-08-06T09:00:00Z",
"end_time": "2022-08-13T09:00:00Z",
"epoch_amount": [
{
"denom": "uatom",
"amount": "1"
}
]
}
]
}
`,
version.AppName,
),
),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
depositStr, err := cmd.Flags().GetString(cli.FlagDeposit)
if err != nil {
return err
}
deposit, err := sdk.ParseCoinsNormalized(depositStr)
if err != nil {
return err
}
proposal, err := ParsePublicPlanProposal(clientCtx.Codec, args[0])
if err != nil {
return err
}
content := types.NewPublicPlanProposal(
proposal.Title,
proposal.Description,
proposal.AddPlanRequests,
proposal.ModifyPlanRequests,
proposal.DeletePlanRequests,
)
from := clientCtx.GetFromAddress()
msg, err := gov.NewMsgSubmitProposal(content, deposit, from)
if err != nil {
return err
}
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
cmd.Flags().String(cli.FlagDeposit, "", "deposit of proposal")
return cmd
}