mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-04 13:16:39 +00:00

* updated planetmint-go dependency in lib/tx * added two additional distribution addresses. splitted up the previous investor pool of 31% into three pools: * early investors 19% * investors 10% * strategic 2% * adjusted distribution request message * adjusted distribution result * adjusted distribution order * refactored reissuance and distribution msg methods to be more readable * fixed token distribution test case Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package cli
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
"github.com/planetmint/planetmint-go/x/dao/types"
|
|
"github.com/spf13/cast"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var _ = strconv.Itoa(0)
|
|
|
|
func CmdDistributionResult() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "distribution-result [last-pop] [dao-txid] [investor-txid] [pop-txid] [early-investor-txid] [strategic-txid]",
|
|
Short: "Broadcast message DistributionResult",
|
|
Args: cobra.ExactArgs(6),
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
argLastPop, err := cast.ToInt64E(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
argDaoTxid := args[1]
|
|
argInvestorTxid := args[2]
|
|
argPopTxid := args[3]
|
|
argEarlyInvestorTxid := args[4]
|
|
argStrategicTxid := args[5]
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := types.NewMsgDistributionResult(
|
|
clientCtx.GetFromAddress().String(),
|
|
argLastPop,
|
|
argDaoTxid,
|
|
argInvestorTxid,
|
|
argPopTxid,
|
|
argEarlyInvestorTxid,
|
|
argStrategicTxid,
|
|
)
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|