transactionv1alpha1

package
v2.5.2 Latest Latest
Warning

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

Go to latest
Published: Feb 28, 2024 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthTransaction        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTransaction          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTransaction = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type Action

type Action struct {
	// Types that are valid to be assigned to Action:
	//	*Action_Spend
	//	*Action_Output
	//	*Action_Swap
	//	*Action_SwapClaim
	//	*Action_ValidatorDefinition
	//	*Action_IbcRelayAction
	//	*Action_ProposalSubmit
	//	*Action_ProposalWithdraw
	//	*Action_ValidatorVote
	//	*Action_DelegatorVote
	//	*Action_ProposalDepositClaim
	//	*Action_PositionOpen
	//	*Action_PositionClose
	//	*Action_PositionWithdraw
	//	*Action_PositionRewardClaim
	//	*Action_Delegate
	//	*Action_Undelegate
	//	*Action_UndelegateClaim
	//	*Action_CommunityPoolSpend
	//	*Action_CommunityPoolOutput
	//	*Action_CommunityPoolDeposit
	//	*Action_Ics20Withdrawal
	Action isAction_Action `protobuf_oneof:"action"`
}

A state change performed by a transaction.

func (*Action) Descriptor

func (*Action) Descriptor() ([]byte, []int)

func (*Action) GetAction

func (m *Action) GetAction() isAction_Action

func (*Action) GetCommunityPoolDeposit added in v2.5.0

func (m *Action) GetCommunityPoolDeposit() *v1alpha18.CommunityPoolDeposit

func (*Action) GetCommunityPoolOutput added in v2.5.0

func (m *Action) GetCommunityPoolOutput() *v1alpha18.CommunityPoolOutput

func (*Action) GetCommunityPoolSpend added in v2.5.0

func (m *Action) GetCommunityPoolSpend() *v1alpha18.CommunityPoolSpend

func (*Action) GetDelegate

func (m *Action) GetDelegate() *v1alpha16.Delegate

func (*Action) GetDelegatorVote

func (m *Action) GetDelegatorVote() *v1alpha18.DelegatorVote

func (*Action) GetIbcRelayAction added in v2.5.0

func (m *Action) GetIbcRelayAction() *v1alpha17.IbcRelay

func (*Action) GetIcs20Withdrawal

func (m *Action) GetIcs20Withdrawal() *v1alpha17.Ics20Withdrawal

func (*Action) GetOutput

func (m *Action) GetOutput() *v1alpha14.Output

func (*Action) GetPositionClose

func (m *Action) GetPositionClose() *v1alpha15.PositionClose

func (*Action) GetPositionOpen

func (m *Action) GetPositionOpen() *v1alpha15.PositionOpen

func (*Action) GetPositionRewardClaim

func (m *Action) GetPositionRewardClaim() *v1alpha15.PositionRewardClaim

func (*Action) GetPositionWithdraw

func (m *Action) GetPositionWithdraw() *v1alpha15.PositionWithdraw

func (*Action) GetProposalDepositClaim

func (m *Action) GetProposalDepositClaim() *v1alpha18.ProposalDepositClaim

func (*Action) GetProposalSubmit

func (m *Action) GetProposalSubmit() *v1alpha18.ProposalSubmit

func (*Action) GetProposalWithdraw

func (m *Action) GetProposalWithdraw() *v1alpha18.ProposalWithdraw

func (*Action) GetSpend

func (m *Action) GetSpend() *v1alpha14.Spend

func (*Action) GetSwap

func (m *Action) GetSwap() *v1alpha15.Swap

func (*Action) GetSwapClaim

func (m *Action) GetSwapClaim() *v1alpha15.SwapClaim

func (*Action) GetUndelegate

func (m *Action) GetUndelegate() *v1alpha16.Undelegate

func (*Action) GetUndelegateClaim

func (m *Action) GetUndelegateClaim() *v1alpha16.UndelegateClaim

func (*Action) GetValidatorDefinition

func (m *Action) GetValidatorDefinition() *v1alpha16.ValidatorDefinition

func (*Action) GetValidatorVote

func (m *Action) GetValidatorVote() *v1alpha18.ValidatorVote

func (*Action) Marshal

func (m *Action) Marshal() (dAtA []byte, err error)

func (*Action) MarshalTo

func (m *Action) MarshalTo(dAtA []byte) (int, error)

func (*Action) MarshalToSizedBuffer

func (m *Action) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action) ProtoMessage

func (*Action) ProtoMessage()

func (*Action) Reset

func (m *Action) Reset()

func (*Action) Size

func (m *Action) Size() (n int)

func (*Action) String

func (m *Action) String() string

func (*Action) Unmarshal

func (m *Action) Unmarshal(dAtA []byte) error

func (*Action) XXX_DiscardUnknown

func (m *Action) XXX_DiscardUnknown()

func (*Action) XXX_Marshal

func (m *Action) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Action) XXX_Merge

func (m *Action) XXX_Merge(src proto.Message)

func (*Action) XXX_OneofWrappers

func (*Action) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Action) XXX_Size

func (m *Action) XXX_Size() int

func (*Action) XXX_Unmarshal

func (m *Action) XXX_Unmarshal(b []byte) error

type ActionPlan

type ActionPlan struct {
	// Types that are valid to be assigned to Action:
	//
	//	*ActionPlan_Spend
	//	*ActionPlan_Output
	//	*ActionPlan_Swap
	//	*ActionPlan_SwapClaim
	//	*ActionPlan_ValidatorDefinition
	//	*ActionPlan_IbcRelayAction
	//	*ActionPlan_ProposalSubmit
	//	*ActionPlan_ProposalWithdraw
	//	*ActionPlan_ValidatorVote
	//	*ActionPlan_DelegatorVote
	//	*ActionPlan_ProposalDepositClaim
	//	*ActionPlan_Withdrawal
	//	*ActionPlan_PositionOpen
	//	*ActionPlan_PositionClose
	//	*ActionPlan_PositionWithdraw
	//	*ActionPlan_PositionRewardClaim
	//	*ActionPlan_Delegate
	//	*ActionPlan_Undelegate
	//	*ActionPlan_UndelegateClaim
	//	*ActionPlan_CommunityPoolSpend
	//	*ActionPlan_CommunityPoolOutput
	//	*ActionPlan_CommunityPoolDeposit
	Action isActionPlan_Action `protobuf_oneof:"action"`
}

Describes a planned transaction action.

Some transaction Actions don't have any private data and are treated as being plans themselves.

func (*ActionPlan) Descriptor

func (*ActionPlan) Descriptor() ([]byte, []int)

func (*ActionPlan) GetAction

func (m *ActionPlan) GetAction() isActionPlan_Action

func (*ActionPlan) GetCommunityPoolDeposit added in v2.5.0

func (m *ActionPlan) GetCommunityPoolDeposit() *v1alpha18.CommunityPoolDeposit

func (*ActionPlan) GetCommunityPoolOutput added in v2.5.0

func (m *ActionPlan) GetCommunityPoolOutput() *v1alpha18.CommunityPoolOutput

func (*ActionPlan) GetCommunityPoolSpend added in v2.5.0

func (m *ActionPlan) GetCommunityPoolSpend() *v1alpha18.CommunityPoolSpend

func (*ActionPlan) GetDelegate

func (m *ActionPlan) GetDelegate() *v1alpha16.Delegate

func (*ActionPlan) GetDelegatorVote

func (m *ActionPlan) GetDelegatorVote() *v1alpha18.DelegatorVotePlan

func (*ActionPlan) GetIbcRelayAction added in v2.5.0

func (m *ActionPlan) GetIbcRelayAction() *v1alpha17.IbcRelay

func (*ActionPlan) GetOutput

func (m *ActionPlan) GetOutput() *v1alpha14.OutputPlan

func (*ActionPlan) GetPositionClose

func (m *ActionPlan) GetPositionClose() *v1alpha15.PositionClose

func (*ActionPlan) GetPositionOpen

func (m *ActionPlan) GetPositionOpen() *v1alpha15.PositionOpen

func (*ActionPlan) GetPositionRewardClaim

func (m *ActionPlan) GetPositionRewardClaim() *v1alpha15.PositionRewardClaimPlan

func (*ActionPlan) GetPositionWithdraw

func (m *ActionPlan) GetPositionWithdraw() *v1alpha15.PositionWithdrawPlan

func (*ActionPlan) GetProposalDepositClaim

func (m *ActionPlan) GetProposalDepositClaim() *v1alpha18.ProposalDepositClaim

func (*ActionPlan) GetProposalSubmit

func (m *ActionPlan) GetProposalSubmit() *v1alpha18.ProposalSubmit

func (*ActionPlan) GetProposalWithdraw

func (m *ActionPlan) GetProposalWithdraw() *v1alpha18.ProposalWithdraw

func (*ActionPlan) GetSpend

func (m *ActionPlan) GetSpend() *v1alpha14.SpendPlan

func (*ActionPlan) GetSwap

func (m *ActionPlan) GetSwap() *v1alpha15.SwapPlan

func (*ActionPlan) GetSwapClaim

func (m *ActionPlan) GetSwapClaim() *v1alpha15.SwapClaimPlan

func (*ActionPlan) GetUndelegate

func (m *ActionPlan) GetUndelegate() *v1alpha16.Undelegate

func (*ActionPlan) GetUndelegateClaim

func (m *ActionPlan) GetUndelegateClaim() *v1alpha16.UndelegateClaimPlan

func (*ActionPlan) GetValidatorDefinition

func (m *ActionPlan) GetValidatorDefinition() *v1alpha16.ValidatorDefinition

func (*ActionPlan) GetValidatorVote

func (m *ActionPlan) GetValidatorVote() *v1alpha18.ValidatorVote

func (*ActionPlan) GetWithdrawal

func (m *ActionPlan) GetWithdrawal() *v1alpha17.Ics20Withdrawal

func (*ActionPlan) Marshal

func (m *ActionPlan) Marshal() (dAtA []byte, err error)

func (*ActionPlan) MarshalTo

func (m *ActionPlan) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan) MarshalToSizedBuffer

func (m *ActionPlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan) ProtoMessage

func (*ActionPlan) ProtoMessage()

func (*ActionPlan) Reset

func (m *ActionPlan) Reset()

func (*ActionPlan) Size

func (m *ActionPlan) Size() (n int)

func (*ActionPlan) String

func (m *ActionPlan) String() string

func (*ActionPlan) Unmarshal

func (m *ActionPlan) Unmarshal(dAtA []byte) error

func (*ActionPlan) XXX_DiscardUnknown

func (m *ActionPlan) XXX_DiscardUnknown()

func (*ActionPlan) XXX_Marshal

func (m *ActionPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ActionPlan) XXX_Merge

func (m *ActionPlan) XXX_Merge(src proto.Message)

func (*ActionPlan) XXX_OneofWrappers

func (*ActionPlan) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ActionPlan) XXX_Size

func (m *ActionPlan) XXX_Size() int

func (*ActionPlan) XXX_Unmarshal

func (m *ActionPlan) XXX_Unmarshal(b []byte) error

type ActionPlan_CommunityPoolDeposit added in v2.5.0

type ActionPlan_CommunityPoolDeposit struct {
	CommunityPoolDeposit *v1alpha18.CommunityPoolDeposit `` /* 130-byte string literal not displayed */
}

func (*ActionPlan_CommunityPoolDeposit) MarshalTo added in v2.5.0

func (m *ActionPlan_CommunityPoolDeposit) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolDeposit) MarshalToSizedBuffer added in v2.5.0

func (m *ActionPlan_CommunityPoolDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolDeposit) Size added in v2.5.0

func (m *ActionPlan_CommunityPoolDeposit) Size() (n int)

type ActionPlan_CommunityPoolOutput added in v2.5.0

type ActionPlan_CommunityPoolOutput struct {
	CommunityPoolOutput *v1alpha18.CommunityPoolOutput `` /* 127-byte string literal not displayed */
}

func (*ActionPlan_CommunityPoolOutput) MarshalTo added in v2.5.0

func (m *ActionPlan_CommunityPoolOutput) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolOutput) MarshalToSizedBuffer added in v2.5.0

func (m *ActionPlan_CommunityPoolOutput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolOutput) Size added in v2.5.0

func (m *ActionPlan_CommunityPoolOutput) Size() (n int)

type ActionPlan_CommunityPoolSpend added in v2.5.0

type ActionPlan_CommunityPoolSpend struct {
	CommunityPoolSpend *v1alpha18.CommunityPoolSpend `protobuf:"bytes,50,opt,name=community_pool_spend,json=communityPoolSpend,proto3,oneof" json:"community_pool_spend,omitempty"`
}

func (*ActionPlan_CommunityPoolSpend) MarshalTo added in v2.5.0

func (m *ActionPlan_CommunityPoolSpend) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolSpend) MarshalToSizedBuffer added in v2.5.0

func (m *ActionPlan_CommunityPoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_CommunityPoolSpend) Size added in v2.5.0

