-
Notifications
You must be signed in to change notification settings - Fork 204
/
tx_set_airdrop_allocations.go
57 lines (45 loc) · 1.27 KB
/
tx_set_airdrop_allocations.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
package cli
import (
"strings"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/client/tx"
"github.com/spf13/cobra"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/Stride-Labs/stride/v14/x/claim/types"
)
func CmdSetAirdropAllocations() *cobra.Command {
cmd := &cobra.Command{
Use: "set-airdrop-allocations [airdrop-identifier] [user-addresses] [user-weights]",
Short: "Broadcast message set-airdrop-allocations",
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) (err error) {
argAddresses := strings.Split(args[1], ",")
argWeights := strings.Split(args[2], ",")
weights := []sdk.Dec{}
for _, weight := range argWeights {
weightDec, err := sdk.NewDecFromStr(weight)
if err != nil {
return err
}
weights = append(weights, weightDec)
}
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
msg := types.NewMsgSetAirdropAllocations(
clientCtx.GetFromAddress().String(),
args[0],
argAddresses,
weights,
)
if err := msg.ValidateBasic(); err != nil {
return err
}
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}