cosmos-sdk/client/v2/internal/flags/flags.go
mergify[bot] 8334eefaaf
feat(client/v2): signing (backport #17913) (#17972)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-10-05 15:41:50 +02:00

20 lines
447 B
Go

package flags
// This defines flag names that can be used in autocli.
const (
// FlagFrom is the flag to set the from address with which to sign the transaction.
FlagFrom = "from"
// FlagOutput is the flag to set the output format.
FlagOutput = "output"
// FlagNoIndent is the flag to not indent the output.
FlagNoIndent = "no-indent"
)
// List of supported output formats
const (
OutputFormatJSON = "json"
OutputFormatText = "text"
)