func (m *ActionPlan_CommunityPoolSpend) Size() (n int)

type ActionPlan_Delegate

type ActionPlan_Delegate struct {
	Delegate *v1alpha16.Delegate `protobuf:"bytes,40,opt,name=delegate,proto3,oneof" json:"delegate,omitempty"`
}

func (*ActionPlan_Delegate) MarshalTo

func (m *ActionPlan_Delegate) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Delegate) MarshalToSizedBuffer

func (m *ActionPlan_Delegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Delegate) Size

func (m *ActionPlan_Delegate) Size() (n int)

type ActionPlan_DelegatorVote

type ActionPlan_DelegatorVote struct {
	DelegatorVote *v1alpha18.DelegatorVotePlan `protobuf:"bytes,21,opt,name=delegator_vote,json=delegatorVote,proto3,oneof" json:"delegator_vote,omitempty"`
}

func (*ActionPlan_DelegatorVote) MarshalTo

func (m *ActionPlan_DelegatorVote) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_DelegatorVote) MarshalToSizedBuffer

func (m *ActionPlan_DelegatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_DelegatorVote) Size

func (m *ActionPlan_DelegatorVote) Size() (n int)

type ActionPlan_IbcRelayAction added in v2.5.0

type ActionPlan_IbcRelayAction struct {
	IbcRelayAction *v1alpha17.IbcRelay `protobuf:"bytes,17,opt,name=ibc_relay_action,json=ibcRelayAction,proto3,oneof" json:"ibc_relay_action,omitempty"`
}

func (*ActionPlan_IbcRelayAction) MarshalTo added in v2.5.0

func (m *ActionPlan_IbcRelayAction) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_IbcRelayAction) MarshalToSizedBuffer added in v2.5.0

func (m *ActionPlan_IbcRelayAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_IbcRelayAction) Size added in v2.5.0

func (m *ActionPlan_IbcRelayAction) Size() (n int)

type ActionPlan_Output

type ActionPlan_Output struct {
	Output *v1alpha14.OutputPlan `protobuf:"bytes,2,opt,name=output,proto3,oneof" json:"output,omitempty"`
}

func (*ActionPlan_Output) MarshalTo

func (m *ActionPlan_Output) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Output) MarshalToSizedBuffer

func (m *ActionPlan_Output) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Output) Size

func (m *ActionPlan_Output) Size() (n int)

type ActionPlan_PositionClose

type ActionPlan_PositionClose struct {
	PositionClose *v1alpha15.PositionClose `protobuf:"bytes,31,opt,name=position_close,json=positionClose,proto3,oneof" json:"position_close,omitempty"`
}

func (*ActionPlan_PositionClose) MarshalTo

func (m *ActionPlan_PositionClose) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_PositionClose) MarshalToSizedBuffer

func (m *ActionPlan_PositionClose) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_PositionClose) Size

func (m *ActionPlan_PositionClose) Size() (n int)

type ActionPlan_PositionOpen

type ActionPlan_PositionOpen struct {
	PositionOpen *v1alpha15.PositionOpen `protobuf:"bytes,30,opt,name=position_open,json=positionOpen,proto3,oneof" json:"position_open,omitempty"`
}

func (*ActionPlan_PositionOpen) MarshalTo

func (m *ActionPlan_PositionOpen) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_PositionOpen) MarshalToSizedBuffer

func (m *ActionPlan_PositionOpen) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_PositionOpen) Size

func (m *ActionPlan_PositionOpen) Size() (n int)

type ActionPlan_PositionRewardClaim

type ActionPlan_PositionRewardClaim struct {
	PositionRewardClaim *v1alpha15.PositionRewardClaimPlan `` /* 127-byte string literal not displayed */
}

func (*ActionPlan_PositionRewardClaim) MarshalTo

func (m *ActionPlan_PositionRewardClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_PositionRewardClaim) MarshalToSizedBuffer

func (m *ActionPlan_PositionRewardClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_PositionRewardClaim) Size

func (m *ActionPlan_PositionRewardClaim) Size() (n int)

type ActionPlan_PositionWithdraw

type ActionPlan_PositionWithdraw struct {
	PositionWithdraw *v1alpha15.PositionWithdrawPlan `protobuf:"bytes,32,opt,name=position_withdraw,json=positionWithdraw,proto3,oneof" json:"position_withdraw,omitempty"`
}

func (*ActionPlan_PositionWithdraw) MarshalTo

func (m *ActionPlan_PositionWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_PositionWithdraw) MarshalToSizedBuffer

func (m *ActionPlan_PositionWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_PositionWithdraw) Size

func (m *ActionPlan_PositionWithdraw) Size() (n int)

type ActionPlan_ProposalDepositClaim

type ActionPlan_ProposalDepositClaim struct {
	ProposalDepositClaim *v1alpha18.ProposalDepositClaim `` /* 130-byte string literal not displayed */
}

func (*ActionPlan_ProposalDepositClaim) MarshalTo

func (m *ActionPlan_ProposalDepositClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_ProposalDepositClaim) MarshalToSizedBuffer

func (m *ActionPlan_ProposalDepositClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_ProposalDepositClaim) Size

func (m *ActionPlan_ProposalDepositClaim) Size() (n int)

type ActionPlan_ProposalSubmit

type ActionPlan_ProposalSubmit struct {
	ProposalSubmit *v1alpha18.ProposalSubmit `protobuf:"bytes,18,opt,name=proposal_submit,json=proposalSubmit,proto3,oneof" json:"proposal_submit,omitempty"`
}

func (*ActionPlan_ProposalSubmit) MarshalTo

func (m *ActionPlan_ProposalSubmit) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_ProposalSubmit) MarshalToSizedBuffer

func (m *ActionPlan_ProposalSubmit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_ProposalSubmit) Size

func (m *ActionPlan_ProposalSubmit) Size() (n int)

type ActionPlan_ProposalWithdraw

type ActionPlan_ProposalWithdraw struct {
	ProposalWithdraw *v1alpha18.ProposalWithdraw `protobuf:"bytes,19,opt,name=proposal_withdraw,json=proposalWithdraw,proto3,oneof" json:"proposal_withdraw,omitempty"`
}

func (*ActionPlan_ProposalWithdraw) MarshalTo

func (m *ActionPlan_ProposalWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_ProposalWithdraw) MarshalToSizedBuffer

func (m *ActionPlan_ProposalWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_ProposalWithdraw) Size

func (m *ActionPlan_ProposalWithdraw) Size() (n int)

type ActionPlan_Spend

type ActionPlan_Spend struct {
	Spend *v1alpha14.SpendPlan `protobuf:"bytes,1,opt,name=spend,proto3,oneof" json:"spend,omitempty"`
}

func (*ActionPlan_Spend) MarshalTo

func (m *ActionPlan_Spend) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Spend) MarshalToSizedBuffer

func (m *ActionPlan_Spend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Spend) Size

func (m *ActionPlan_Spend) Size() (n int)

type ActionPlan_Swap

type ActionPlan_Swap struct {
	Swap *v1alpha15.SwapPlan `protobuf:"bytes,3,opt,name=swap,proto3,oneof" json:"swap,omitempty"`
}

func (*ActionPlan_Swap) MarshalTo

func (m *ActionPlan_Swap) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Swap) MarshalToSizedBuffer

func (m *ActionPlan_Swap) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Swap) Size

func (m *ActionPlan_Swap) Size() (n int)

type ActionPlan_SwapClaim

type ActionPlan_SwapClaim struct {
	SwapClaim *v1alpha15.SwapClaimPlan `protobuf:"bytes,4,opt,name=swap_claim,json=swapClaim,proto3,oneof" json:"swap_claim,omitempty"`
}

func (*ActionPlan_SwapClaim) MarshalTo

func (m *ActionPlan_SwapClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_SwapClaim) MarshalToSizedBuffer

func (m *ActionPlan_SwapClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_SwapClaim) Size

func (m *ActionPlan_SwapClaim) Size() (n int)

type ActionPlan_Undelegate

type ActionPlan_Undelegate struct {
	Undelegate *v1alpha16.Undelegate `protobuf:"bytes,41,opt,name=undelegate,proto3,oneof" json:"undelegate,omitempty"`
}

func (*ActionPlan_Undelegate) MarshalTo

func (m *ActionPlan_Undelegate) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Undelegate) MarshalToSizedBuffer

func (m *ActionPlan_Undelegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Undelegate) Size

func (m *ActionPlan_Undelegate) Size() (n int)

type ActionPlan_UndelegateClaim

type ActionPlan_UndelegateClaim struct {
	UndelegateClaim *v1alpha16.UndelegateClaimPlan `protobuf:"bytes,42,opt,name=undelegate_claim,json=undelegateClaim,proto3,oneof" json:"undelegate_claim,omitempty"`
}

func (*ActionPlan_UndelegateClaim) MarshalTo

func (m *ActionPlan_UndelegateClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_UndelegateClaim) MarshalToSizedBuffer

func (m *ActionPlan_UndelegateClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_UndelegateClaim) Size

func (m *ActionPlan_UndelegateClaim) Size() (n int)

type ActionPlan_ValidatorDefinition

type ActionPlan_ValidatorDefinition struct {
	ValidatorDefinition *v1alpha16.ValidatorDefinition `protobuf:"bytes,16,opt,name=validator_definition,json=validatorDefinition,proto3,oneof" json:"validator_definition,omitempty"`
}

func (*ActionPlan_ValidatorDefinition) MarshalTo

func (m *ActionPlan_ValidatorDefinition) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_ValidatorDefinition) MarshalToSizedBuffer

func (m *ActionPlan_ValidatorDefinition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_ValidatorDefinition) Size

func (m *ActionPlan_ValidatorDefinition) Size() (n int)

type ActionPlan_ValidatorVote

type ActionPlan_ValidatorVote struct {
	ValidatorVote *v1alpha18.ValidatorVote `protobuf:"bytes,20,opt,name=validator_vote,json=validatorVote,proto3,oneof" json:"validator_vote,omitempty"`
}

func (*ActionPlan_ValidatorVote) MarshalTo

func (m *ActionPlan_ValidatorVote) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_ValidatorVote) MarshalToSizedBuffer

func (m *ActionPlan_ValidatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_ValidatorVote) Size

func (m *ActionPlan_ValidatorVote) Size() (n int)

type ActionPlan_Withdrawal

type ActionPlan_Withdrawal struct {
	Withdrawal *v1alpha17.Ics20Withdrawal `protobuf:"bytes,23,opt,name=withdrawal,proto3,oneof" json:"withdrawal,omitempty"`
}

func (*ActionPlan_Withdrawal) MarshalTo

func (m *ActionPlan_Withdrawal) MarshalTo(dAtA []byte) (int, error)

func (*ActionPlan_Withdrawal) MarshalToSizedBuffer

func (m *ActionPlan_Withdrawal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionPlan_Withdrawal) Size

func (m *ActionPlan_Withdrawal) Size() (n int)

type ActionView

type ActionView struct {
	// Types that are valid to be assigned to ActionView:
	//	*ActionView_Spend
	//	*ActionView_Output
	//	*ActionView_Swap
	//	*ActionView_SwapClaim
	//	*ActionView_ValidatorDefinition
	//	*ActionView_IbcRelayAction
	//	*ActionView_ProposalSubmit
	//	*ActionView_ProposalWithdraw
	//	*ActionView_ValidatorVote
	//	*ActionView_DelegatorVote
	//	*ActionView_ProposalDepositClaim
	//	*ActionView_PositionOpen
	//	*ActionView_PositionClose
	//	*ActionView_PositionWithdraw
	//	*ActionView_PositionRewardClaim
	//	*ActionView_Delegate
	//	*ActionView_Undelegate
	//	*ActionView_CommunityPoolSpend
	//	*ActionView_CommunityPoolOutput
	//	*ActionView_CommunityPoolDeposit
	//	*ActionView_UndelegateClaim
	//	*ActionView_Ics20Withdrawal
	ActionView isActionView_ActionView `protobuf_oneof:"action_view"`
}

A view of a specific state change action performed by a transaction.

func (*ActionView) Descriptor

func (*ActionView) Descriptor() ([]byte, []int)

func (*ActionView) GetActionView

func (m *ActionView) GetActionView() isActionView_ActionView

func (*ActionView) GetCommunityPoolDeposit added in v2.5.0

func (m *ActionView) GetCommunityPoolDeposit() *v1alpha18.CommunityPoolDeposit

func (*ActionView) GetCommunityPoolOutput added in v2.5.0

func (m *ActionView) GetCommunityPoolOutput() *v1alpha18.CommunityPoolOutput

func (*ActionView) GetCommunityPoolSpend added in v2.5.0

func (m *ActionView) GetCommunityPoolSpend() *v1alpha18.CommunityPoolSpend

func (*ActionView) GetDelegate

func (m *ActionView) GetDelegate() *v1alpha16.Delegate

func (*ActionView) GetDelegatorVote

