cli

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 21, 2022 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

View Source
const (
	FlagAddressValidator    = "validator"
	FlagAddressValidatorSrc = "addr-validator-source"
	FlagAddressValidatorDst = "addr-validator-dest"
	FlagPubKey              = "pubkey"
	FlagAmount              = "amount"
	FlagSharesAmount        = "shares-amount"
	FlagSharesFraction      = "shares-fraction"

	FlagMoniker         = "moniker"
	FlagEditMoniker     = "new-moniker"
	FlagIdentity        = "identity"
	FlagWebsite         = "website"
	FlagSecurityContact = "security-contact"
	FlagDetails         = "details"

	FlagCommissionRate          = "commission-rate"
	FlagCommissionMaxRate       = "commission-max-rate"
	FlagCommissionMaxChangeRate = "commission-max-change-rate"

	FlagGenesisFormat = "genesis-format"
	FlagNodeID        = "node-id"
	FlagIP            = "ip"
)

Variables

default values

Functions

func BuildCreateValidatorMsg

func BuildCreateValidatorMsg(clientCtx client.Context, config TxCreateValidatorConfig, txBldr tx.Factory, generateOnly bool) (tx.Factory, sdk.Msg, error)

BuildCreateValidatorMsg makes a new MsgCreateValidator.

func CreateValidatorMsgFlagSet

func CreateValidatorMsgFlagSet(ipDefault string) (fs *flag.FlagSet, defaultsDesc string)

Return the flagset, particular flags, and a description of defaults this is anticipated to be used with the gen-tx

func FlagSetAmount

func FlagSetAmount() *flag.FlagSet

FlagSetAmount Returns the FlagSet for amount related operations.

func FlagSetCommissionCreate

func FlagSetCommissionCreate() *flag.FlagSet

FlagSetCommissionCreate Returns the FlagSet used for commission create.

func FlagSetPublicKey

func FlagSetPublicKey() *flag.FlagSet

FlagSetPublicKey Returns the flagset for Public Key related operations.

func GetCmdQueryAllTokenizeShareRecords added in v1.0.0

func GetCmdQueryAllTokenizeShareRecords() *cobra.Command

GetCmdQueryAllTokenizeShareRecords implements the query for all tokenize share records

func GetCmdQueryDelegation

func GetCmdQueryDelegation() *cobra.Command

GetCmdQueryDelegation the query delegation command.

func GetCmdQueryDelegations

func GetCmdQueryDelegations() *cobra.Command

GetCmdQueryDelegations implements the command to query all the delegations made from one delegator.

func GetCmdQueryHistoricalInfo

func GetCmdQueryHistoricalInfo() *cobra.Command

GetCmdQueryHistoricalInfo implements the historical info query command

func GetCmdQueryLastTokenizeShareRecordId added in v1.0.0

func GetCmdQueryLastTokenizeShareRecordId() *cobra.Command

GetCmdQueryLastTokenizeShareRecordId implements the query for last tokenize share record id

func GetCmdQueryParams

func GetCmdQueryParams() *cobra.Command

GetCmdQueryParams implements the params query command.

func GetCmdQueryPool

func GetCmdQueryPool() *cobra.Command

GetCmdQueryPool implements the pool query command.

func GetCmdQueryRedelegation

func GetCmdQueryRedelegation() *cobra.Command

GetCmdQueryRedelegation implements the command to query a single redelegation record.

func GetCmdQueryRedelegations

func GetCmdQueryRedelegations() *cobra.Command

GetCmdQueryRedelegations implements the command to query all the redelegation records for a delegator.

func GetCmdQueryTokenizeShareRecordByDenom added in v1.0.0

func GetCmdQueryTokenizeShareRecordByDenom() *cobra.Command

GetCmdQueryTokenizeShareRecordByDenom implements the query for individual tokenize share record information by share denom

func GetCmdQueryTokenizeShareRecordById added in v1.0.0

func GetCmdQueryTokenizeShareRecordById() *cobra.Command

