Documentation ¶
Overview ¶
Copyright © 2021 NAME HERE <EMAIL ADDRESS>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright © 2021 NAME HERE <EMAIL ADDRESS>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- Variables
- func AddTxFlagsToCmd(cmd *cobra.Command)
- func Execute()
- func NewConfigService(c configPart) configService
- func NewRootCmd(log *zap.Logger, atom zap.AtomicLevel, o map[string]ClientOverrides) *cobra.Command
- func ReadHeight(flagSet *pflag.FlagSet) (int64, error)
- func ReadPageRequest(flagSet *pflag.FlagSet) (*tmquery.PageRequest, error)
- func SetAdditionalCommands(cmds ...*cobra.Command)
- type ChainNotFoundError
- type ClientOverrides
- type CosmosClientConfig
- func (c *CosmosClientConfig) CreateNewConfig(home string)
- func (c *CosmosClientConfig) GetChainConfigs() map[string]*client.ChainClientConfig
- func (c *CosmosClientConfig) GetDefaultChain() string
- func (c *CosmosClientConfig) SetChainConfig(name string, config *client.ChainClientConfig)
- func (c *CosmosClientConfig) SetDefaultChain(chain string)
- func (c *CosmosClientConfig) ValidateConfig() error
- type GRPCMethodNotFoundError
- type GRPCServiceNotFoundError
- type KeyEnumeration
Constants ¶
This section is empty.
Variables ¶
var (
FlagFrom = "from"
)
var ModuleBasics = []module.AppModuleBasic{ auth.AppModuleBasic{}, authz.AppModuleBasic{}, bank.AppModuleBasic{}, distribution.AppModuleBasic{}, feegrant.AppModuleBasic{}, params.AppModuleBasic{}, slashing.AppModuleBasic{}, staking.AppModuleBasic{}, upgrade.AppModuleBasic{}, transfer.AppModuleBasic{}, ibc.AppModuleBasic{}, wasm.AppModuleBasic{}, capability.AppModuleBasic{}, cosmosmodule.AppModuleBasic{}, vesting.AppModuleBasic{}, }
Functions ¶
func AddTxFlagsToCmd ¶
AddTxFlagsToCmd defines common flags to be reused across cmds
func Execute ¶
func Execute()
Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.
func NewConfigService ¶
func NewConfigService(c configPart) configService
func NewRootCmd ¶
func NewRootCmd(log *zap.Logger, atom zap.AtomicLevel, o map[string]ClientOverrides) *cobra.Command
NewRootCmd returns the root command.
o is used to override rpc clients and light providers for test. If o is nil, reasonable default values are used.
func ReadHeight ¶
ReadHeight reads the height flag.
func ReadPageRequest ¶
func ReadPageRequest(flagSet *pflag.FlagSet) (*tmquery.PageRequest, error)
ReadPageRequest reads and builds the necessary page request flags for pagination.
func SetAdditionalCommands ¶
Types ¶
type ChainNotFoundError ¶
type ChainNotFoundError struct { Requested string Config configService }
ChainNotFoundError is used when a requested chain does not exist. Its error message includes the list of known chains.
func (ChainNotFoundError) Error ¶
func (e ChainNotFoundError) Error() string
type ClientOverrides ¶
ClientOverrides specifies an RPCClient and LightProvider to use for a specific chain.
This should only be set during tests.
type CosmosClientConfig ¶
type CosmosClientConfig struct { DefaultChain string `yaml:"default_chain" json:"default_chain"` Chains map[string]*client.ChainClientConfig `yaml:"chains" json:"chains"` Debug bool }
DefaultConfig represents the config file for Cosmos chains
func (*CosmosClientConfig) CreateNewConfig ¶
func (c *CosmosClientConfig) CreateNewConfig(home string)
func (*CosmosClientConfig) GetChainConfigs ¶
func (c *CosmosClientConfig) GetChainConfigs() map[string]*client.ChainClientConfig
func (*CosmosClientConfig) GetDefaultChain ¶
func (c *CosmosClientConfig) GetDefaultChain() string
func (*CosmosClientConfig) SetChainConfig ¶
func (c *CosmosClientConfig) SetChainConfig(name string, config *client.ChainClientConfig)
func (*CosmosClientConfig) SetDefaultChain ¶
func (c *CosmosClientConfig) SetDefaultChain(chain string)
func (*CosmosClientConfig) ValidateConfig ¶
func (c *CosmosClientConfig) ValidateConfig() error
type GRPCMethodNotFoundError ¶
type GRPCMethodNotFoundError struct { TargetService string Requested string Available []*desc.MethodDescriptor }
GRPCMethodNotFoundError is used when a requested gRPC method does not exist. Its error message includes the provided available services.
func (GRPCMethodNotFoundError) Error ¶
func (e GRPCMethodNotFoundError) Error() string
type GRPCServiceNotFoundError ¶
GRPCServiceNotFoundError is used when a requested gRPC service does not exist. Its error message includes the provided available services.
func (GRPCServiceNotFoundError) Error ¶
func (e GRPCServiceNotFoundError) Error() string