func (m *ActionView) GetDelegatorVote() *v1alpha18.DelegatorVoteView

func (*ActionView) GetIbcRelayAction added in v2.5.0

func (m *ActionView) GetIbcRelayAction() *v1alpha17.IbcRelay

func (*ActionView) GetIcs20Withdrawal

func (m *ActionView) GetIcs20Withdrawal() *v1alpha17.Ics20Withdrawal

func (*ActionView) GetOutput

func (m *ActionView) GetOutput() *v1alpha14.OutputView

func (*ActionView) GetPositionClose

func (m *ActionView) GetPositionClose() *v1alpha15.PositionClose

func (*ActionView) GetPositionOpen

func (m *ActionView) GetPositionOpen() *v1alpha15.PositionOpen

func (*ActionView) GetPositionRewardClaim

func (m *ActionView) GetPositionRewardClaim() *v1alpha15.PositionRewardClaim

func (*ActionView) GetPositionWithdraw

func (m *ActionView) GetPositionWithdraw() *v1alpha15.PositionWithdraw

func (*ActionView) GetProposalDepositClaim

func (m *ActionView) GetProposalDepositClaim() *v1alpha18.ProposalDepositClaim

func (*ActionView) GetProposalSubmit

func (m *ActionView) GetProposalSubmit() *v1alpha18.ProposalSubmit

func (*ActionView) GetProposalWithdraw

func (m *ActionView) GetProposalWithdraw() *v1alpha18.ProposalWithdraw

func (*ActionView) GetSpend

func (m *ActionView) GetSpend() *v1alpha14.SpendView

func (*ActionView) GetSwap

func (m *ActionView) GetSwap() *v1alpha15.SwapView

func (*ActionView) GetSwapClaim

func (m *ActionView) GetSwapClaim() *v1alpha15.SwapClaimView

func (*ActionView) GetUndelegate

func (m *ActionView) GetUndelegate() *v1alpha16.Undelegate

func (*ActionView) GetUndelegateClaim

func (m *ActionView) GetUndelegateClaim() *v1alpha16.UndelegateClaim

func (*ActionView) GetValidatorDefinition

func (m *ActionView) GetValidatorDefinition() *v1alpha16.ValidatorDefinition

func (*ActionView) GetValidatorVote

func (m *ActionView) GetValidatorVote() *v1alpha18.ValidatorVote

func (*ActionView) Marshal

func (m *ActionView) Marshal() (dAtA []byte, err error)

func (*ActionView) MarshalTo

func (m *ActionView) MarshalTo(dAtA []byte) (int, error)

func (*ActionView) MarshalToSizedBuffer

func (m *ActionView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView) ProtoMessage

func (*ActionView) ProtoMessage()

func (*ActionView) Reset

func (m *ActionView) Reset()

func (*ActionView) Size

func (m *ActionView) Size() (n int)

func (*ActionView) String

func (m *ActionView) String() string

func (*ActionView) Unmarshal

func (m *ActionView) Unmarshal(dAtA []byte) error

func (*ActionView) XXX_DiscardUnknown

func (m *ActionView) XXX_DiscardUnknown()

func (*ActionView) XXX_Marshal

func (m *ActionView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ActionView) XXX_Merge

func (m *ActionView) XXX_Merge(src proto.Message)

func (*ActionView) XXX_OneofWrappers

func (*ActionView) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ActionView) XXX_Size

func (m *ActionView) XXX_Size() int

func (*ActionView) XXX_Unmarshal

func (m *ActionView) XXX_Unmarshal(b []byte) error

type ActionView_CommunityPoolDeposit added in v2.5.0

type ActionView_CommunityPoolDeposit struct {
	CommunityPoolDeposit *v1alpha18.CommunityPoolDeposit `` /* 130-byte string literal not displayed */
}

func (*ActionView_CommunityPoolDeposit) MarshalTo added in v2.5.0

func (m *ActionView_CommunityPoolDeposit) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolDeposit) MarshalToSizedBuffer added in v2.5.0

func (m *ActionView_CommunityPoolDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolDeposit) Size added in v2.5.0

func (m *ActionView_CommunityPoolDeposit) Size() (n int)

type ActionView_CommunityPoolOutput added in v2.5.0

type ActionView_CommunityPoolOutput struct {
	CommunityPoolOutput *v1alpha18.CommunityPoolOutput `` /* 127-byte string literal not displayed */
}

func (*ActionView_CommunityPoolOutput) MarshalTo added in v2.5.0

func (m *ActionView_CommunityPoolOutput) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolOutput) MarshalToSizedBuffer added in v2.5.0

func (m *ActionView_CommunityPoolOutput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolOutput) Size added in v2.5.0

func (m *ActionView_CommunityPoolOutput) Size() (n int)

type ActionView_CommunityPoolSpend added in v2.5.0

type ActionView_CommunityPoolSpend struct {
	CommunityPoolSpend *v1alpha18.CommunityPoolSpend `protobuf:"bytes,50,opt,name=community_pool_spend,json=communityPoolSpend,proto3,oneof" json:"community_pool_spend,omitempty"`
}

func (*ActionView_CommunityPoolSpend) MarshalTo added in v2.5.0

func (m *ActionView_CommunityPoolSpend) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolSpend) MarshalToSizedBuffer added in v2.5.0

func (m *ActionView_CommunityPoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_CommunityPoolSpend) Size added in v2.5.0

func (m *ActionView_CommunityPoolSpend) Size() (n int)

type ActionView_Delegate

type ActionView_Delegate struct {
	Delegate *v1alpha16.Delegate `protobuf:"bytes,41,opt,name=delegate,proto3,oneof" json:"delegate,omitempty"`
}

func (*ActionView_Delegate) MarshalTo

func (m *ActionView_Delegate) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Delegate) MarshalToSizedBuffer

func (m *ActionView_Delegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Delegate) Size

func (m *ActionView_Delegate) Size() (n int)

type ActionView_DelegatorVote

type ActionView_DelegatorVote struct {
	DelegatorVote *v1alpha18.DelegatorVoteView `protobuf:"bytes,21,opt,name=delegator_vote,json=delegatorVote,proto3,oneof" json:"delegator_vote,omitempty"`
}

func (*ActionView_DelegatorVote) MarshalTo

func (m *ActionView_DelegatorVote) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_DelegatorVote) MarshalToSizedBuffer

func (m *ActionView_DelegatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_DelegatorVote) Size

func (m *ActionView_DelegatorVote) Size() (n int)

type ActionView_IbcRelayAction added in v2.5.0

type ActionView_IbcRelayAction struct {
	IbcRelayAction *v1alpha17.IbcRelay `protobuf:"bytes,17,opt,name=ibc_relay_action,json=ibcRelayAction,proto3,oneof" json:"ibc_relay_action,omitempty"`
}

func (*ActionView_IbcRelayAction) MarshalTo added in v2.5.0

func (m *ActionView_IbcRelayAction) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_IbcRelayAction) MarshalToSizedBuffer added in v2.5.0

func (m *ActionView_IbcRelayAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_IbcRelayAction) Size added in v2.5.0

func (m *ActionView_IbcRelayAction) Size() (n int)

type ActionView_Ics20Withdrawal

type ActionView_Ics20Withdrawal struct {
	Ics20Withdrawal *v1alpha17.Ics20Withdrawal `protobuf:"bytes,200,opt,name=ics20_withdrawal,json=ics20Withdrawal,proto3,oneof" json:"ics20_withdrawal,omitempty"`
}

func (*ActionView_Ics20Withdrawal) MarshalTo

func (m *ActionView_Ics20Withdrawal) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Ics20Withdrawal) MarshalToSizedBuffer

func (m *ActionView_Ics20Withdrawal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Ics20Withdrawal) Size

func (m *ActionView_Ics20Withdrawal) Size() (n int)

type ActionView_Output

type ActionView_Output struct {
	Output *v1alpha14.OutputView `protobuf:"bytes,2,opt,name=output,proto3,oneof" json:"output,omitempty"`
}

func (*ActionView_Output) MarshalTo

func (m *ActionView_Output) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Output) MarshalToSizedBuffer

func (m *ActionView_Output) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Output) Size

func (m *ActionView_Output) Size() (n int)

type ActionView_PositionClose

type ActionView_PositionClose struct {
	PositionClose *v1alpha15.PositionClose `protobuf:"bytes,31,opt,name=position_close,json=positionClose,proto3,oneof" json:"position_close,omitempty"`
}

func (*ActionView_PositionClose) MarshalTo

func (m *ActionView_PositionClose) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_PositionClose) MarshalToSizedBuffer

func (m *ActionView_PositionClose) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_PositionClose) Size

func (m *ActionView_PositionClose) Size() (n int)

type ActionView_PositionOpen

type ActionView_PositionOpen struct {
	PositionOpen *v1alpha15.PositionOpen `protobuf:"bytes,30,opt,name=position_open,json=positionOpen,proto3,oneof" json:"position_open,omitempty"`
}

func (*ActionView_PositionOpen) MarshalTo

func (m *ActionView_PositionOpen) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_PositionOpen) MarshalToSizedBuffer

func (m *ActionView_PositionOpen) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_PositionOpen) Size

func (m *ActionView_PositionOpen) Size() (n int)

type ActionView_PositionRewardClaim

type ActionView_PositionRewardClaim struct {
	PositionRewardClaim *v1alpha15.PositionRewardClaim `` /* 127-byte string literal not displayed */
}

func (*ActionView_PositionRewardClaim) MarshalTo

func (m *ActionView_PositionRewardClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_PositionRewardClaim) MarshalToSizedBuffer

func (m *ActionView_PositionRewardClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_PositionRewardClaim) Size

func (m *ActionView_PositionRewardClaim) Size() (n int)

type ActionView_PositionWithdraw

type ActionView_PositionWithdraw struct {
	PositionWithdraw *v1alpha15.PositionWithdraw `protobuf:"bytes,32,opt,name=position_withdraw,json=positionWithdraw,proto3,oneof" json:"position_withdraw,omitempty"`
}

func (*ActionView_PositionWithdraw) MarshalTo

func (m *ActionView_PositionWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_PositionWithdraw) MarshalToSizedBuffer

func (m *ActionView_PositionWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_PositionWithdraw) Size

func (m *ActionView_PositionWithdraw) Size() (n int)

type ActionView_ProposalDepositClaim

type ActionView_ProposalDepositClaim struct {
	ProposalDepositClaim *v1alpha18.ProposalDepositClaim `` /* 130-byte string literal not displayed */
}

func (*ActionView_ProposalDepositClaim) MarshalTo

func (m *ActionView_ProposalDepositClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_ProposalDepositClaim) MarshalToSizedBuffer

func (m *ActionView_ProposalDepositClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_ProposalDepositClaim) Size

func (m *ActionView_ProposalDepositClaim) Size() (n int)

type ActionView_ProposalSubmit

type ActionView_ProposalSubmit struct {
	ProposalSubmit *v1alpha18.ProposalSubmit `protobuf:"bytes,18,opt,name=proposal_submit,json=proposalSubmit,proto3,oneof" json:"proposal_submit,omitempty"`
}

func (*ActionView_ProposalSubmit) MarshalTo

func (m *ActionView_ProposalSubmit) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_ProposalSubmit) MarshalToSizedBuffer

func (m *ActionView_ProposalSubmit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_ProposalSubmit) Size

func (m *ActionView_ProposalSubmit) Size() (n int)

type ActionView_ProposalWithdraw

type ActionView_ProposalWithdraw struct {
	ProposalWithdraw *v1alpha18.ProposalWithdraw `protobuf:"bytes,19,opt,name=proposal_withdraw,json=proposalWithdraw,proto3,oneof" json:"proposal_withdraw,omitempty"`
}

func (*ActionView_ProposalWithdraw) MarshalTo

func (m *ActionView_ProposalWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_ProposalWithdraw) MarshalToSizedBuffer

func (m *ActionView_ProposalWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_ProposalWithdraw) Size

func (m *ActionView_ProposalWithdraw) Size() (n int)

type ActionView_Spend

type ActionView_Spend struct {
	Spend *v1alpha14.SpendView `protobuf:"bytes,1,opt,name=spend,proto3,oneof" json:"spend,omitempty"`
}

func (*ActionView_Spend) MarshalTo

func (m *ActionView_Spend) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Spend) MarshalToSizedBuffer

func (m *ActionView_Spend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Spend) Size

func (m *ActionView_Spend) Size() (n int)

type ActionView_Swap

type ActionView_Swap struct {
	Swap *v1alpha15.SwapView `protobuf:"bytes,3,opt,name=swap,proto3,oneof" json:"swap,omitempty"`
}

func (*ActionView_Swap) MarshalTo

func (m *ActionView_Swap) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Swap) MarshalToSizedBuffer

func (m *ActionView_Swap) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Swap) Size

func (m *ActionView_Swap) Size() (n int)

type ActionView_SwapClaim