GetCmdQueryTokenizeShareRecordById implements the query for individual tokenize share record information by share by id

func GetCmdQueryTokenizeShareRecordsOwned added in v1.0.0

func GetCmdQueryTokenizeShareRecordsOwned() *cobra.Command

GetCmdQueryTokenizeShareRecordsOwned implements the query tokenize share records by address

func GetCmdQueryTotalTokenizeSharedAssets added in v1.0.0

func GetCmdQueryTotalTokenizeSharedAssets() *cobra.Command

GetCmdQueryTotalTokenizeSharedAssets implements the query for total tokenized staked assets

func GetCmdQueryUnbondingDelegation

func GetCmdQueryUnbondingDelegation() *cobra.Command

GetCmdQueryUnbondingDelegation implements the command to query a single unbonding-delegation record.

func GetCmdQueryUnbondingDelegations

func GetCmdQueryUnbondingDelegations() *cobra.Command

GetCmdQueryUnbondingDelegations implements the command to query all the unbonding-delegation records for a delegator.

func GetCmdQueryValidator

func GetCmdQueryValidator() *cobra.Command

GetCmdQueryValidator implements the validator query command.

func GetCmdQueryValidatorDelegations

func GetCmdQueryValidatorDelegations() *cobra.Command

GetCmdQueryValidatorDelegations implements the command to query all the delegations to a specific validator.

func GetCmdQueryValidatorRedelegations

func GetCmdQueryValidatorRedelegations() *cobra.Command

GetCmdQueryValidatorRedelegations implements the query all redelegatations from a validator command.

func GetCmdQueryValidatorUnbondingDelegations

func GetCmdQueryValidatorUnbondingDelegations() *cobra.Command

GetCmdQueryValidatorUnbondingDelegations implements the query all unbonding delegatations from a validator command.

func GetCmdQueryValidators

func GetCmdQueryValidators() *cobra.Command

GetCmdQueryValidators implements the query all validators command.

func GetQueryCmd

func GetQueryCmd() *cobra.Command

GetQueryCmd returns the cli query commands for this module

func NewCreateValidatorCmd

func NewCreateValidatorCmd() *cobra.Command

func NewDelegateCmd

func NewDelegateCmd() *cobra.Command

func NewEditValidatorCmd

func NewEditValidatorCmd() *cobra.Command

func NewExemptDelegationCmd added in v1.0.0

func NewExemptDelegationCmd() *cobra.Command

NewExemptDelegationCmd defines a command to make delegation to a validator as exempt delegation

func NewRedeemTokensCmd

func NewRedeemTokensCmd() *cobra.Command

NewRedeemTokensCmd defines a command for redeeming tokens from a validator for shares.

func NewRedelegateCmd

func NewRedelegateCmd() *cobra.Command

func NewTokenizeSharesCmd

func NewTokenizeSharesCmd() *cobra.Command

NewTokenizeSharesCmd defines a command for tokenizing shares from a validator.

func NewTransferTokenizeShareRecordCmd

func NewTransferTokenizeShareRecordCmd() *cobra.Command

NewTransferTokenizeShareRecordCmd defines a command to transfer ownership of TokenizeShareRecord

func NewTxCmd

func NewTxCmd() *cobra.Command

NewTxCmd returns a root CLI command handler for all x/staking transaction commands.

func NewUnbondCmd

func NewUnbondCmd() *cobra.Command

Types

type TxCreateValidatorConfig

type TxCreateValidatorConfig struct {
	ChainID string
	NodeID  string
	Moniker string

	Amount string

	CommissionRate          string
	CommissionMaxRate       string
	CommissionMaxChangeRate string

	PubKey cryptotypes.PubKey

	IP              string
	Website         string
	SecurityContact string
	Details         string
	Identity        string
}

func PrepareConfigForTxCreateValidator

func PrepareConfigForTxCreateValidator(flagSet *flag.FlagSet, moniker, nodeID, chainID string, valPubKey cryptotypes.PubKey) (TxCreateValidatorConfig, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL