0g-chain/third_party/proto/cosmos/autocli/v1/options.proto
Draco 614d4e40fe
Update cosmos-sdk to v0.47.7 (#1811)
* Update cometbft, cosmos, ethermint, and ibc-go

* Replace github.com/tendermint/tendermint by github.com/cometbft/cometbft

* Replace github.com/tendermint/tm-db by github.com/cometbft/cometbft-db

* Replace gogo/protobuf with cosmos/gogoproto & simapp replacement

* Replace cosmos-sdk/simapp/helpers with cosmos-sdk/testutil/sims

* Remove no longer used simulations

* Replace ibchost with ibcexported
See https://github.com/cosmos/ibc-go/blob/v7.2.2/docs/migrations/v6-to-v7.md#ibc-module-constants

* Add new consensus params keeper

* Add consensus keeper to blockers

* Fix keeper and module issues in app.go

* Add IsSendEnabledCoins and update SetParams interface changes

* Fix protobuf build for cosmos 47 (#1800)

* fix cp errors by using -f; fix lint by only linting our proto dir;
and use proofs.proto directly from ics23 for ibc-go v7

* run proto-all; commit updated third party deps and swagger changes

* regenerate proto files

* use correct gocosmos build plugin for buf

* re-gen all protobuf files to update paths for new gocosmos plugin

* update protoc and buf to latest versions

* fix staking keeper issues in app.go

* update tally handler for gov changes

* chain id fix and flag fixes

* update deps for cometbft 47.7 upgrade

* remove all module legacy queriers

* update stakingKeeper to pointer

* Replace ModuleCdc from govv1beta1 to govcodec

* remove simulations

* abci.LastCommitInfo → abci.CommitInfo

* Remove unused code in keys.go

* simapp.MakeTestEncodingConfig -> moduletestutil.MakeTestEncodingConfi

* Fix chain id issues in tests

* Fix remaining unit test issues

* Update changelog for upgrade

* Fix e2e tests using updated kvtool

* Update protonet to v47 compatible genesis

* Bump cometbft-db to v0.9.1-kava.1

* Update kvtool

* Remove extra changelog

* Fix merged rocksdb issues

* go mod cleanup

* Bump cometbft-db to v9 and go to 1.21

* Bump rocksdb version to v8.10.0

* Update kvtool to latest version

* Update gin to v1.9.0

* Use ibctm.ModuleName in app_test

* Fallback to genesis chain id instead of client toml

* Remove all simulations

* Fix cdp migrations issue with v47

* Update dependencies to correct tags

---------

Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com>
2024-02-06 17:54:10 -05:00

128 lines
4.6 KiB
Protocol Buffer

syntax = "proto3";
package cosmos.autocli.v1;
option go_package = "cosmossdk.io/api/cosmos/base/cli/v1;cliv1";
// ModuleOptions describes the CLI options for a Cosmos SDK module.
message ModuleOptions {
// tx describes the tx command for the module.
ServiceCommandDescriptor tx = 1;
// query describes the tx command for the module.
ServiceCommandDescriptor query = 2;
}
// ServiceCommandDescriptor describes a CLI command based on a protobuf service.
message ServiceCommandDescriptor {
// service is the fully qualified name of the protobuf service to build
// the command from. It can be left empty if sub_commands are used instead
// which may be the case if a module provides multiple tx and/or query services.
string service = 1;
// rpc_command_options are options for commands generated from rpc methods.
// If no options are specified for a given rpc method on the service, a
// command will be generated for that method with the default options.
repeated RpcCommandOptions rpc_command_options = 2;
// sub_commands is a map of optional sub-commands for this command based on
// different protobuf services. The map key is used as the name of the
// sub-command.
map<string, ServiceCommandDescriptor> sub_commands = 3;
}
// RpcCommandOptions specifies options for commands generated from protobuf
// rpc methods.
message RpcCommandOptions {
// rpc_method is short name of the protobuf rpc method that this command is
// generated from.
string rpc_method = 1;
// use is the one-line usage method. It also allows specifying an alternate
// name for the command as the first word of the usage text.
//
// By default the name of an rpc command is the kebab-case short name of the
// rpc method.
string use = 2;
// long is the long message shown in the 'help <this-command>' output.
string long = 3;
// short is the short description shown in the 'help' output.
string short = 4;
// example is examples of how to use the command.
string example = 5;
// alias is an array of aliases that can be used instead of the first word in Use.
repeated string alias = 6;
// suggest_for is an array of command names for which this command will be suggested -
// similar to aliases but only suggests.
repeated string suggest_for = 7;
// deprecated defines, if this command is deprecated and should print this string when used.
string deprecated = 8;
// version defines the version for this command. If this value is non-empty and the command does not
// define a "version" flag, a "version" boolean flag will be added to the command and, if specified,
// will print content of the "Version" variable. A shorthand "v" flag will also be added if the
// command does not define one.
string version = 9;
// flag_options are options for flags generated from rpc request fields.
// By default all request fields are configured as flags. They can
// also be configured as positional args instead using positional_args.
map<string, FlagOptions> flag_options = 10;
// positional_args specifies positional arguments for the command.
repeated PositionalArgDescriptor positional_args = 11;
// skip specifies whether to skip this rpc method when generating commands.
bool skip = 12;
}
// FlagOptions are options for flags generated from rpc request fields.
// By default, all request fields are configured as flags based on the
// kebab-case name of the field. Fields can be turned into positional arguments
// instead by using RpcCommandOptions.positional_args.
message FlagOptions {
// name is an alternate name to use for the field flag.
string name = 1;
// shorthand is a one-letter abbreviated flag.
string shorthand = 2;
// usage is the help message.
string usage = 3;
// default_value is the default value as text.
string default_value = 4;
// default value is the default value as text if the flag is used without any value.
string no_opt_default_value = 5;
// deprecated is the usage text to show if this flag is deprecated.
string deprecated = 6;
// shorthand_deprecated is the usage text to show if the shorthand of this flag is deprecated.
string shorthand_deprecated = 7;
// hidden hides the flag from help/usage text
bool hidden = 8;
}
// PositionalArgDescriptor describes a positional argument.
message PositionalArgDescriptor {
// proto_field specifies the proto field to use as the positional arg. Any
// fields used as positional args will not have a flag generated.
string proto_field = 1;
// varargs makes a positional parameter a varargs parameter. This can only be
// applied to last positional parameter and the proto_field must a repeated
// field.
bool varargs = 2;
}