type ActionView_SwapClaim struct {
	SwapClaim *v1alpha15.SwapClaimView `protobuf:"bytes,4,opt,name=swap_claim,json=swapClaim,proto3,oneof" json:"swap_claim,omitempty"`
}

func (*ActionView_SwapClaim) MarshalTo

func (m *ActionView_SwapClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_SwapClaim) MarshalToSizedBuffer

func (m *ActionView_SwapClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_SwapClaim) Size

func (m *ActionView_SwapClaim) Size() (n int)

type ActionView_Undelegate

type ActionView_Undelegate struct {
	Undelegate *v1alpha16.Undelegate `protobuf:"bytes,42,opt,name=undelegate,proto3,oneof" json:"undelegate,omitempty"`
}

func (*ActionView_Undelegate) MarshalTo

func (m *ActionView_Undelegate) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_Undelegate) MarshalToSizedBuffer

func (m *ActionView_Undelegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_Undelegate) Size

func (m *ActionView_Undelegate) Size() (n int)

type ActionView_UndelegateClaim

type ActionView_UndelegateClaim struct {
	UndelegateClaim *v1alpha16.UndelegateClaim `protobuf:"bytes,43,opt,name=undelegate_claim,json=undelegateClaim,proto3,oneof" json:"undelegate_claim,omitempty"`
}

func (*ActionView_UndelegateClaim) MarshalTo

func (m *ActionView_UndelegateClaim) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_UndelegateClaim) MarshalToSizedBuffer

func (m *ActionView_UndelegateClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_UndelegateClaim) Size

func (m *ActionView_UndelegateClaim) Size() (n int)

type ActionView_ValidatorDefinition

type ActionView_ValidatorDefinition struct {
	ValidatorDefinition *v1alpha16.ValidatorDefinition `protobuf:"bytes,16,opt,name=validator_definition,json=validatorDefinition,proto3,oneof" json:"validator_definition,omitempty"`
}

func (*ActionView_ValidatorDefinition) MarshalTo

func (m *ActionView_ValidatorDefinition) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_ValidatorDefinition) MarshalToSizedBuffer

func (m *ActionView_ValidatorDefinition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_ValidatorDefinition) Size

func (m *ActionView_ValidatorDefinition) Size() (n int)

type ActionView_ValidatorVote

type ActionView_ValidatorVote struct {
	ValidatorVote *v1alpha18.ValidatorVote `protobuf:"bytes,20,opt,name=validator_vote,json=validatorVote,proto3,oneof" json:"validator_vote,omitempty"`
}

func (*ActionView_ValidatorVote) MarshalTo

func (m *ActionView_ValidatorVote) MarshalTo(dAtA []byte) (int, error)

func (*ActionView_ValidatorVote) MarshalToSizedBuffer

func (m *ActionView_ValidatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ActionView_ValidatorVote) Size

func (m *ActionView_ValidatorVote) Size() (n int)

type Action_CommunityPoolDeposit added in v2.5.0

type Action_CommunityPoolDeposit struct {
	CommunityPoolDeposit *v1alpha18.CommunityPoolDeposit `` /* 130-byte string literal not displayed */
}

func (*Action_CommunityPoolDeposit) MarshalTo added in v2.5.0

func (m *Action_CommunityPoolDeposit) MarshalTo(dAtA []byte) (int, error)

func (*Action_CommunityPoolDeposit) MarshalToSizedBuffer added in v2.5.0

func (m *Action_CommunityPoolDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_CommunityPoolDeposit) Size added in v2.5.0

func (m *Action_CommunityPoolDeposit) Size() (n int)

type Action_CommunityPoolOutput added in v2.5.0

type Action_CommunityPoolOutput struct {
	CommunityPoolOutput *v1alpha18.CommunityPoolOutput `` /* 127-byte string literal not displayed */
}

func (*Action_CommunityPoolOutput) MarshalTo added in v2.5.0

func (m *Action_CommunityPoolOutput) MarshalTo(dAtA []byte) (int, error)

func (*Action_CommunityPoolOutput) MarshalToSizedBuffer added in v2.5.0

func (m *Action_CommunityPoolOutput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_CommunityPoolOutput) Size added in v2.5.0

func (m *Action_CommunityPoolOutput) Size() (n int)

type Action_CommunityPoolSpend added in v2.5.0

type Action_CommunityPoolSpend struct {
	CommunityPoolSpend *v1alpha18.CommunityPoolSpend `protobuf:"bytes,50,opt,name=community_pool_spend,json=communityPoolSpend,proto3,oneof" json:"community_pool_spend,omitempty"`
}

func (*Action_CommunityPoolSpend) MarshalTo added in v2.5.0

func (m *Action_CommunityPoolSpend) MarshalTo(dAtA []byte) (int, error)

func (*Action_CommunityPoolSpend) MarshalToSizedBuffer added in v2.5.0

func (m *Action_CommunityPoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_CommunityPoolSpend) Size added in v2.5.0

func (m *Action_CommunityPoolSpend) Size() (n int)

type Action_Delegate

type Action_Delegate struct {
	Delegate *v1alpha16.Delegate `protobuf:"bytes,40,opt,name=delegate,proto3,oneof" json:"delegate,omitempty"`
}

func (*Action_Delegate) MarshalTo

func (m *Action_Delegate) MarshalTo(dAtA []byte) (int, error)

func (*Action_Delegate) MarshalToSizedBuffer

func (m *Action_Delegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Delegate) Size

func (m *Action_Delegate) Size() (n int)

type Action_DelegatorVote

type Action_DelegatorVote struct {
	DelegatorVote *v1alpha18.DelegatorVote `protobuf:"bytes,21,opt,name=delegator_vote,json=delegatorVote,proto3,oneof" json:"delegator_vote,omitempty"`
}

func (*Action_DelegatorVote) MarshalTo

func (m *Action_DelegatorVote) MarshalTo(dAtA []byte) (int, error)

func (*Action_DelegatorVote) MarshalToSizedBuffer

func (m *Action_DelegatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_DelegatorVote) Size

func (m *Action_DelegatorVote) Size() (n int)

type Action_IbcRelayAction added in v2.5.0

type Action_IbcRelayAction struct {
	IbcRelayAction *v1alpha17.IbcRelay `protobuf:"bytes,17,opt,name=ibc_relay_action,json=ibcRelayAction,proto3,oneof" json:"ibc_relay_action,omitempty"`
}

func (*Action_IbcRelayAction) MarshalTo added in v2.5.0

func (m *Action_IbcRelayAction) MarshalTo(dAtA []byte) (int, error)

func (*Action_IbcRelayAction) MarshalToSizedBuffer added in v2.5.0

func (m *Action_IbcRelayAction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_IbcRelayAction) Size added in v2.5.0

func (m *Action_IbcRelayAction) Size() (n int)

type Action_Ics20Withdrawal

type Action_Ics20Withdrawal struct {
	Ics20Withdrawal *v1alpha17.Ics20Withdrawal `protobuf:"bytes,200,opt,name=ics20_withdrawal,json=ics20Withdrawal,proto3,oneof" json:"ics20_withdrawal,omitempty"`
}

func (*Action_Ics20Withdrawal) MarshalTo

func (m *Action_Ics20Withdrawal) MarshalTo(dAtA []byte) (int, error)

func (*Action_Ics20Withdrawal) MarshalToSizedBuffer

func (m *Action_Ics20Withdrawal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Ics20Withdrawal) Size

func (m *Action_Ics20Withdrawal) Size() (n int)

type Action_Output

type Action_Output struct {
	Output *v1alpha14.Output `protobuf:"bytes,2,opt,name=output,proto3,oneof" json:"output,omitempty"`
}

func (*Action_Output) MarshalTo

func (m *Action_Output) MarshalTo(dAtA []byte) (int, error)

func (*Action_Output) MarshalToSizedBuffer

func (m *Action_Output) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Output) Size

func (m *Action_Output) Size() (n int)

type Action_PositionClose

type Action_PositionClose struct {
	PositionClose *v1alpha15.PositionClose `protobuf:"bytes,31,opt,name=position_close,json=positionClose,proto3,oneof" json:"position_close,omitempty"`
}

func (*Action_PositionClose) MarshalTo

func (m *Action_PositionClose) MarshalTo(dAtA []byte) (int, error)

func (*Action_PositionClose) MarshalToSizedBuffer

func (m *Action_PositionClose) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_PositionClose) Size

func (m *Action_PositionClose) Size() (n int)

type Action_PositionOpen

type Action_PositionOpen struct {
	PositionOpen *v1alpha15.PositionOpen `protobuf:"bytes,30,opt,name=position_open,json=positionOpen,proto3,oneof" json:"position_open,omitempty"`
}

func (*Action_PositionOpen) MarshalTo

func (m *Action_PositionOpen) MarshalTo(dAtA []byte) (int, error)

func (*Action_PositionOpen) MarshalToSizedBuffer

func (m *Action_PositionOpen) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_PositionOpen) Size

func (m *Action_PositionOpen) Size() (n int)

type Action_PositionRewardClaim

type Action_PositionRewardClaim struct {
	PositionRewardClaim *v1alpha15.PositionRewardClaim `` /* 127-byte string literal not displayed */
}

func (*Action_PositionRewardClaim) MarshalTo

func (m *Action_PositionRewardClaim) MarshalTo(dAtA []byte) (int, error)

func (*Action_PositionRewardClaim) MarshalToSizedBuffer

func (m *Action_PositionRewardClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_PositionRewardClaim) Size

func (m *Action_PositionRewardClaim) Size() (n int)

type Action_PositionWithdraw

type Action_PositionWithdraw struct {
	PositionWithdraw *v1alpha15.PositionWithdraw `protobuf:"bytes,32,opt,name=position_withdraw,json=positionWithdraw,proto3,oneof" json:"position_withdraw,omitempty"`
}

func (*Action_PositionWithdraw) MarshalTo

func (m *Action_PositionWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*Action_PositionWithdraw) MarshalToSizedBuffer

func (m *Action_PositionWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_PositionWithdraw) Size

func (m *Action_PositionWithdraw) Size() (n int)

type Action_ProposalDepositClaim

type Action_ProposalDepositClaim struct {
	ProposalDepositClaim *v1alpha18.ProposalDepositClaim `` /* 130-byte string literal not displayed */
}

func (*Action_ProposalDepositClaim) MarshalTo

func (m *Action_ProposalDepositClaim) MarshalTo(dAtA []byte) (int, error)

func (*Action_ProposalDepositClaim) MarshalToSizedBuffer

func (m *Action_ProposalDepositClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_ProposalDepositClaim) Size

func (m *Action_ProposalDepositClaim) Size() (n int)

type Action_ProposalSubmit

type Action_ProposalSubmit struct {
	ProposalSubmit *v1alpha18.ProposalSubmit `protobuf:"bytes,18,opt,name=proposal_submit,json=proposalSubmit,proto3,oneof" json:"proposal_submit,omitempty"`
}

func (*Action_ProposalSubmit) MarshalTo

func (m *Action_ProposalSubmit) MarshalTo(dAtA []byte) (int, error)

func (*Action_ProposalSubmit) MarshalToSizedBuffer

func (m *Action_ProposalSubmit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_ProposalSubmit) Size

func (m *Action_ProposalSubmit) Size() (n int)

type Action_ProposalWithdraw

type Action_ProposalWithdraw struct {
	ProposalWithdraw *v1alpha18.ProposalWithdraw `protobuf:"bytes,19,opt,name=proposal_withdraw,json=proposalWithdraw,proto3,oneof" json:"proposal_withdraw,omitempty"`
}

func (*Action_ProposalWithdraw) MarshalTo

func (m *Action_ProposalWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*Action_ProposalWithdraw) MarshalToSizedBuffer

func (m *Action_ProposalWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_ProposalWithdraw) Size

func (m *Action_ProposalWithdraw) Size() (n int)

type Action_Spend

type Action_Spend struct {
	Spend *v1alpha14.Spend `protobuf:"bytes,1,opt,name=spend,proto3,oneof" json:"spend,omitempty"`
}

func (*Action_Spend) MarshalTo

func (m *Action_Spend) MarshalTo(dAtA []byte) (int, error)

func (*Action_Spend) MarshalToSizedBuffer

func (m *Action_Spend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Spend) Size

func (m *Action_Spend) Size() (n int)

type Action_Swap

type Action_Swap struct {
	Swap *v1alpha15.Swap `protobuf:"bytes,3,opt,name=swap,proto3,oneof" json:"swap,omitempty"`
}

func (*Action_Swap) MarshalTo

func (m *Action_Swap) MarshalTo(dAtA []byte) (int, error)

func (*Action_Swap) MarshalToSizedBuffer

func (m *Action_Swap) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Swap) Size

func (m *Action_Swap) Size() (n int)

type Action_SwapClaim

type Action_SwapClaim struct {
	SwapClaim *v1alpha15.SwapClaim `protobuf:"bytes,4,opt,name=swap_claim,json=swapClaim,proto3,oneof" json:"swap_claim,omitempty"`
}

