123 lines
3.3 KiB
Go
123 lines
3.3 KiB
Go
//go:build !app_v1
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
|
|
"cosmossdk.io/client/v2/autocli"
|
|
"cosmossdk.io/depinject"
|
|
"cosmossdk.io/log"
|
|
"cosmossdk.io/simapp"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/config"
|
|
nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/tx"
|
|
authtxconfig "github.com/cosmos/cosmos-sdk/x/auth/tx/config"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
// NewRootCmd creates a new root command for simd. It is called once in the main function.
|
|
func NewRootCmd() *cobra.Command {
|
|
var (
|
|
autoCliOpts autocli.AppOptions
|
|
moduleBasicManager module.BasicManager
|
|
clientCtx client.Context
|
|
)
|
|
|
|
if err := depinject.Inject(
|
|
depinject.Configs(simapp.AppConfig,
|
|
depinject.Supply(
|
|
log.NewNopLogger(),
|
|
),
|
|
depinject.Provide(
|
|
ProvideClientContext,
|
|
),
|
|
),
|
|
&autoCliOpts,
|
|
&moduleBasicManager,
|
|
&clientCtx,
|
|
); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
rootCmd := &cobra.Command{
|
|
Use: "simd",
|
|
Short: "simulation app",
|
|
SilenceErrors: true,
|
|
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
|
|
// set the default command outputs
|
|
cmd.SetOut(cmd.OutOrStdout())
|
|
cmd.SetErr(cmd.ErrOrStderr())
|
|
|
|
clientCtx = clientCtx.WithCmdContext(cmd.Context()).WithViper("")
|
|
clientCtx, err := client.ReadPersistentCommandFlags(clientCtx, cmd.Flags())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
clientCtx, err = config.ReadFromClientConfig(clientCtx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := client.SetCmdClientContextHandler(clientCtx, cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
customAppTemplate, customAppConfig := initAppConfig()
|
|
customCMTConfig := initCometBFTConfig()
|
|
|
|
return server.InterceptConfigsPreRunHandler(cmd, customAppTemplate, customAppConfig, customCMTConfig)
|
|
},
|
|
}
|
|
|
|
initRootCmd(rootCmd, clientCtx.TxConfig, moduleBasicManager)
|
|
|
|
nodeCmds := nodeservice.NewNodeCommands()
|
|
autoCliOpts.ModuleOptions = make(map[string]*autocliv1.ModuleOptions)
|
|
autoCliOpts.ModuleOptions[nodeCmds.Name()] = nodeCmds.AutoCLIOptions()
|
|
|
|
if err := autoCliOpts.EnhanceRootCommand(rootCmd); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return rootCmd
|
|
}
|
|
|
|
func ProvideClientContext(
|
|
appCodec codec.Codec,
|
|
interfaceRegistry codectypes.InterfaceRegistry,
|
|
txConfigOpts tx.ConfigOptions,
|
|
legacyAmino *codec.LegacyAmino,
|
|
) client.Context {
|
|
clientCtx := client.Context{}.
|
|
WithCodec(appCodec).
|
|
WithInterfaceRegistry(interfaceRegistry).
|
|
WithLegacyAmino(legacyAmino).
|
|
WithInput(os.Stdin).
|
|
WithAccountRetriever(types.AccountRetriever{}).
|
|
WithHomeDir(simapp.DefaultNodeHome).
|
|
WithViper("") // uses by default the binary name as prefix
|
|
|
|
clientCtx, _ = config.ReadFromClientConfig(clientCtx)
|
|
|
|
// textual is enabled by default, we need to re-create the tx config grpc instead of bank keeper.
|
|
txConfigOpts.TextualCoinMetadataQueryFn = authtxconfig.NewGRPCCoinMetadataQueryFn(clientCtx)
|
|
txConfig, err := tx.NewTxConfigWithOptions(clientCtx.Codec, txConfigOpts)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
clientCtx = clientCtx.WithTxConfig(txConfig)
|
|
|
|
return clientCtx
|
|
}
|