## Description Closes: #15109 Change to work only when `FlagAccountNumber` and `FlagSequence` are in offline mode. In other cases, use `AccountRetriever` to populate those values. --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
459 lines
13 KiB
Go
459 lines
13 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
kmultisig "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
|
|
)
|
|
|
|
const (
|
|
flagMultisig = "multisig"
|
|
flagOverwrite = "overwrite"
|
|
flagSigOnly = "signature-only"
|
|
flagAmino = "amino"
|
|
flagNoAutoIncrement = "no-auto-increment"
|
|
flagAppend = "append"
|
|
)
|
|
|
|
// GetSignBatchCommand returns the transaction sign-batch command.
|
|
func GetSignBatchCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "sign-batch [file] ([file2]...)",
|
|
Short: "Sign transaction batch files",
|
|
Long: `Sign batch files of transactions generated with --generate-only.
|
|
The command processes list of transactions from a file (one StdTx each line), or multiple files.
|
|
Then generates signed transactions or signatures and print their JSON encoding, delimited by '\n'.
|
|
As the signatures are generated, the command updates the account and sequence number accordingly.
|
|
|
|
If the --signature-only flag is set, it will output the signature parts only.
|
|
|
|
The --offline flag makes sure that the client will not reach out to full node.
|
|
As a result, the account and the sequence number queries will not be performed and
|
|
it is required to set such parameters manually. Note, invalid values will cause
|
|
the transaction to fail. The sequence will be incremented automatically for each
|
|
transaction that is signed.
|
|
|
|
If --account-number or --sequence flag is used when offline=false, they are ignored and
|
|
overwritten by the default flag values.
|
|
|
|
The --multisig=<multisig_key> flag generates a signature on behalf of a multisig
|
|
account key. It implies --signature-only.
|
|
`,
|
|
PreRun: preSignCmd,
|
|
RunE: makeSignBatchCmd(),
|
|
Args: cobra.MinimumNArgs(1),
|
|
}
|
|
|
|
cmd.Flags().String(flagMultisig, "", "Address or key name of the multisig account on behalf of which the transaction shall be signed")
|
|
cmd.Flags().String(flags.FlagOutputDocument, "", "The document will be written to the given file instead of STDOUT")
|
|
cmd.Flags().Bool(flagSigOnly, false, "Print only the generated signature, then exit")
|
|
cmd.Flags().Bool(flagAppend, false, "Combine all message and generate single signed transaction for broadcast.")
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
cmd.MarkFlagRequired(flags.FlagFrom)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func makeSignBatchCmd() func(cmd *cobra.Command, args []string) error {
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
txFactory, err := tx.NewFactoryCLI(clientCtx, cmd.Flags())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
txCfg := clientCtx.TxConfig
|
|
printSignatureOnly, _ := cmd.Flags().GetBool(flagSigOnly)
|
|
|
|
ms, err := cmd.Flags().GetString(flagMultisig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// prepare output document
|
|
closeFunc, err := setOutputFile(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer closeFunc()
|
|
clientCtx.WithOutput(cmd.OutOrStdout())
|
|
|
|
// reads tx from args
|
|
scanner, err := authclient.ReadTxsFromInput(txCfg, args...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !clientCtx.Offline {
|
|
if ms == "" {
|
|
from, err := cmd.Flags().GetString(flags.FlagFrom)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
addr, _, _, err := client.GetFromFields(clientCtx, txFactory.Keybase(), from)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
acc, err := txFactory.AccountRetriever().GetAccount(clientCtx, addr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
txFactory = txFactory.WithAccountNumber(acc.GetAccountNumber()).WithSequence(acc.GetSequence())
|
|
} else {
|
|
txFactory = txFactory.WithAccountNumber(0).WithSequence(0)
|
|
}
|
|
}
|
|
|
|
appendMessagesToSingleTx, _ := cmd.Flags().GetBool(flagAppend)
|
|
// Combines all tx msgs and create single signed transaction
|
|
if appendMessagesToSingleTx {
|
|
txBuilder := clientCtx.TxConfig.NewTxBuilder()
|
|
msgs := make([]sdk.Msg, 0)
|
|
newGasLimit := uint64(0)
|
|
|
|
for scanner.Scan() {
|
|
unsignedStdTx := scanner.Tx()
|
|
fe, err := clientCtx.TxConfig.WrapTxBuilder(unsignedStdTx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// increment the gas
|
|
newGasLimit += fe.GetTx().GetGas()
|
|
// append messages
|
|
msgs = append(msgs, unsignedStdTx.GetMsgs()...)
|
|
}
|
|
// set the new appened msgs into builder
|
|
txBuilder.SetMsgs(msgs...)
|
|
|
|
// set the memo,fees,feeGranter,feePayer from cmd flags
|
|
txBuilder.SetMemo(txFactory.Memo())
|
|
txBuilder.SetFeeAmount(txFactory.Fees())
|
|
txBuilder.SetFeeGranter(clientCtx.FeeGranter)
|
|
txBuilder.SetFeePayer(clientCtx.FeePayer)
|
|
|
|
// set the gasLimit
|
|
txBuilder.SetGasLimit(newGasLimit)
|
|
|
|
// sign the txs
|
|
if ms == "" {
|
|
from, _ := cmd.Flags().GetString(flags.FlagFrom)
|
|
if err := sign(clientCtx, txBuilder, txFactory, from); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := multisigSign(clientCtx, txBuilder, txFactory, ms); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
json, err := marshalSignatureJSON(txCfg, txBuilder, printSignatureOnly)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmd.Printf("%s\n", json)
|
|
} else {
|
|
// It will generate signed tx for each tx
|
|
for sequence := txFactory.Sequence(); scanner.Scan(); sequence++ {
|
|
unsignedStdTx := scanner.Tx()
|
|
txFactory = txFactory.WithSequence(sequence)
|
|
txBuilder, err := txCfg.WrapTxBuilder(unsignedStdTx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// sign the txs
|
|
if ms == "" {
|
|
from, _ := cmd.Flags().GetString(flags.FlagFrom)
|
|
if err := sign(clientCtx, txBuilder, txFactory, from); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := multisigSign(clientCtx, txBuilder, txFactory, ms); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
json, err := marshalSignatureJSON(txCfg, txBuilder, printSignatureOnly)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cmd.Printf("%s\n", json)
|
|
}
|
|
}
|
|
|
|
if err := scanner.UnmarshalErr(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return scanner.UnmarshalErr()
|
|
}
|
|
}
|
|
|
|
func sign(clientCtx client.Context, txBuilder client.TxBuilder, txFactory tx.Factory, from string) error {
|
|
_, fromName, _, err := client.GetFromFields(clientCtx, txFactory.Keybase(), from)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting account from keybase: %w", err)
|
|
}
|
|
|
|
if err = authclient.SignTx(txFactory, clientCtx, fromName, txBuilder, true, true); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func multisigSign(clientCtx client.Context, txBuilder client.TxBuilder, txFactory tx.Factory, multisig string) error {
|
|
multisigAddr, _, _, err := client.GetFromFields(clientCtx, txFactory.Keybase(), multisig)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting account from keybase: %w", err)
|
|
}
|
|
|
|
if err = authclient.SignTxWithSignerAddress(
|
|
txFactory,
|
|
clientCtx,
|
|
multisigAddr,
|
|
clientCtx.GetFromName(),
|
|
txBuilder,
|
|
clientCtx.Offline,
|
|
true,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func setOutputFile(cmd *cobra.Command) (func(), error) {
|
|
outputDoc, _ := cmd.Flags().GetString(flags.FlagOutputDocument)
|
|
if outputDoc == "" {
|
|
return func() {}, nil
|
|
}
|
|
|
|
fp, err := os.OpenFile(outputDoc, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644)
|
|
if err != nil {
|
|
return func() {}, err
|
|
}
|
|
|
|
cmd.SetOut(fp)
|
|
|
|
return func() { fp.Close() }, nil
|
|
}
|
|
|
|
// GetSignCommand returns the transaction sign command.
|
|
func GetSignCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "sign [file]",
|
|
Short: "Sign a transaction generated offline",
|
|
Long: `Sign a transaction created with the --generate-only flag.
|
|
It will read a transaction from [file], sign it, and print its JSON encoding.
|
|
|
|
If the --signature-only flag is set, it will output the signature parts only.
|
|
|
|
The --offline flag makes sure that the client will not reach out to full node.
|
|
As a result, the account and sequence number queries will not be performed and
|
|
it is required to set such parameters manually. Note, invalid values will cause
|
|
the transaction to fail.
|
|
|
|
The --multisig=<multisig_key> flag generates a signature on behalf of a multisig account
|
|
key. It implies --signature-only. Full multisig signed transactions may eventually
|
|
be generated via the 'multisign' command.
|
|
`,
|
|
PreRun: preSignCmd,
|
|
RunE: makeSignCmd(),
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
cmd.Flags().String(flagMultisig, "", "Address or key name of the multisig account on behalf of which the transaction shall be signed")
|
|
cmd.Flags().Bool(flagOverwrite, false, "Overwrite existing signatures with a new one. If disabled, new signature will be appended")
|
|
cmd.Flags().Bool(flagSigOnly, false, "Print only the signatures")
|
|
cmd.Flags().String(flags.FlagOutputDocument, "", "The document will be written to the given file instead of STDOUT")
|
|
cmd.Flags().Bool(flagAmino, false, "Generate Amino encoded JSON suitable for submiting to the txs REST endpoint")
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
cmd.MarkFlagRequired(flags.FlagFrom)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func preSignCmd(cmd *cobra.Command, _ []string) {
|
|
// Conditionally mark the account and sequence numbers required as no RPC
|
|
// query will be done.
|
|
if offline, _ := cmd.Flags().GetBool(flags.FlagOffline); offline {
|
|
cmd.MarkFlagRequired(flags.FlagAccountNumber)
|
|
cmd.MarkFlagRequired(flags.FlagSequence)
|
|
}
|
|
}
|
|
|
|
func makeSignCmd() func(cmd *cobra.Command, args []string) error {
|
|
return func(cmd *cobra.Command, args []string) (err error) {
|
|
var clientCtx client.Context
|
|
|
|
clientCtx, err = client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
clientCtx, txF, newTx, err := readTxAndInitContexts(clientCtx, cmd, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return signTx(cmd, clientCtx, txF, newTx)
|
|
}
|
|
}
|
|
|
|
func signTx(cmd *cobra.Command, clientCtx client.Context, txF tx.Factory, newTx sdk.Tx) error {
|
|
f := cmd.Flags()
|
|
txCfg := clientCtx.TxConfig
|
|
txBuilder, err := txCfg.WrapTxBuilder(newTx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
printSignatureOnly, err := cmd.Flags().GetBool(flagSigOnly)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
multisig, err := cmd.Flags().GetString(flagMultisig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
from, err := cmd.Flags().GetString(flags.FlagFrom)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, fromName, _, err := client.GetFromFields(clientCtx, txF.Keybase(), from)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting account from keybase: %w", err)
|
|
}
|
|
|
|
overwrite, err := f.GetBool(flagOverwrite)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if multisig != "" {
|
|
// Bech32 decode error, maybe it's a name, we try to fetch from keyring
|
|
multisigAddr, multisigName, _, err := client.GetFromFields(clientCtx, txF.Keybase(), multisig)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting account from keybase: %w", err)
|
|
}
|
|
multisigkey, err := getMultisigRecord(clientCtx, multisigName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
multisigPubKey, err := multisigkey.GetPubKey()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
multisigLegacyPub := multisigPubKey.(*kmultisig.LegacyAminoPubKey)
|
|
|
|
fromRecord, err := clientCtx.Keyring.Key(fromName)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting account from keybase: %w", err)
|
|
}
|
|
fromPubKey, err := fromRecord.GetPubKey()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var found bool
|
|
for _, pubkey := range multisigLegacyPub.GetPubKeys() {
|
|
if pubkey.Equals(fromPubKey) {
|
|
found = true
|
|
}
|
|
}
|
|
if !found {
|
|
return fmt.Errorf("signing key is not a part of multisig key")
|
|
}
|
|
err = authclient.SignTxWithSignerAddress(
|
|
txF, clientCtx, multisigAddr, fromName, txBuilder, clientCtx.Offline, overwrite)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
printSignatureOnly = true
|
|
} else {
|
|
err = authclient.SignTx(txF, clientCtx, clientCtx.GetFromName(), txBuilder, clientCtx.Offline, overwrite)
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
aminoJSON, err := f.GetBool(flagAmino)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
bMode, err := f.GetString(flags.FlagBroadcastMode)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// set output
|
|
closeFunc, err := setOutputFile(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer closeFunc()
|
|
clientCtx.WithOutput(cmd.OutOrStdout())
|
|
|
|
var json []byte
|
|
if aminoJSON {
|
|
stdTx, err := tx.ConvertTxToStdTx(clientCtx.LegacyAmino, txBuilder.GetTx())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req := BroadcastReq{
|
|
Tx: stdTx,
|
|
Mode: bMode,
|
|
}
|
|
json, err = clientCtx.LegacyAmino.MarshalJSON(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
json, err = marshalSignatureJSON(txCfg, txBuilder, printSignatureOnly)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
cmd.Printf("%s\n", json)
|
|
|
|
return err
|
|
}
|
|
|
|
func marshalSignatureJSON(txConfig client.TxConfig, txBldr client.TxBuilder, signatureOnly bool) ([]byte, error) {
|
|
parsedTx := txBldr.GetTx()
|
|
if signatureOnly {
|
|
sigs, err := parsedTx.GetSignaturesV2()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return txConfig.MarshalSignatureJSON(sigs)
|
|
}
|
|
|
|
return txConfig.TxJSONEncoder()(parsedTx)
|
|
}
|