func (*Action_SwapClaim) MarshalTo

func (m *Action_SwapClaim) MarshalTo(dAtA []byte) (int, error)

func (*Action_SwapClaim) MarshalToSizedBuffer

func (m *Action_SwapClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_SwapClaim) Size

func (m *Action_SwapClaim) Size() (n int)

type Action_Undelegate

type Action_Undelegate struct {
	Undelegate *v1alpha16.Undelegate `protobuf:"bytes,41,opt,name=undelegate,proto3,oneof" json:"undelegate,omitempty"`
}

func (*Action_Undelegate) MarshalTo

func (m *Action_Undelegate) MarshalTo(dAtA []byte) (int, error)

func (*Action_Undelegate) MarshalToSizedBuffer

func (m *Action_Undelegate) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_Undelegate) Size

func (m *Action_Undelegate) Size() (n int)

type Action_UndelegateClaim

type Action_UndelegateClaim struct {
	UndelegateClaim *v1alpha16.UndelegateClaim `protobuf:"bytes,42,opt,name=undelegate_claim,json=undelegateClaim,proto3,oneof" json:"undelegate_claim,omitempty"`
}

func (*Action_UndelegateClaim) MarshalTo

func (m *Action_UndelegateClaim) MarshalTo(dAtA []byte) (int, error)

func (*Action_UndelegateClaim) MarshalToSizedBuffer

func (m *Action_UndelegateClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_UndelegateClaim) Size

func (m *Action_UndelegateClaim) Size() (n int)

type Action_ValidatorDefinition

type Action_ValidatorDefinition struct {
	ValidatorDefinition *v1alpha16.ValidatorDefinition `protobuf:"bytes,16,opt,name=validator_definition,json=validatorDefinition,proto3,oneof" json:"validator_definition,omitempty"`
}

func (*Action_ValidatorDefinition) MarshalTo

func (m *Action_ValidatorDefinition) MarshalTo(dAtA []byte) (int, error)

func (*Action_ValidatorDefinition) MarshalToSizedBuffer

func (m *Action_ValidatorDefinition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_ValidatorDefinition) Size

func (m *Action_ValidatorDefinition) Size() (n int)

type Action_ValidatorVote

type Action_ValidatorVote struct {
	ValidatorVote *v1alpha18.ValidatorVote `protobuf:"bytes,20,opt,name=validator_vote,json=validatorVote,proto3,oneof" json:"validator_vote,omitempty"`
}

func (*Action_ValidatorVote) MarshalTo

func (m *Action_ValidatorVote) MarshalTo(dAtA []byte) (int, error)

func (*Action_ValidatorVote) MarshalToSizedBuffer

func (m *Action_ValidatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Action_ValidatorVote) Size

func (m *Action_ValidatorVote) Size() (n int)

type AuthorizationData

type AuthorizationData struct {
	// The computed auth hash for the approved transaction plan.
	EffectHash *v1alpha111.EffectHash `protobuf:"bytes,1,opt,name=effect_hash,json=effectHash,proto3" json:"effect_hash,omitempty"`
	// The required spend authorizations, returned in the same order as the
	// Spend actions in the original request.
	SpendAuths []*v1alpha1.SpendAuthSignature `protobuf:"bytes,2,rep,name=spend_auths,json=spendAuths,proto3" json:"spend_auths,omitempty"`
	// The required delegator vote authorizations, returned in the same order as the
	// DelegatorVote actions in the original request.
	DelegatorVoteAuths []*v1alpha1.SpendAuthSignature `protobuf:"bytes,3,rep,name=delegator_vote_auths,json=delegatorVoteAuths,proto3" json:"delegator_vote_auths,omitempty"`
}

The data required to authorize a transaction plan.

func (*AuthorizationData) Descriptor

func (*AuthorizationData) Descriptor() ([]byte, []int)

func (*AuthorizationData) GetDelegatorVoteAuths

func (m *AuthorizationData) GetDelegatorVoteAuths() []*v1alpha1.SpendAuthSignature

func (*AuthorizationData) GetEffectHash

func (m *AuthorizationData) GetEffectHash() *v1alpha111.EffectHash

func (*AuthorizationData) GetSpendAuths

func (m *AuthorizationData) GetSpendAuths() []*v1alpha1.SpendAuthSignature

func (*AuthorizationData) Marshal

func (m *AuthorizationData) Marshal() (dAtA []byte, err error)

func (*AuthorizationData) MarshalTo

func (m *AuthorizationData) MarshalTo(dAtA []byte) (int, error)

func (*AuthorizationData) MarshalToSizedBuffer

func (m *AuthorizationData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AuthorizationData) ProtoMessage

func (*AuthorizationData) ProtoMessage()

func (*AuthorizationData) Reset

func (m *AuthorizationData) Reset()

func (*AuthorizationData) Size

func (m *AuthorizationData) Size() (n int)

func (*AuthorizationData) String

func (m *AuthorizationData) String() string

func (*AuthorizationData) Unmarshal

func (m *AuthorizationData) Unmarshal(dAtA []byte) error

func (*AuthorizationData) XXX_DiscardUnknown

func (m *AuthorizationData) XXX_DiscardUnknown()

func (*AuthorizationData) XXX_Marshal

func (m *AuthorizationData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AuthorizationData) XXX_Merge

func (m *AuthorizationData) XXX_Merge(src proto.Message)

func (*AuthorizationData) XXX_Size

func (m *AuthorizationData) XXX_Size() int

func (*AuthorizationData) XXX_Unmarshal

func (m *AuthorizationData) XXX_Unmarshal(b []byte) error

type CluePlan

type CluePlan struct {
	// The address.
	Address *v1alpha19.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// The random seed to use for the clue plan.
	Rseed []byte `protobuf:"bytes,2,opt,name=rseed,proto3" json:"rseed,omitempty"`
	// The bits of precision.
	PrecisionBits uint64 `protobuf:"varint,3,opt,name=precision_bits,json=precisionBits,proto3" json:"precision_bits,omitempty"`
}

Describes a plan for forming a `Clue`.

func (*CluePlan) Descriptor

func (*CluePlan) Descriptor() ([]byte, []int)

func (*CluePlan) GetAddress

func (m *CluePlan) GetAddress() *v1alpha19.Address

func (*CluePlan) GetPrecisionBits

func (m *CluePlan) GetPrecisionBits() uint64

func (*CluePlan) GetRseed

func (m *CluePlan) GetRseed() []byte

func (*CluePlan) Marshal

func (m *CluePlan) Marshal() (dAtA []byte, err error)

func (*CluePlan) MarshalTo

func (m *CluePlan) MarshalTo(dAtA []byte) (int, error)

func (*CluePlan) MarshalToSizedBuffer

func (m *CluePlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CluePlan) ProtoMessage

func (*CluePlan) ProtoMessage()

func (*CluePlan) Reset

func (m *CluePlan) Reset()

func (*CluePlan) Size

func (m *CluePlan) Size() (n int)

func (*CluePlan) String

func (m *CluePlan) String() string

func (*CluePlan) Unmarshal

func (m *CluePlan) Unmarshal(dAtA []byte) error

func (*CluePlan) XXX_DiscardUnknown

func (m *CluePlan) XXX_DiscardUnknown()

func (*CluePlan) XXX_Marshal

func (m *CluePlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CluePlan) XXX_Merge

func (m *CluePlan) XXX_Merge(src proto.Message)

func (*CluePlan) XXX_Size

func (m *CluePlan) XXX_Size() int

func (*CluePlan) XXX_Unmarshal

func (m *CluePlan) XXX_Unmarshal(b []byte) error

type DetectionData

type DetectionData struct {
	// A list of clues for use with Fuzzy Message Detection.
	FmdClues []*v1alpha13.Clue `protobuf:"bytes,4,rep,name=fmd_clues,json=fmdClues,proto3" json:"fmd_clues,omitempty"`
}

Detection data used by a detection server performing Fuzzy Message Detection.

func (*DetectionData) Descriptor

func (*DetectionData) Descriptor() ([]byte, []int)

func (*DetectionData) GetFmdClues

func (m *DetectionData) GetFmdClues() []*v1alpha13.Clue

func (*DetectionData) Marshal

func (m *DetectionData) Marshal() (dAtA []byte, err error)

func (*DetectionData) MarshalTo

func (m *DetectionData) MarshalTo(dAtA []byte) (int, error)

func (*DetectionData) MarshalToSizedBuffer

func (m *DetectionData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DetectionData) ProtoMessage

func (*DetectionData) ProtoMessage()

func (*DetectionData) Reset

func (m *DetectionData) Reset()

func (*DetectionData) Size

func (m *DetectionData) Size() (n int)

func (*DetectionData) String

func (m *DetectionData) String() string

func (*DetectionData) Unmarshal

func (m *DetectionData) Unmarshal(dAtA []byte) error

func (*DetectionData) XXX_DiscardUnknown

func (m *DetectionData) XXX_DiscardUnknown()

func (*DetectionData) XXX_Marshal

func (m *DetectionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DetectionData) XXX_Merge

func (m *DetectionData) XXX_Merge(src proto.Message)

func (*DetectionData) XXX_Size

func (m *DetectionData) XXX_Size() int

func (*DetectionData) XXX_Unmarshal

func (m *DetectionData) XXX_Unmarshal(b []byte) error

type DetectionDataPlan added in v2.5.0

type DetectionDataPlan struct {
	CluePlans []*CluePlan `protobuf:"bytes,5,rep,name=clue_plans,json=cluePlans,proto3" json:"clue_plans,omitempty"`
}

func (*DetectionDataPlan) Descriptor added in v2.5.0

func (*DetectionDataPlan) Descriptor() ([]byte, []int)

func (*DetectionDataPlan) GetCluePlans added in v2.5.0

func (m *DetectionDataPlan) GetCluePlans() []*CluePlan

func (*DetectionDataPlan) Marshal added in v2.5.0

func (m *DetectionDataPlan) Marshal() (dAtA []byte, err error)

func (*DetectionDataPlan) MarshalTo added in v2.5.0

func (m *DetectionDataPlan) MarshalTo(dAtA []byte) (int, error)

func (*DetectionDataPlan) MarshalToSizedBuffer added in v2.5.0

func (m *DetectionDataPlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DetectionDataPlan) ProtoMessage added in v2.5.0

func (*DetectionDataPlan) ProtoMessage()

func (*DetectionDataPlan) Reset added in v2.5.0

func (m *DetectionDataPlan) Reset()

func (*DetectionDataPlan) Size added in v2.5.0

func (m *DetectionDataPlan) Size() (n int)

func (*DetectionDataPlan) String added in v2.5.0

func (m *DetectionDataPlan) String() string

func (*DetectionDataPlan) Unmarshal added in v2.5.0

func (m *DetectionDataPlan) Unmarshal(dAtA []byte) error

func (*DetectionDataPlan) XXX_DiscardUnknown added in v2.5.0

func (m *DetectionDataPlan) XXX_DiscardUnknown()

func (*DetectionDataPlan) XXX_Marshal added in v2.5.0

func (m *DetectionDataPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DetectionDataPlan) XXX_Merge added in v2.5.0

func (m *DetectionDataPlan) XXX_Merge(src proto.Message)

func (*DetectionDataPlan) XXX_Size added in v2.5.0

func (m *DetectionDataPlan) XXX_Size() int

func (*DetectionDataPlan) XXX_Unmarshal added in v2.5.0

func (m *DetectionDataPlan) XXX_Unmarshal(b []byte) error

type MemoCiphertext

type MemoCiphertext struct {
	// The encrypted data. 528 bytes.
	Inner []byte `protobuf:"bytes,1,opt,name=inner,proto3" json:"inner,omitempty"`
}

The encrypted memo data describing information about the purpose of a transaction.

func (*MemoCiphertext) Descriptor

func (*MemoCiphertext) Descriptor() ([]byte, []int)

func (*MemoCiphertext) GetInner

func (m *MemoCiphertext) GetInner() []byte

func (*MemoCiphertext) Marshal

func (m *MemoCiphertext) Marshal() (dAtA []byte, err error)

func (*MemoCiphertext) MarshalTo

func (m *MemoCiphertext) MarshalTo(dAtA []byte) (int, error)

func (*MemoCiphertext) MarshalToSizedBuffer

func (m *MemoCiphertext) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoCiphertext) ProtoMessage

func (*MemoCiphertext) ProtoMessage()

func (*MemoCiphertext) Reset

func (m *MemoCiphertext) Reset()

func (*MemoCiphertext) Size

func (m *MemoCiphertext) Size() (n int)

func (*MemoCiphertext) String

func (m *MemoCiphertext) String() string

func (*MemoCiphertext) Unmarshal

func (m *MemoCiphertext) Unmarshal(dAtA []byte) error

func (*MemoCiphertext) XXX_DiscardUnknown

func (m *MemoCiphertext) XXX_DiscardUnknown()

