client

package
v1.2.1 Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2023 License: Apache-2.0 Imports: 16 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

Functions

func ConsumerAdditionProposalRESTHandler added in v0.2.0

func ConsumerAdditionProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler

ConsumerAdditionProposalRESTHandler returns a ProposalRESTHandler that exposes the consumer addition rest handler.

func ConsumerRemovalProposalRESTHandler added in v0.2.0

func ConsumerRemovalProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler

ConsumerRemovalProposalRESTHandler returns a ProposalRESTHandler that exposes the consumer removal rest handler.

func EquivocationProposalRESTHandler added in v1.0.0

func EquivocationProposalRESTHandler(clientCtx client.Context) govrest.ProposalRESTHandler

EquivocationProposalRESTHandler returns a ProposalRESTHandler that exposes the equivocation rest handler.

func SubmitConsumerAdditionPropTxCmd added in v0.2.0

func SubmitConsumerAdditionPropTxCmd() *cobra.Command

SubmitConsumerAdditionPropTxCmd returns a CLI command handler for submitting a consumer addition proposal via a transaction.

func SubmitConsumerRemovalProposalTxCmd added in v0.2.0

func SubmitConsumerRemovalProposalTxCmd() *cobra.Command

SubmitConsumerRemovalPropTxCmd returns a CLI command handler for submitting a consumer addition proposal via a transaction.

func SubmitEquivocationProposalTxCmd added in v1.0.0

func SubmitEquivocationProposalTxCmd() *cobra.Command

SubmitEquivocationProposalTxCmd returns a CLI command handler for submitting a equivocation proposal via a transaction.

Types

type ConsumerAdditionProposalJSON added in v0.2.0

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"`
	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 added in v0.2.0

func ParseConsumerAdditionProposalJSON(proposalFile string) (ConsumerAdditionProposalJSON, error)

type ConsumerAdditionProposalReq added in v0.2.0

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"`
	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 added in v0.2.0

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 added in v0.2.0

func ParseConsumerRemovalProposalJSON(proposalFile string) (ConsumerRemovalProposalJSON, error)

type ConsumerRemovalProposalReq added in v0.2.0

type ConsumerRemovalProposalReq struct {
	BaseReq  rest.BaseReq   `json:"base_req"`
	Proposer sdk.AccAddress `json:"proposer"`

	Title       string `json:"title"`
	Description string `json:"description"`
	ChainId     string `json:"chainId"`

	StopTime time.Time `json:"stopTime"`
	Deposit  sdk.Coins `json:"deposit"`
}

type EquivocationProposalJSON added in v1.0.0

type EquivocationProposalJSON struct {
	// evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types"
	types.EquivocationProposal

	Deposit string `json:"deposit"`
}

func ParseEquivocationProposalJSON added in v1.0.0

func ParseEquivocationProposalJSON(proposalFile string) (EquivocationProposalJSON, error)

type EquivocationProposalReq added in v1.0.0

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"`
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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