Prathamesh Musale
213c390c37
Some checks failed
Integration Tests / test-integration (push) Successful in 2m48s
E2E Tests / test-e2e (push) Successful in 4m56s
Lint / Run golangci-lint (push) Successful in 5m6s
Unit Tests / test-unit (push) Successful in 3m22s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 10m40s
SDK Tests / sdk_tests (push) Successful in 10m55s
SDK Tests / sdk_tests_auctions (push) Failing after 16m7s
Part of https://www.notion.so/Rename-laconic2d-to-laconicd-9028d0c020d24d1288e92ebcb773d7a7 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: cerc-io/laconic2d#26 Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to> Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
189 lines
4.3 KiB
Go
189 lines
4.3 KiB
Go
package cli
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"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"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
wnsUtils "git.vdb.to/cerc-io/laconicd/utils"
|
|
auctiontypes "git.vdb.to/cerc-io/laconicd/x/auction"
|
|
)
|
|
|
|
// GetTxCmd returns transaction commands for this module.
|
|
func GetTxCmd() *cobra.Command {
|
|
auctionTxCmd := &cobra.Command{
|
|
Use: auctiontypes.ModuleName,
|
|
Short: "Auction transactions subcommands",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
auctionTxCmd.AddCommand(
|
|
GetCmdCommitBid(),
|
|
GetCmdRevealBid(),
|
|
)
|
|
|
|
return auctionTxCmd
|
|
}
|
|
|
|
// GetCmdCommitBid is the CLI command for committing a bid.
|
|
func GetCmdCommitBid() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "commit-bid [auction-id] [bid-amount]",
|
|
Short: "Commit sealed bid",
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
bidAmount, err := sdk.ParseCoinNormalized(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
mnemonic, err := wnsUtils.GenerateMnemonic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
chainId := viper.GetString("chain-id")
|
|
auctionId := args[0]
|
|
|
|
reveal := map[string]interface{}{
|
|
"chainId": chainId,
|
|
"auctionId": auctionId,
|
|
"bidderAddress": clientCtx.GetFromAddress().String(),
|
|
"bidAmount": bidAmount.String(),
|
|
"noise": mnemonic,
|
|
}
|
|
|
|
commitHash, content, err := wnsUtils.GenerateHash(reveal)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Save reveal file.
|
|
err = os.WriteFile(fmt.Sprintf("%s-%s.json", clientCtx.GetFromName(), commitHash), content, 0o600)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := auctiontypes.NewMsgCommitBid(auctionId, commitHash, clientCtx.GetFromAddress())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// GetCmdRevealBid is the CLI command for revealing a bid.
|
|
func GetCmdRevealBid() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "reveal-bid [auction-id] [reveal-file-path]",
|
|
Short: "Reveal bid",
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
auctionId := args[0]
|
|
revealFilePath := args[1]
|
|
|
|
revealBytes, err := os.ReadFile(revealFilePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := auctiontypes.NewMsgRevealBid(auctionId, hex.EncodeToString(revealBytes), clientCtx.GetFromAddress())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func GetCmdCreateAuction() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "create [commits-duration] [reveals-duration] [commit-fee] [reveal-fee] [minimum-bid]",
|
|
Short: "Create auction.",
|
|
Args: cobra.ExactArgs(5),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
commitsDuration, err := time.ParseDuration(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
revealsDuration, err := time.ParseDuration(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
commitFee, err := sdk.ParseCoinNormalized(args[2])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
revealFee, err := sdk.ParseCoinNormalized(args[3])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
minimumBid, err := sdk.ParseCoinNormalized(args[4])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
params := auctiontypes.Params{
|
|
CommitsDuration: commitsDuration,
|
|
RevealsDuration: revealsDuration,
|
|
CommitFee: commitFee,
|
|
RevealFee: revealFee,
|
|
MinimumBid: minimumBid,
|
|
}
|
|
msg := auctiontypes.NewMsgCreateAuction(params, clientCtx.GetFromAddress())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
return cmd
|
|
}
|