func (*MemoCiphertext) XXX_Marshal

func (m *MemoCiphertext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoCiphertext) XXX_Merge

func (m *MemoCiphertext) XXX_Merge(src proto.Message)

func (*MemoCiphertext) XXX_Size

func (m *MemoCiphertext) XXX_Size() int

func (*MemoCiphertext) XXX_Unmarshal

func (m *MemoCiphertext) XXX_Unmarshal(b []byte) error

type MemoPlaintext

type MemoPlaintext struct {
	// The sender's return address.
	//
	// This should always be a valid address; the sender is responsible for ensuring
	// that if the receiver returns funds to this address, they will not be lost.
	ReturnAddress *v1alpha19.Address `protobuf:"bytes,1,opt,name=return_address,json=returnAddress,proto3" json:"return_address,omitempty"`
	// Free-form text, up to 432 bytes long.
	Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
}

The plaintext describing information about the purpose of a transaction.

func (*MemoPlaintext) Descriptor

func (*MemoPlaintext) Descriptor() ([]byte, []int)

func (*MemoPlaintext) GetReturnAddress added in v2.5.0

func (m *MemoPlaintext) GetReturnAddress() *v1alpha19.Address

func (*MemoPlaintext) GetText

func (m *MemoPlaintext) GetText() string

func (*MemoPlaintext) Marshal

func (m *MemoPlaintext) Marshal() (dAtA []byte, err error)

func (*MemoPlaintext) MarshalTo

func (m *MemoPlaintext) MarshalTo(dAtA []byte) (int, error)

func (*MemoPlaintext) MarshalToSizedBuffer

func (m *MemoPlaintext) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoPlaintext) ProtoMessage

func (*MemoPlaintext) ProtoMessage()

func (*MemoPlaintext) Reset

func (m *MemoPlaintext) Reset()

func (*MemoPlaintext) Size

func (m *MemoPlaintext) Size() (n int)

func (*MemoPlaintext) String

func (m *MemoPlaintext) String() string

func (*MemoPlaintext) Unmarshal

func (m *MemoPlaintext) Unmarshal(dAtA []byte) error

func (*MemoPlaintext) XXX_DiscardUnknown

func (m *MemoPlaintext) XXX_DiscardUnknown()

func (*MemoPlaintext) XXX_Marshal

func (m *MemoPlaintext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoPlaintext) XXX_Merge

func (m *MemoPlaintext) XXX_Merge(src proto.Message)

func (*MemoPlaintext) XXX_Size

func (m *MemoPlaintext) XXX_Size() int

func (*MemoPlaintext) XXX_Unmarshal

func (m *MemoPlaintext) XXX_Unmarshal(b []byte) error

type MemoPlaintextView added in v2.5.0

type MemoPlaintextView struct {
	ReturnAddress *v1alpha19.AddressView `protobuf:"bytes,1,opt,name=return_address,json=returnAddress,proto3" json:"return_address,omitempty"`
	Text          string                 `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
}

func (*MemoPlaintextView) Descriptor added in v2.5.0

func (*MemoPlaintextView) Descriptor() ([]byte, []int)

func (*MemoPlaintextView) GetReturnAddress added in v2.5.0

func (m *MemoPlaintextView) GetReturnAddress() *v1alpha19.AddressView

func (*MemoPlaintextView) GetText added in v2.5.0

func (m *MemoPlaintextView) GetText() string

func (*MemoPlaintextView) Marshal added in v2.5.0

func (m *MemoPlaintextView) Marshal() (dAtA []byte, err error)

func (*MemoPlaintextView) MarshalTo added in v2.5.0

func (m *MemoPlaintextView) MarshalTo(dAtA []byte) (int, error)

func (*MemoPlaintextView) MarshalToSizedBuffer added in v2.5.0

func (m *MemoPlaintextView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoPlaintextView) ProtoMessage added in v2.5.0

func (*MemoPlaintextView) ProtoMessage()

func (*MemoPlaintextView) Reset added in v2.5.0

func (m *MemoPlaintextView) Reset()

func (*MemoPlaintextView) Size added in v2.5.0

func (m *MemoPlaintextView) Size() (n int)

func (*MemoPlaintextView) String added in v2.5.0

func (m *MemoPlaintextView) String() string

func (*MemoPlaintextView) Unmarshal added in v2.5.0

func (m *MemoPlaintextView) Unmarshal(dAtA []byte) error

func (*MemoPlaintextView) XXX_DiscardUnknown added in v2.5.0

func (m *MemoPlaintextView) XXX_DiscardUnknown()

func (*MemoPlaintextView) XXX_Marshal added in v2.5.0

func (m *MemoPlaintextView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoPlaintextView) XXX_Merge added in v2.5.0

func (m *MemoPlaintextView) XXX_Merge(src proto.Message)

func (*MemoPlaintextView) XXX_Size added in v2.5.0

func (m *MemoPlaintextView) XXX_Size() int

func (*MemoPlaintextView) XXX_Unmarshal added in v2.5.0

func (m *MemoPlaintextView) XXX_Unmarshal(b []byte) error

type MemoPlan

type MemoPlan struct {
	// The plaintext.
	Plaintext *MemoPlaintext `protobuf:"bytes,1,opt,name=plaintext,proto3" json:"plaintext,omitempty"`
	// The key to use to encrypt the memo.
	Key []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
}

Describes a plan for forming the transaction memo.

func (*MemoPlan) Descriptor

func (*MemoPlan) Descriptor() ([]byte, []int)

func (*MemoPlan) GetKey

func (m *MemoPlan) GetKey() []byte

func (*MemoPlan) GetPlaintext

func (m *MemoPlan) GetPlaintext() *MemoPlaintext

func (*MemoPlan) Marshal

func (m *MemoPlan) Marshal() (dAtA []byte, err error)

func (*MemoPlan) MarshalTo

func (m *MemoPlan) MarshalTo(dAtA []byte) (int, error)

func (*MemoPlan) MarshalToSizedBuffer

func (m *MemoPlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoPlan) ProtoMessage

func (*MemoPlan) ProtoMessage()

func (*MemoPlan) Reset

func (m *MemoPlan) Reset()

func (*MemoPlan) Size

func (m *MemoPlan) Size() (n int)

func (*MemoPlan) String

func (m *MemoPlan) String() string

func (*MemoPlan) Unmarshal

func (m *MemoPlan) Unmarshal(dAtA []byte) error

func (*MemoPlan) XXX_DiscardUnknown

func (m *MemoPlan) XXX_DiscardUnknown()

func (*MemoPlan) XXX_Marshal

func (m *MemoPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoPlan) XXX_Merge

func (m *MemoPlan) XXX_Merge(src proto.Message)

func (*MemoPlan) XXX_Size

func (m *MemoPlan) XXX_Size() int

func (*MemoPlan) XXX_Unmarshal

func (m *MemoPlan) XXX_Unmarshal(b []byte) error

type MemoView

type MemoView struct {
	// Types that are valid to be assigned to MemoView:
	//
	//	*MemoView_Visible_
	//	*MemoView_Opaque_
	MemoView isMemoView_MemoView `protobuf_oneof:"memo_view"`
}

func (*MemoView) Descriptor

func (*MemoView) Descriptor() ([]byte, []int)

func (*MemoView) GetMemoView

func (m *MemoView) GetMemoView() isMemoView_MemoView

func (*MemoView) GetOpaque

func (m *MemoView) GetOpaque() *MemoView_Opaque

func (*MemoView) GetVisible

func (m *MemoView) GetVisible() *MemoView_Visible

func (*MemoView) Marshal

func (m *MemoView) Marshal() (dAtA []byte, err error)

func (*MemoView) MarshalTo

func (m *MemoView) MarshalTo(dAtA []byte) (int, error)

func (*MemoView) MarshalToSizedBuffer

func (m *MemoView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoView) ProtoMessage

func (*MemoView) ProtoMessage()

func (*MemoView) Reset

func (m *MemoView) Reset()

func (*MemoView) Size

func (m *MemoView) Size() (n int)

func (*MemoView) String

func (m *MemoView) String() string

func (*MemoView) Unmarshal

func (m *MemoView) Unmarshal(dAtA []byte) error

func (*MemoView) XXX_DiscardUnknown

func (m *MemoView) XXX_DiscardUnknown()

func (*MemoView) XXX_Marshal

func (m *MemoView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoView) XXX_Merge

func (m *MemoView) XXX_Merge(src proto.Message)

func (*MemoView) XXX_OneofWrappers

func (*MemoView) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*MemoView) XXX_Size

func (m *MemoView) XXX_Size() int

func (*MemoView) XXX_Unmarshal

func (m *MemoView) XXX_Unmarshal(b []byte) error

type MemoView_Opaque

type MemoView_Opaque struct {
	Ciphertext *MemoCiphertext `protobuf:"bytes,1,opt,name=ciphertext,proto3" json:"ciphertext,omitempty"`
}

func (*MemoView_Opaque) Descriptor

func (*MemoView_Opaque) Descriptor() ([]byte, []int)

func (*MemoView_Opaque) GetCiphertext

func (m *MemoView_Opaque) GetCiphertext() *MemoCiphertext

func (*MemoView_Opaque) Marshal

func (m *MemoView_Opaque) Marshal() (dAtA []byte, err error)

func (*MemoView_Opaque) MarshalTo

func (m *MemoView_Opaque) MarshalTo(dAtA []byte) (int, error)

func (*MemoView_Opaque) MarshalToSizedBuffer

func (m *MemoView_Opaque) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoView_Opaque) ProtoMessage

func (*MemoView_Opaque) ProtoMessage()

func (*MemoView_Opaque) Reset

func (m *MemoView_Opaque) Reset()

func (*MemoView_Opaque) Size

func (m *MemoView_Opaque) Size() (n int)

func (*MemoView_Opaque) String

func (m *MemoView_Opaque) String() string

func (*MemoView_Opaque) Unmarshal

func (m *MemoView_Opaque) Unmarshal(dAtA []byte) error

func (*MemoView_Opaque) XXX_DiscardUnknown

func (m *MemoView_Opaque) XXX_DiscardUnknown()

func (*MemoView_Opaque) XXX_Marshal

func (m *MemoView_Opaque) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoView_Opaque) XXX_Merge

func (m *MemoView_Opaque) XXX_Merge(src proto.Message)

func (*MemoView_Opaque) XXX_Size

func (m *MemoView_Opaque) XXX_Size() int

func (*MemoView_Opaque) XXX_Unmarshal

func (m *MemoView_Opaque) XXX_Unmarshal(b []byte) error

type MemoView_Opaque_

type MemoView_Opaque_ struct {
	Opaque *MemoView_Opaque `protobuf:"bytes,2,opt,name=opaque,proto3,oneof" json:"opaque,omitempty"`
}

func (*MemoView_Opaque_) MarshalTo

func (m *MemoView_Opaque_) MarshalTo(dAtA []byte) (int, error)

func (*MemoView_Opaque_) MarshalToSizedBuffer

func (m *MemoView_Opaque_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoView_Opaque_) Size

func (m *MemoView_Opaque_) Size() (n int)

type MemoView_Visible

type MemoView_Visible struct {
	Ciphertext *MemoCiphertext    `protobuf:"bytes,1,opt,name=ciphertext,proto3" json:"ciphertext,omitempty"`
	Plaintext  *MemoPlaintextView `protobuf:"bytes,2,opt,name=plaintext,proto3" json:"plaintext,omitempty"`
}

func (*MemoView_Visible) Descriptor

func (*MemoView_Visible) Descriptor() ([]byte, []int)

func (*MemoView_Visible) GetCiphertext

func (m *MemoView_Visible) GetCiphertext() *MemoCiphertext

func (*MemoView_Visible) GetPlaintext

func (m *MemoView_Visible) GetPlaintext() *MemoPlaintextView

func (*MemoView_Visible) Marshal

func (m *MemoView_Visible) Marshal() (dAtA []byte, err error)

func (*MemoView_Visible) MarshalTo

func (m *MemoView_Visible) MarshalTo(dAtA []byte) (int, error)

func (*MemoView_Visible) MarshalToSizedBuffer

func (m *MemoView_Visible) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoView_Visible) ProtoMessage

func (*MemoView_Visible) ProtoMessage()

func (*MemoView_Visible) Reset

func (m *MemoView_Visible) Reset()

func (*MemoView_Visible) Size

func (m *MemoView_Visible) Size() (n int)

func (*MemoView_Visible) String

func (m *MemoView_Visible) String() string

func (*MemoView_Visible) Unmarshal

func (m *MemoView_Visible) Unmarshal(dAtA []byte) error

func (*MemoView_Visible) XXX_DiscardUnknown

func (m *MemoView_Visible) XXX_DiscardUnknown()

func (*MemoView_Visible) XXX_Marshal

func (m *MemoView_Visible) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoView_Visible) XXX_Merge

func (m *MemoView_Visible) XXX_Merge(src proto.Message)

func (*MemoView_Visible) XXX_Size

func (m *MemoView_Visible) XXX_Size() int

func (*MemoView_Visible) XXX_Unmarshal

func (m *MemoView_Visible) XXX_Unmarshal(b []byte) error

type MemoView_Visible_

type MemoView_Visible_ struct {
	Visible *MemoView_Visible `protobuf:"bytes,1,opt,name=visible,proto3,oneof" json:"visible,omitempty"`
}

func (*MemoView_Visible_) MarshalTo

func (m *MemoView_Visible_) MarshalTo(dAtA []byte) (int, error)

func (*MemoView_Visible_) MarshalToSizedBuffer

func (m *MemoView_Visible_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoView_Visible_) Size

func (m *MemoView_Visible_) Size() (n int)

type NullifierWithNote

type NullifierWithNote struct {
	Nullifier *v1alpha112.Nullifier `protobuf:"bytes,1,opt,name=nullifier,proto3" json:"nullifier,omitempty"`
	Note      *v1alpha14.Note       `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
}

