mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
88 lines
2.3 KiB
Go
88 lines
2.3 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cometbft/cometbft/libs/bytes"
|
|
"github.com/cometbft/cometbft/p2p"
|
|
coretypes "github.com/cometbft/cometbft/rpc/core/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
|
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
|
)
|
|
|
|
// ValidatorInfo is info about the node's validator, same as Tendermint,
|
|
// except that we use our own PubKey.
|
|
type validatorInfo struct {
|
|
Address bytes.HexBytes `json:"address"`
|
|
PubKey cryptotypes.PubKey `json:"pub_key"`
|
|
VotingPower int64 `json:"voting_power"`
|
|
}
|
|
|
|
// ResultStatus is node's info, same as Tendermint, except that we use our own
|
|
// PubKey.
|
|
type resultStatus struct {
|
|
NodeInfo p2p.DefaultNodeInfo `json:"node_info"`
|
|
SyncInfo coretypes.SyncInfo `json:"sync_info"`
|
|
ValidatorInfo validatorInfo `json:"validator_info"`
|
|
}
|
|
|
|
// StatusCommand returns the command to return the status of the network.
|
|
func StatusCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "status",
|
|
Short: "Query remote node for status",
|
|
RunE: func(cmd *cobra.Command, _ []string) error {
|
|
clientCtx, err := client.GetClientQueryContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
status, err := getNodeStatus(clientCtx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// `status` has TM pubkeys, we need to convert them to our pubkeys.
|
|
pk, err := cryptocodec.FromTmPubKeyInterface(status.ValidatorInfo.PubKey)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
statusWithPk := resultStatus{
|
|
NodeInfo: status.NodeInfo,
|
|
SyncInfo: status.SyncInfo,
|
|
ValidatorInfo: validatorInfo{
|
|
Address: status.ValidatorInfo.Address,
|
|
PubKey: pk,
|
|
VotingPower: status.ValidatorInfo.VotingPower,
|
|
},
|
|
}
|
|
|
|
output, err := clientCtx.LegacyAmino.MarshalJSON(statusWithPk)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmd.Println(string(output))
|
|
return nil
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringP(flags.FlagNode, "n", "tcp://localhost:26657", "Node to connect to")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func getNodeStatus(clientCtx client.Context) (*coretypes.ResultStatus, error) {
|
|
node, err := clientCtx.GetNode()
|
|
if err != nil {
|
|
return &coretypes.ResultStatus{}, err
|
|
}
|
|
|
|
return node.Status(context.Background())
|
|
}
|