Documentation ¶
Index ¶
- Variables
- func CheckPropUnbondingPeriod(clientCtx client.Context, propUnbondingPeriod time.Duration)
- func ConsumerAdditionProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
- func ConsumerRemovalProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
- func EquivocationProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
- func SubmitConsumerAdditionPropTxCmd() *cobra.Command
- func SubmitConsumerRemovalProposalTxCmd() *cobra.Command
- func SubmitEquivocationProposalTxCmd() *cobra.Command
- type ConsumerAdditionProposalJSON
- type ConsumerAdditionProposalReq
- type ConsumerRemovalProposalJSON
- type ConsumerRemovalProposalReq
- type EquivocationProposalJSON
- type EquivocationProposalReq
Constants ¶
This section is empty.
Variables ¶
var ( ConsumerAdditionProposalHandler = govclient.NewProposalHandler(SubmitConsumerAdditionPropTxCmd, ConsumerAdditionProposalRESTHandler) ConsumerRemovalProposalHandler = govclient.NewProposalHandler(SubmitConsumerRemovalProposalTxCmd, ConsumerRemovalProposalRESTHandler) EquivocationProposalHandler = govclient.NewProposalHandler(SubmitEquivocationProposalTxCmd, EquivocationProposalRESTHandler) )
Functions ¶
func ConsumerAdditionProposalRESTHandler ¶
func ConsumerAdditionProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
ConsumerAdditionProposalRESTHandler returns a ProposalRESTHandler that exposes the consumer addition rest handler.
func ConsumerRemovalProposalRESTHandler ¶
func ConsumerRemovalProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
ConsumerRemovalProposalRESTHandler returns a ProposalRESTHandler that exposes the consumer removal rest handler.
func EquivocationProposalRESTHandler ¶
func EquivocationProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler
EquivocationProposalRESTHandler returns a ProposalRESTHandler that exposes the equivocation rest handler.
func SubmitConsumerAdditionPropTxCmd ¶
SubmitConsumerAdditionPropTxCmd returns a CLI command handler for submitting a consumer addition proposal via a transaction.
func SubmitConsumerRemovalProposalTxCmd ¶
SubmitConsumerRemovalPropTxCmd returns a CLI command handler for submitting a consumer addition proposal via a transaction.
func SubmitEquivocationProposalTxCmd ¶
SubmitEquivocationProposalTxCmd returns a CLI command handler for submitting a equivocation proposal via a transaction.
Types ¶
type ConsumerAdditionProposalJSON ¶
type ConsumerAdditionProposalJSON struct { Title string `json:"title"` Description string `json:"description"` ChainId string `json:"chain_id"` InitialHeight clienttypes.Height `json:"initial_height"` GenesisHash []byte `json:"genesis_hash"` BinaryHash []byte `json:"binary_hash"` SpawnTime time.Time `json:"spawn_time"` ConsumerRedistributionFraction string `json:"consumer_redistribution_fraction"` BlocksPerDistributionTransmission int64 `json:"blocks_per_distribution_transmission"` DistributionTransmissionChannel string `json:"distribution_transmission_channel"` HistoricalEntries int64 `json:"historical_entries"` CcvTimeoutPeriod time.Duration `json:"ccv_timeout_period"` TransferTimeoutPeriod time.Duration `json:"transfer_timeout_period"` UnbondingPeriod time.Duration `json:"unbonding_period"` Deposit string `json:"deposit"` }
func ParseConsumerAdditionProposalJSON ¶
func ParseConsumerAdditionProposalJSON(proposalFile string) (ConsumerAdditionProposalJSON, error)
type ConsumerAdditionProposalReq ¶
type ConsumerAdditionProposalReq struct { BaseReq rest.BaseReq `json:"base_req"` Proposer sdk.AccAddress `json:"proposer"` Title string `json:"title"` Description string `json:"description"` ChainId string `json:"chainId"` InitialHeight clienttypes.Height `json:"initialHeight"` GenesisHash []byte `json:"genesisHash"` BinaryHash []byte `json:"binaryHash"` SpawnTime time.Time `json:"spawnTime"` ConsumerRedistributionFraction string `json:"consumer_redistribution_fraction"` BlocksPerDistributionTransmission int64 `json:"blocks_per_distribution_transmission"` DistributionTransmissionChannel string `json:"distribution_transmission_channel"` HistoricalEntries int64 `json:"historical_entries"` CcvTimeoutPeriod time.Duration `json:"ccv_timeout_period"` TransferTimeoutPeriod time.Duration `json:"transfer_timeout_period"` UnbondingPeriod time.Duration `json:"unbonding_period"` Deposit sdk.Coins `json:"deposit"` }
type ConsumerRemovalProposalJSON ¶
type ConsumerRemovalProposalJSON struct { Title string `json:"title"` Description string `json:"description"` ChainId string `json:"chain_id"` StopTime time.Time `json:"stop_time"` Deposit string `json:"deposit"` }
func ParseConsumerRemovalProposalJSON ¶
func ParseConsumerRemovalProposalJSON(proposalFile string) (ConsumerRemovalProposalJSON, error)
type EquivocationProposalJSON ¶
type EquivocationProposalJSON struct { // evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" types.EquivocationProposal Deposit string `json:"deposit"` }
func ParseEquivocationProposalJSON ¶
func ParseEquivocationProposalJSON(proposalFile string) (EquivocationProposalJSON, error)
type EquivocationProposalReq ¶
type EquivocationProposalReq struct { BaseReq rest.BaseReq `json:"base_req"` Proposer sdk.AccAddress `json:"proposer"` // evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" types.EquivocationProposal Deposit sdk.Coins `json:"deposit"` }