func (*NullifierWithNote) Descriptor

func (*NullifierWithNote) Descriptor() ([]byte, []int)

func (*NullifierWithNote) GetNote

func (m *NullifierWithNote) GetNote() *v1alpha14.Note

func (*NullifierWithNote) GetNullifier

func (m *NullifierWithNote) GetNullifier() *v1alpha112.Nullifier

func (*NullifierWithNote) Marshal

func (m *NullifierWithNote) Marshal() (dAtA []byte, err error)

func (*NullifierWithNote) MarshalTo

func (m *NullifierWithNote) MarshalTo(dAtA []byte) (int, error)

func (*NullifierWithNote) MarshalToSizedBuffer

func (m *NullifierWithNote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NullifierWithNote) ProtoMessage

func (*NullifierWithNote) ProtoMessage()

func (*NullifierWithNote) Reset

func (m *NullifierWithNote) Reset()

func (*NullifierWithNote) Size

func (m *NullifierWithNote) Size() (n int)

func (*NullifierWithNote) String

func (m *NullifierWithNote) String() string

func (*NullifierWithNote) Unmarshal

func (m *NullifierWithNote) Unmarshal(dAtA []byte) error

func (*NullifierWithNote) XXX_DiscardUnknown

func (m *NullifierWithNote) XXX_DiscardUnknown()

func (*NullifierWithNote) XXX_Marshal

func (m *NullifierWithNote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NullifierWithNote) XXX_Merge

func (m *NullifierWithNote) XXX_Merge(src proto.Message)

func (*NullifierWithNote) XXX_Size

func (m *NullifierWithNote) XXX_Size() int

func (*NullifierWithNote) XXX_Unmarshal

func (m *NullifierWithNote) XXX_Unmarshal(b []byte) error

type PayloadKeyWithCommitment

type PayloadKeyWithCommitment struct {
	PayloadKey *v1alpha19.PayloadKey      `protobuf:"bytes,1,opt,name=payload_key,json=payloadKey,proto3" json:"payload_key,omitempty"`
	Commitment *v1alpha11.StateCommitment `protobuf:"bytes,2,opt,name=commitment,proto3" json:"commitment,omitempty"`
}

func (*PayloadKeyWithCommitment) Descriptor

func (*PayloadKeyWithCommitment) Descriptor() ([]byte, []int)

func (*PayloadKeyWithCommitment) GetCommitment

func (*PayloadKeyWithCommitment) GetPayloadKey

func (m *PayloadKeyWithCommitment) GetPayloadKey() *v1alpha19.PayloadKey

func (*PayloadKeyWithCommitment) Marshal

func (m *PayloadKeyWithCommitment) Marshal() (dAtA []byte, err error)

func (*PayloadKeyWithCommitment) MarshalTo

func (m *PayloadKeyWithCommitment) MarshalTo(dAtA []byte) (int, error)

func (*PayloadKeyWithCommitment) MarshalToSizedBuffer

func (m *PayloadKeyWithCommitment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PayloadKeyWithCommitment) ProtoMessage

func (*PayloadKeyWithCommitment) ProtoMessage()

func (*PayloadKeyWithCommitment) Reset

func (m *PayloadKeyWithCommitment) Reset()

func (*PayloadKeyWithCommitment) Size

func (m *PayloadKeyWithCommitment) Size() (n int)

func (*PayloadKeyWithCommitment) String

func (m *PayloadKeyWithCommitment) String() string

func (*PayloadKeyWithCommitment) Unmarshal

func (m *PayloadKeyWithCommitment) Unmarshal(dAtA []byte) error

func (*PayloadKeyWithCommitment) XXX_DiscardUnknown

func (m *PayloadKeyWithCommitment) XXX_DiscardUnknown()

func (*PayloadKeyWithCommitment) XXX_Marshal

func (m *PayloadKeyWithCommitment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PayloadKeyWithCommitment) XXX_Merge

func (m *PayloadKeyWithCommitment) XXX_Merge(src proto.Message)

func (*PayloadKeyWithCommitment) XXX_Size

func (m *PayloadKeyWithCommitment) XXX_Size() int

func (*PayloadKeyWithCommitment) XXX_Unmarshal

func (m *PayloadKeyWithCommitment) XXX_Unmarshal(b []byte) error

type Transaction

type Transaction struct {
	Body *TransactionBody `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
	// The binding signature is stored separately from the transaction body that it signs.
	BindingSig *v1alpha1.BindingSignature `protobuf:"bytes,2,opt,name=binding_sig,json=bindingSig,proto3" json:"binding_sig,omitempty"`
	// The root of some previous state of the state commitment tree, used as an anchor for all
	// ZK state transition proofs.
	Anchor *v1alpha11.MerkleRoot `protobuf:"bytes,3,opt,name=anchor,proto3" json:"anchor,omitempty"`
}

A Penumbra transaction.

func (*Transaction) Descriptor

func (*Transaction) Descriptor() ([]byte, []int)

func (*Transaction) GetAnchor

func (m *Transaction) GetAnchor() *v1alpha11.MerkleRoot

func (*Transaction) GetBindingSig

func (m *Transaction) GetBindingSig() *v1alpha1.BindingSignature

func (*Transaction) GetBody

func (m *Transaction) GetBody() *TransactionBody

func (*Transaction) Marshal

func (m *Transaction) Marshal() (dAtA []byte, err error)

func (*Transaction) MarshalTo

func (m *Transaction) MarshalTo(dAtA []byte) (int, error)

func (*Transaction) MarshalToSizedBuffer

func (m *Transaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Transaction) ProtoMessage

func (*Transaction) ProtoMessage()

func (*Transaction) Reset

func (m *Transaction) Reset()

func (*Transaction) Size

func (m *Transaction) Size() (n int)

func (*Transaction) String

func (m *Transaction) String() string

func (*Transaction) Unmarshal

func (m *Transaction) Unmarshal(dAtA []byte) error

func (*Transaction) XXX_DiscardUnknown

func (m *Transaction) XXX_DiscardUnknown()

func (*Transaction) XXX_Marshal

func (m *Transaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Transaction) XXX_Merge

func (m *Transaction) XXX_Merge(src proto.Message)

func (*Transaction) XXX_Size

func (m *Transaction) XXX_Size() int

func (*Transaction) XXX_Unmarshal

func (m *Transaction) XXX_Unmarshal(b []byte) error

type TransactionBody

type TransactionBody struct {
	// A list of actions (state changes) performed by this transaction.
	Actions []*Action `protobuf:"bytes,1,rep,name=actions,proto3" json:"actions,omitempty"`
	// Parameters determining if a transaction should be accepted by this chain.
	TransactionParameters *TransactionParameters `protobuf:"bytes,2,opt,name=transaction_parameters,json=transactionParameters,proto3" json:"transaction_parameters,omitempty"`
	// Detection data for use with Fuzzy Message Detection
	DetectionData *DetectionData `protobuf:"bytes,4,opt,name=detection_data,json=detectionData,proto3" json:"detection_data,omitempty"`
	// The encrypted memo for this transaction.
	//
	// This field will be present if and only if the transaction has outputs.
	Memo *MemoCiphertext `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
}

The body of a transaction.

func (*TransactionBody) Descriptor

func (*TransactionBody) Descriptor() ([]byte, []int)

func (*TransactionBody) GetActions

func (m *TransactionBody) GetActions() []*Action

func (*TransactionBody) GetDetectionData

func (m *TransactionBody) GetDetectionData() *DetectionData

func (*TransactionBody) GetMemo added in v2.5.0

func (m *TransactionBody) GetMemo() *MemoCiphertext

func (*TransactionBody) GetTransactionParameters

func (m *TransactionBody) GetTransactionParameters() *TransactionParameters

func (*TransactionBody) Marshal

func (m *TransactionBody) Marshal() (dAtA []byte, err error)

func (*TransactionBody) MarshalTo

func (m *TransactionBody) MarshalTo(dAtA []byte) (int, error)

func (*TransactionBody) MarshalToSizedBuffer

func (m *TransactionBody) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionBody) ProtoMessage

func (*TransactionBody) ProtoMessage()

func (*TransactionBody) Reset

func (m *TransactionBody) Reset()

func (*TransactionBody) Size

func (m *TransactionBody) Size() (n int)

func (*TransactionBody) String

func (m *TransactionBody) String() string

func (*TransactionBody) Unmarshal

func (m *TransactionBody) Unmarshal(dAtA []byte) error

func (*TransactionBody) XXX_DiscardUnknown

func (m *TransactionBody) XXX_DiscardUnknown()

func (*TransactionBody) XXX_Marshal

func (m *TransactionBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionBody) XXX_Merge

func (m *TransactionBody) XXX_Merge(src proto.Message)

func (*TransactionBody) XXX_Size

func (m *TransactionBody) XXX_Size() int

func (*TransactionBody) XXX_Unmarshal

func (m *TransactionBody) XXX_Unmarshal(b []byte) error

type TransactionBodyView

type TransactionBodyView struct {
	// A list views into of actions (state changes) performed by this transaction.
	ActionViews []*ActionView `protobuf:"bytes,1,rep,name=action_views,json=actionViews,proto3" json:"action_views,omitempty"`
	// Transaction parameters.
	TransactionParameters *TransactionParameters `protobuf:"bytes,2,opt,name=transaction_parameters,json=transactionParameters,proto3" json:"transaction_parameters,omitempty"`
	// The detection data in this transaction, only populated if
	// there are outputs in the actions of this transaction.
	DetectionData *DetectionData `protobuf:"bytes,4,opt,name=detection_data,json=detectionData,proto3" json:"detection_data,omitempty"`
	// An optional view of a transaction memo. It will only be populated if there are
	// outputs in the actions of this transaction.
	MemoView *MemoView `protobuf:"bytes,5,opt,name=memo_view,json=memoView,proto3" json:"memo_view,omitempty"`
}

func (*TransactionBodyView) Descriptor

func (*TransactionBodyView) Descriptor() ([]byte, []int)

func (*TransactionBodyView) GetActionViews

func (m *TransactionBodyView) GetActionViews() []*ActionView

func (*TransactionBodyView) GetDetectionData

func (m *TransactionBodyView) GetDetectionData() *DetectionData

func (*TransactionBodyView) GetMemoView

func (m *TransactionBodyView) GetMemoView() *MemoView

func (*TransactionBodyView) GetTransactionParameters

func (m *TransactionBodyView) GetTransactionParameters() *TransactionParameters

func (*TransactionBodyView) Marshal

func (m *TransactionBodyView) Marshal() (dAtA []byte, err error)

func (*TransactionBodyView) MarshalTo

func (m *TransactionBodyView) MarshalTo(dAtA []byte) (int, error)

func (*TransactionBodyView) MarshalToSizedBuffer

func (m *TransactionBodyView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionBodyView) ProtoMessage

func (*TransactionBodyView) ProtoMessage()

func (*TransactionBodyView) Reset

func (m *TransactionBodyView) Reset()

func (*TransactionBodyView) Size

func (m *TransactionBodyView) Size() (n int)

func (*TransactionBodyView) String

func (m *TransactionBodyView) String() string

func (*TransactionBodyView) Unmarshal

func (m *TransactionBodyView) Unmarshal(dAtA []byte) error

func (*TransactionBodyView) XXX_DiscardUnknown

func (m *TransactionBodyView) XXX_DiscardUnknown()

func (*TransactionBodyView) XXX_Marshal

func (m *TransactionBodyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionBodyView) XXX_Merge

func (m *TransactionBodyView) XXX_Merge(src proto.Message)

func (*TransactionBodyView) XXX_Size

func (m *TransactionBodyView) XXX_Size() int

func (*TransactionBodyView) XXX_Unmarshal

func (m *TransactionBodyView) XXX_Unmarshal(b []byte) error

type TransactionParameters

