msgs

package
v0.0.0-...-0666018 Latest Latest
Warning

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

Go to latest
Published: Jan 12, 2023 License: Apache-2.0 Imports: 15 Imported by: 1

Documentation

Index

Constants

View Source
const (
	MsgTypeSend      = "send"
	MsgTypeMultiSend = "multisend"

	MsgTypeGrantAllowance  = "grant_allowance"
	MsgTypeRevokeAllowance = "revoke_allowance"

	MsgTypeStakeCreateValidator      = "create_validator"
	MsgTypeStakeEditValidator        = "edit_validator"
	MsgTypeStakeDelegate             = "delegate"
	MsgTypeStakeBeginUnbonding       = "begin_unbonding"
	MsgTypeBeginRedelegate           = "begin_redelegate"
	MsgTypeUnjail                    = "unjail"
	MsgTypeCancelUnbondingDelegation = "cancel_unbonding_delegation"

	MsgTypeSetWithdrawAddress             = "set_withdraw_address"
	MsgTypeWithdrawDelegatorReward        = "withdraw_delegator_reward"
	MsgTypeMsgFundCommunityPool           = "fund_community_pool"
	MsgTypeMsgWithdrawValidatorCommission = "withdraw_validator_commission"
	MsgTypeSubmitProposal                 = "submit_proposal"
	MsgTypeDeposit                        = "deposit"
	MsgTypeVote                           = "vote"
	MsgTypeVoteWeighted                   = "vote_weighted"
	MsgTypeExecLegacyContent              = "exec_legacy_content"

	MsgTypeSubmitEvidence  = "submit_evidence"
	MsgTypeVerifyInvariant = "verify_invariant"

	MsgTypeRecvPacket  = "recv_packet"
	MsgTypeIBCTransfer = "transfer"

	//ibc client
	MsgTypeCreateClient             = "create_client"
	MsgTypeUpdateClient             = "update_client"
	MsgTypeUpgradeClient            = "upgrade_client"
	MsgTypeSubmitMisbehaviourClient = "submit_misbehaviour"

	//ibc connect
	MsgTypeConnectionOpenInit    = "connection_open_init"
	MsgTypeConnectionOpenTry     = "connection_open_try"
	MsgTypeConnectionOpenAck     = "connection_open_ack"
	MsgTypeConnectionOpenConfirm = "connection_open_confirm"

	//ibc channel
	MsgTypeChannelOpenInit     = "channel_open_init"
	MsgTypeChannelOpenTry      = "channel_open_try"
	MsgTypeChannelOpenAck      = "channel_open_ack"
	MsgTypeChannelOpenConfirm  = "channel_open_confirm"
	MsgTypeChannelCloseInit    = "channel_close_init"
	MsgTypeChannelCloseConfirm = "channel_close_confirm"
	MsgTypeTimeout             = "timeout_packet"
	MsgTypeTimeoutOnClose      = "timeout_on_close_packet"
	MsgTypeAcknowledgement     = "acknowledge_packet"

	MsgTypeAuthzRevoke = "revoke"
	MsgTypeAuthzExec   = "exec"
	MsgTypeAuthzGrant  = "grant"

	MsgTypeCreateGroup                     = "create_group"
	MsgTypeUpdateGroupMembers              = "update_group_members"
	MsgTypeUpdateGroupAdmin                = "update_group_admin"
	MsgTypeUpdateGroupMetadata             = "update_group_metadata"
	MsgTypeCreateGroupPolicy               = "create_group_policy"
	MsgTypeCreateGroupWithPolicy           = "create_group_with_policy"
	MsgTypeUpdateGroupPolicyAdmin          = "update_group_policy_admin"
	MsgTypeUpdateGroupPolicyDecisionPolicy = "update_group_policy_decision_policy"
	MsgTypeUpdateGroupPolicyMetadata       = "update_group_policy_metadata"
	MsgTypeGroupSubmitProposal             = "submit_proposal"
	MsgTypeWithdrawProposal                = "withdraw_proposal"
	MsgTypeGroupVote                       = "vote"
	MsgTypeGroupExec                       = "exec"
	MsgTypeLeaveGroup                      = "group"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Acknowledgement

type Acknowledgement = ibc.Acknowledgement

type Delegation

type Delegation = stake.Delegation

type FungibleTokenPacketData

type FungibleTokenPacketData = ibctransfer.FungibleTokenPacketData

type GenericAuthorization

type GenericAuthorization = authz.GenericAuthorization

type GovContent

type GovContent = govv1beta1.Content

type MsgAcknowledgement

type MsgAcknowledgement = ibcchannel.MsgAcknowledgement

type MsgBeginRedelegate

type MsgBeginRedelegate = stake.MsgBeginRedelegate

type MsgCancelUnbondingDelegation

type MsgCancelUnbondingDelegation = stake.MsgCancelUnbondingDelegation

type MsgChannelCloseConfirm

type MsgChannelCloseConfirm = ibcchannel.MsgChannelCloseConfirm

type MsgChannelCloseInit

type MsgChannelCloseInit = ibcchannel.MsgChannelCloseInit

type MsgChannelOpenAck

type MsgChannelOpenAck = ibcchannel.MsgChannelOpenAck

type MsgChannelOpenConfirm

type MsgChannelOpenConfirm = ibcchannel.MsgChannelOpenConfirm

type MsgChannelOpenInit

type MsgChannelOpenInit = ibcchannel.MsgChannelOpenInit

type MsgChannelOpenTry

type MsgChannelOpenTry = ibcchannel.MsgChannelOpenTry

type MsgConnectionOpenAck

type MsgConnectionOpenAck = ibcconnect.MsgConnectionOpenAck

type MsgConnectionOpenConfirm

type MsgConnectionOpenConfirm = ibcconnect.MsgConnectionOpenConfirm

type MsgConnectionOpenInit

type MsgConnectionOpenInit = ibcconnect.MsgConnectionOpenInit

type MsgConnectionOpenTry

type MsgConnectionOpenTry = ibcconnect.MsgConnectionOpenTry

type MsgCreateClient

type MsgCreateClient = ibcclient.MsgCreateClient

type MsgCreateGroup

type MsgCreateGroup = group.MsgCreateGroup

type MsgCreateGroupPolicy

type MsgCreateGroupPolicy = group.MsgCreateGroupPolicy

type MsgCreateGroupWithPolicy

type MsgCreateGroupWithPolicy = group.MsgCreateGroupWithPolicy

type MsgDeposit

type MsgDeposit = govv1beta1.MsgDeposit

gov v1bata1

type MsgDepositV1

type MsgDepositV1 = govv1.MsgDeposit

type MsgExec

type MsgExec = authz.MsgExec

type MsgExecLegacyContent

type MsgExecLegacyContent = govv1.MsgExecLegacyContent

type MsgFundCommunityPool

type MsgFundCommunityPool = distribution.MsgFundCommunityPool

type MsgGrant

type MsgGrant = authz.MsgGrant

type MsgGrantAllowance

type MsgGrantAllowance = feegrant.MsgGrantAllowance

type MsgGroupExec

type MsgGroupExec = group.MsgExec

type MsgGroupSubmitProposal

type MsgGroupSubmitProposal = group.MsgSubmitProposal

type MsgGroupVote

type MsgGroupVote = group.MsgVote

type MsgLeaveGroup

type MsgLeaveGroup = group.MsgLeaveGroup

type MsgMultiSend

type MsgMultiSend = bank.MsgMultiSend

type MsgRecvPacket

type MsgRecvPacket = ibc.MsgRecvPacket

type MsgRevoke

type MsgRevoke = authz.MsgRevoke

type MsgRevokeAllowance

type MsgRevokeAllowance = feegrant.MsgRevokeAllowance

type MsgSend

type MsgSend = bank.MsgSend

type MsgStakeBeginUnbonding

type MsgStakeBeginUnbonding = stake.MsgUndelegate

type MsgStakeCreate

type MsgStakeCreate = stake.MsgCreateValidator

type MsgStakeDelegate

type MsgStakeDelegate = stake.MsgDelegate

type MsgStakeEdit

type MsgStakeEdit = stake.MsgEditValidator

type MsgStakeSetWithdrawAddress

type MsgStakeSetWithdrawAddress = distribution.MsgSetWithdrawAddress

type MsgSubmitEvidence

type MsgSubmitEvidence = evidence.MsgSubmitEvidence

type MsgSubmitMisbehaviour

type MsgSubmitMisbehaviour = ibcclient.MsgSubmitMisbehaviour

type MsgSubmitProposal

type MsgSubmitProposal = govv1beta1.MsgSubmitProposal

type MsgSubmitProposalV1

type MsgSubmitProposalV1 = govv1.MsgSubmitProposal

gov v1

type MsgTimeout

type MsgTimeout = ibcchannel.MsgTimeout

type MsgTimeoutOnClose

type MsgTimeoutOnClose = ibcchannel.MsgTimeoutOnClose

type MsgTransfer

type MsgTransfer = ibctransfer.MsgTransfer

type MsgUnjail

type MsgUnjail = slashing.MsgUnjail

type MsgUpdateClient

type MsgUpdateClient = ibcclient.MsgUpdateClient

type MsgUpdateGroupAdmin

type MsgUpdateGroupAdmin = group.MsgUpdateGroupAdmin

type MsgUpdateGroupMembers

type MsgUpdateGroupMembers = group.MsgUpdateGroupMembers

type MsgUpdateGroupMetadata

type MsgUpdateGroupMetadata = group.MsgUpdateGroupMetadata

type MsgUpdateGroupPolicyAdmin

type MsgUpdateGroupPolicyAdmin = group.MsgUpdateGroupPolicyAdmin

type MsgUpdateGroupPolicyDecisionPolicy

type MsgUpdateGroupPolicyDecisionPolicy = group.MsgUpdateGroupPolicyDecisionPolicy

type MsgUpdateGroupPolicyMetadata

type MsgUpdateGroupPolicyMetadata = group.MsgUpdateGroupPolicyMetadata

type MsgUpgradeClient

type MsgUpgradeClient = ibcclient.MsgUpgradeClient

type MsgVerifyInvariant

type MsgVerifyInvariant = crisis.MsgVerifyInvariant

type MsgVote

type MsgVote = govv1beta1.MsgVote

type MsgVoteV1

type MsgVoteV1 = govv1.MsgVote

type MsgVoteWeighted

type MsgVoteWeighted = govv1beta1.MsgVoteWeighted

type MsgVoteWeightedV1

type MsgVoteWeightedV1 = govv1.MsgVoteWeighted

type MsgWithdrawDelegatorReward

type MsgWithdrawDelegatorReward = distribution.MsgWithdrawDelegatorReward

type MsgWithdrawProposal

type MsgWithdrawProposal = group.MsgWithdrawProposal

type Proposal

type Proposal = govv1beta1.Proposal

type SdkVote

type SdkVote = govv1beta1.Vote

type StakeValidator

type StakeValidator = stake.Validator

type TextProposal

type TextProposal = govv1beta1.TextProposal

type UnbondingDelegation

type UnbondingDelegation = stake.UnbondingDelegation

Directories

Path Synopsis
gov
v1

Jump to

Keyboard shortcuts

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