type TransactionParameters struct {
	// The maximum height that this transaction can be included in the chain.
	//
	// If zero, there is no maximum.
	ExpiryHeight uint64 `protobuf:"varint,1,opt,name=expiry_height,json=expiryHeight,proto3" json:"expiry_height,omitempty"`
	// The chain this transaction is intended for.  Including this prevents
	// replaying a transaction on one chain onto a different chain.
	ChainId string `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The transaction fee.
	Fee *v1alpha12.Fee `protobuf:"bytes,3,opt,name=fee,proto3" json:"fee,omitempty"`
}

The parameters determining if a transaction should be accepted by the chain.

func (*TransactionParameters) Descriptor

func (*TransactionParameters) Descriptor() ([]byte, []int)

func (*TransactionParameters) GetChainId

func (m *TransactionParameters) GetChainId() string

func (*TransactionParameters) GetExpiryHeight

func (m *TransactionParameters) GetExpiryHeight() uint64

func (*TransactionParameters) GetFee added in v2.5.0

func (m *TransactionParameters) GetFee() *v1alpha12.Fee

func (*TransactionParameters) Marshal

func (m *TransactionParameters) Marshal() (dAtA []byte, err error)

func (*TransactionParameters) MarshalTo

func (m *TransactionParameters) MarshalTo(dAtA []byte) (int, error)

func (*TransactionParameters) MarshalToSizedBuffer

func (m *TransactionParameters) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionParameters) ProtoMessage

func (*TransactionParameters) ProtoMessage()

func (*TransactionParameters) Reset

func (m *TransactionParameters) Reset()

func (*TransactionParameters) Size

func (m *TransactionParameters) Size() (n int)

func (*TransactionParameters) String

func (m *TransactionParameters) String() string

func (*TransactionParameters) Unmarshal

func (m *TransactionParameters) Unmarshal(dAtA []byte) error

func (*TransactionParameters) XXX_DiscardUnknown

func (m *TransactionParameters) XXX_DiscardUnknown()

func (*TransactionParameters) XXX_Marshal

func (m *TransactionParameters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionParameters) XXX_Merge

func (m *TransactionParameters) XXX_Merge(src proto.Message)

func (*TransactionParameters) XXX_Size

func (m *TransactionParameters) XXX_Size() int

func (*TransactionParameters) XXX_Unmarshal

func (m *TransactionParameters) XXX_Unmarshal(b []byte) error

type TransactionPerspective

type TransactionPerspective struct {
	PayloadKeys     []*PayloadKeyWithCommitment `protobuf:"bytes,1,rep,name=payload_keys,json=payloadKeys,proto3" json:"payload_keys,omitempty"`
	SpendNullifiers []*NullifierWithNote        `protobuf:"bytes,2,rep,name=spend_nullifiers,json=spendNullifiers,proto3" json:"spend_nullifiers,omitempty"`
	// The openings of note commitments referred to in the transaction
	// but not included in the transaction.
	AdviceNotes []*v1alpha14.Note `protobuf:"bytes,3,rep,name=advice_notes,json=adviceNotes,proto3" json:"advice_notes,omitempty"`
	// Any relevant address views.
	AddressViews []*v1alpha19.AddressView `protobuf:"bytes,4,rep,name=address_views,json=addressViews,proto3" json:"address_views,omitempty"`
	// Any relevant denoms for viewed assets.
	Denoms []*v1alpha110.DenomMetadata `protobuf:"bytes,5,rep,name=denoms,proto3" json:"denoms,omitempty"`
	// The transaction ID associated with this TransactionPerspective
	TransactionId *v1alpha111.TransactionId `protobuf:"bytes,6,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"`
}

A transaction perspective is a bundle of key material and commitment openings that allow generating a view of a transaction from that perspective.

func (*TransactionPerspective) Descriptor

func (*TransactionPerspective) Descriptor() ([]byte, []int)

func (*TransactionPerspective) GetAddressViews

func (m *TransactionPerspective) GetAddressViews() []*v1alpha19.AddressView

func (*TransactionPerspective) GetAdviceNotes

func (m *TransactionPerspective) GetAdviceNotes() []*v1alpha14.Note

func (*TransactionPerspective) GetDenoms

func (*TransactionPerspective) GetPayloadKeys

func (m *TransactionPerspective) GetPayloadKeys() []*PayloadKeyWithCommitment

func (*TransactionPerspective) GetSpendNullifiers

func (m *TransactionPerspective) GetSpendNullifiers() []*NullifierWithNote

func (*TransactionPerspective) GetTransactionId

func (m *TransactionPerspective) GetTransactionId() *v1alpha111.TransactionId

func (*TransactionPerspective) Marshal

func (m *TransactionPerspective) Marshal() (dAtA []byte, err error)

func (*TransactionPerspective) MarshalTo

func (m *TransactionPerspective) MarshalTo(dAtA []byte) (int, error)

func (*TransactionPerspective) MarshalToSizedBuffer

func (m *TransactionPerspective) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionPerspective) ProtoMessage

func (*TransactionPerspective) ProtoMessage()

func (*TransactionPerspective) Reset

func (m *TransactionPerspective) Reset()

func (*TransactionPerspective) Size

func (m *TransactionPerspective) Size() (n int)

func (*TransactionPerspective) String

func (m *TransactionPerspective) String() string

func (*TransactionPerspective) Unmarshal

func (m *TransactionPerspective) Unmarshal(dAtA []byte) error

func (*TransactionPerspective) XXX_DiscardUnknown

func (m *TransactionPerspective) XXX_DiscardUnknown()

func (*TransactionPerspective) XXX_Marshal

func (m *TransactionPerspective) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionPerspective) XXX_Merge

func (m *TransactionPerspective) XXX_Merge(src proto.Message)

func (*TransactionPerspective) XXX_Size

func (m *TransactionPerspective) XXX_Size() int

func (*TransactionPerspective) XXX_Unmarshal

func (m *TransactionPerspective) XXX_Unmarshal(b []byte) error

type TransactionPlan

type TransactionPlan struct {
	// The sequence of actions planned for this transaction.
	Actions []*ActionPlan `protobuf:"bytes,1,rep,name=actions,proto3" json:"actions,omitempty"`
	// Parameters determining if a transaction should be accepted by this chain.
	TransactionParameters *TransactionParameters `protobuf:"bytes,2,opt,name=transaction_parameters,json=transactionParameters,proto3" json:"transaction_parameters,omitempty"`
	// Detection data for use with Fuzzy Message Detection
	DetectionData *DetectionDataPlan `protobuf:"bytes,4,opt,name=detection_data,json=detectionData,proto3" json:"detection_data,omitempty"`
	// The memo plan for this transaction.
	Memo *MemoPlan `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
}

Describes a planned transaction. Permits clients to prepare a transaction prior submission, so that a user can review it prior to authorizing its execution.

The `TransactionPlan` is a fully determined bundle binding all of a transaction's effects. The only thing it does not include is the witness data used for proving.

func (*TransactionPlan) Descriptor

func (*TransactionPlan) Descriptor() ([]byte, []int)

func (*TransactionPlan) GetActions

func (m *TransactionPlan) GetActions() []*ActionPlan

func (*TransactionPlan) GetDetectionData added in v2.5.0

func (m *TransactionPlan) GetDetectionData() *DetectionDataPlan

func (*TransactionPlan) GetMemo added in v2.5.0

func (m *TransactionPlan) GetMemo() *MemoPlan

func (*TransactionPlan) GetTransactionParameters added in v2.5.0

func (m *TransactionPlan) GetTransactionParameters() *TransactionParameters

func (*TransactionPlan) Marshal

func (m *TransactionPlan) Marshal() (dAtA []byte, err error)

func (*TransactionPlan) MarshalTo

func (m *TransactionPlan) MarshalTo(dAtA []byte) (int, error)

func (*TransactionPlan) MarshalToSizedBuffer

func (m *TransactionPlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionPlan) ProtoMessage

func (*TransactionPlan) ProtoMessage()

func (*TransactionPlan) Reset

func (m *TransactionPlan) Reset()

func (*TransactionPlan) Size

func (m *TransactionPlan) Size() (n int)

func (*TransactionPlan) String

func (m *TransactionPlan) String() string

func (*TransactionPlan) Unmarshal

func (m *TransactionPlan) Unmarshal(dAtA []byte) error

func (*TransactionPlan) XXX_DiscardUnknown

func (m *TransactionPlan) XXX_DiscardUnknown()

func (*TransactionPlan) XXX_Marshal

func (m *TransactionPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionPlan) XXX_Merge

func (m *TransactionPlan) XXX_Merge(src proto.Message)

func (*TransactionPlan) XXX_Size

func (m *TransactionPlan) XXX_Size() int

func (*TransactionPlan) XXX_Unmarshal

func (m *TransactionPlan) XXX_Unmarshal(b []byte) error

type TransactionView

type TransactionView struct {
	// View of the transaction body
	BodyView *TransactionBodyView `protobuf:"bytes,1,opt,name=body_view,json=bodyView,proto3" json:"body_view,omitempty"`
	// The binding signature is stored separately from the transaction body that it signs.
	BindingSig *v1alpha1.BindingSignature `protobuf:"bytes,2,opt,name=binding_sig,json=bindingSig,proto3" json:"binding_sig,omitempty"`
	// The root of some previous state of the state commitment tree, used as an anchor for all
	// ZK state transition proofs.
	Anchor *v1alpha11.MerkleRoot `protobuf:"bytes,3,opt,name=anchor,proto3" json:"anchor,omitempty"`
}

View of a Penumbra transaction.

func (*TransactionView) Descriptor

func (*TransactionView) Descriptor() ([]byte, []int)

func (*TransactionView) GetAnchor

func (m *TransactionView) GetAnchor() *v1alpha11.MerkleRoot

func (*TransactionView) GetBindingSig

func (m *TransactionView) GetBindingSig() *v1alpha1.BindingSignature

func (*TransactionView) GetBodyView

func (m *TransactionView) GetBodyView() *TransactionBodyView

func (*TransactionView) Marshal

func (m *TransactionView) Marshal() (dAtA []byte, err error)

func (*TransactionView) MarshalTo

func (m *TransactionView) MarshalTo(dAtA []byte) (int, error)

func (*TransactionView) MarshalToSizedBuffer

func (m *TransactionView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionView) ProtoMessage

func (*TransactionView) ProtoMessage()

func (*TransactionView) Reset

func (m *TransactionView) Reset()

func (*TransactionView) Size

func (m *TransactionView) Size() (n int)

func (*TransactionView) String

func (m *TransactionView) String() string

func (*TransactionView) Unmarshal

func (m *TransactionView) Unmarshal(dAtA []byte) error

func (*TransactionView) XXX_DiscardUnknown

func (m *TransactionView) XXX_DiscardUnknown()

func (*TransactionView) XXX_Marshal

func (m *TransactionView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionView) XXX_Merge

func (m *TransactionView) XXX_Merge(src proto.Message)

func (*TransactionView) XXX_Size

func (m *TransactionView) XXX_Size() int

func (*TransactionView) XXX_Unmarshal

func (m *TransactionView) XXX_Unmarshal(b []byte) error

type WitnessData

type WitnessData struct {
	// The anchor for the state transition proofs.
	Anchor *v1alpha11.MerkleRoot `protobuf:"bytes,1,opt,name=anchor,proto3" json:"anchor,omitempty"`
	// The auth paths for the notes the transaction spends, in the
	// same order as the spends in the transaction plan.
	StateCommitmentProofs []*v1alpha11.StateCommitmentProof `` /* 126-byte string literal not displayed */
}

The data required for proving when building a transaction from a plan.

func (*WitnessData) Descriptor

func (*WitnessData) Descriptor() ([]byte, []int)

func (*WitnessData) GetAnchor

func (m *WitnessData) GetAnchor() *v1alpha11.MerkleRoot

func (*WitnessData) GetStateCommitmentProofs

func (m *WitnessData) GetStateCommitmentProofs() []*v1alpha11.StateCommitmentProof

func (*WitnessData) Marshal

func (m *WitnessData) Marshal() (dAtA []byte, err error)

func (*WitnessData) MarshalTo

func (m *WitnessData) MarshalTo(dAtA []byte) (int, error)

func (*WitnessData) MarshalToSizedBuffer

func (m *WitnessData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*WitnessData) ProtoMessage

func (*WitnessData) ProtoMessage()

func (*WitnessData) Reset

func (m *WitnessData) Reset()

func (*WitnessData) Size

func (m *WitnessData) Size() (n int)

func (*WitnessData) String

func (m *WitnessData) String() string

func (*WitnessData) Unmarshal

func (m *WitnessData) Unmarshal(dAtA []byte) error

func (*WitnessData) XXX_DiscardUnknown

func (m *WitnessData) XXX_DiscardUnknown()

func (*WitnessData) XXX_Marshal

func (m *WitnessData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WitnessData) XXX_Merge

func (m *WitnessData) XXX_Merge(src proto.Message)

func (*WitnessData) XXX_Size

func (m *WitnessData) XXX_Size() int

func (*WitnessData) XXX_Unmarshal

func (m *WitnessData) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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