abci

package
v0.0.0-...-891b8cb Latest Latest
Warning

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

Go to latest
Published: Jul 31, 2022 License: MIT Imports: 16 Imported by: 0

Documentation

Overview

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var (
	CheckTxType_name = map[int32]string{
		0: "NEW",
		1: "RECHECK",
	}
	CheckTxType_value = map[string]int32{
		"NEW":     0,
		"RECHECK": 1,
	}
)

Enum value maps for CheckTxType.

View Source
var (
	EvidenceType_name = map[int32]string{
		0: "UNKNOWN",
		1: "DUPLICATE_VOTE",
		2: "LIGHT_CLIENT_ATTACK",
	}
	EvidenceType_value = map[string]int32{
		"UNKNOWN":             0,
		"DUPLICATE_VOTE":      1,
		"LIGHT_CLIENT_ATTACK": 2,
	}
)

Enum value maps for EvidenceType.

View Source
var (
	ResponseOfferSnapshot_Result_name = map[int32]string{
		0: "UNKNOWN",
		1: "ACCEPT",
		2: "ABORT",
		3: "REJECT",
		4: "REJECT_FORMAT",
		5: "REJECT_SENDER",
	}
	ResponseOfferSnapshot_Result_value = map[string]int32{
		"UNKNOWN":       0,
		"ACCEPT":        1,
		"ABORT":         2,
		"REJECT":        3,
		"REJECT_FORMAT": 4,
		"REJECT_SENDER": 5,
	}
)

Enum value maps for ResponseOfferSnapshot_Result.

View Source
var (
	ResponseApplySnapshotChunk_Result_name = map[int32]string{
		0: "UNKNOWN",
		1: "ACCEPT",
		2: "ABORT",
		3: "RETRY",
		4: "RETRY_SNAPSHOT",
		5: "REJECT_SNAPSHOT",
	}
	ResponseApplySnapshotChunk_Result_value = map[string]int32{
		"UNKNOWN":         0,
		"ACCEPT":          1,
		"ABORT":           2,
		"RETRY":           3,
		"RETRY_SNAPSHOT":  4,
		"REJECT_SNAPSHOT": 5,
	}
)

Enum value maps for ResponseApplySnapshotChunk_Result.

View Source
var ABCIApplication_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "tendermint.abci.ABCIApplication",
	HandlerType: (*ABCIApplicationServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Echo",
			Handler:    _ABCIApplication_Echo_Handler,
		},
		{
			MethodName: "Flush",
			Handler:    _ABCIApplication_Flush_Handler,
		},
		{
			MethodName: "Info",
			Handler:    _ABCIApplication_Info_Handler,
		},
		{
			MethodName: "SetOption",
			Handler:    _ABCIApplication_SetOption_Handler,
		},
		{
			MethodName: "DeliverTx",
			Handler:    _ABCIApplication_DeliverTx_Handler,
		},
		{
			MethodName: "CheckTx",
			Handler:    _ABCIApplication_CheckTx_Handler,
		},
		{
			MethodName: "Query",
			Handler:    _ABCIApplication_Query_Handler,
		},
		{
			MethodName: "Commit",
			Handler:    _ABCIApplication_Commit_Handler,
		},
		{
			MethodName: "InitChain",
			Handler:    _ABCIApplication_InitChain_Handler,
		},
		{
			MethodName: "BeginBlock",
			Handler:    _ABCIApplication_BeginBlock_Handler,
		},
		{
			MethodName: "EndBlock",
			Handler:    _ABCIApplication_EndBlock_Handler,
		},
		{
			MethodName: "ListSnapshots",
			Handler:    _ABCIApplication_ListSnapshots_Handler,
		},
		{
			MethodName: "OfferSnapshot",
			Handler:    _ABCIApplication_OfferSnapshot_Handler,
		},
		{
			MethodName: "LoadSnapshotChunk",
			Handler:    _ABCIApplication_LoadSnapshotChunk_Handler,
		},
		{
			MethodName: "ApplySnapshotChunk",
			Handler:    _ABCIApplication_ApplySnapshotChunk_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "tendermint/abci/types.proto",
}

ABCIApplication_ServiceDesc is the grpc.ServiceDesc for ABCIApplication service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_tendermint_abci_types_proto protoreflect.FileDescriptor

Functions

func RegisterABCIApplicationServer

func RegisterABCIApplicationServer(s grpc.ServiceRegistrar, srv ABCIApplicationServer)

Types

type ABCIApplicationClient

type ABCIApplicationClient interface {
	Echo(ctx context.Context, in *RequestEcho, opts ...grpc.CallOption) (*ResponseEcho, error)
	Flush(ctx context.Context, in *RequestFlush, opts ...grpc.CallOption) (*ResponseFlush, error)
	Info(ctx context.Context, in *RequestInfo, opts ...grpc.CallOption) (*ResponseInfo, error)
	SetOption(ctx context.Context, in *RequestSetOption, opts ...grpc.CallOption) (*ResponseSetOption, error)
	DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error)
	CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error)
	Query(ctx context.Context, in *RequestQuery, opts ...grpc.CallOption) (*ResponseQuery, error)
	Commit(ctx context.Context, in *RequestCommit, opts ...grpc.CallOption) (*ResponseCommit, error)
	InitChain(ctx context.Context, in *RequestInitChain, opts ...grpc.CallOption) (*ResponseInitChain, error)
	BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error)
	EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error)
	ListSnapshots(ctx context.Context, in *RequestListSnapshots, opts ...grpc.CallOption) (*ResponseListSnapshots, error)
	OfferSnapshot(ctx context.Context, in *RequestOfferSnapshot, opts ...grpc.CallOption) (*ResponseOfferSnapshot, error)
	LoadSnapshotChunk(ctx context.Context, in *RequestLoadSnapshotChunk, opts ...grpc.CallOption) (*ResponseLoadSnapshotChunk, error)
	ApplySnapshotChunk(ctx context.Context, in *RequestApplySnapshotChunk, opts ...grpc.CallOption) (*ResponseApplySnapshotChunk, error)
}

ABCIApplicationClient is the client API for ABCIApplication service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ABCIApplicationServer

ABCIApplicationServer is the server API for ABCIApplication service. All implementations must embed UnimplementedABCIApplicationServer for forward compatibility

type BlockParams

type BlockParams struct {

	// Note: must be greater than 0
	MaxBytes int64 `protobuf:"varint,1,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
	// Note: must be greater or equal to -1
	MaxGas int64 `protobuf:"varint,2,opt,name=max_gas,json=maxGas,proto3" json:"max_gas,omitempty"`
	// contains filtered or unexported fields
}

BlockParams contains limits on the block size.

func (*BlockParams) Descriptor deprecated

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

Deprecated: Use BlockParams.ProtoReflect.Descriptor instead.

func (*BlockParams) GetMaxBytes

func (x *BlockParams) GetMaxBytes() int64

func (*BlockParams) GetMaxGas

func (x *BlockParams) GetMaxGas() int64

func (*BlockParams) ProtoMessage

func (*BlockParams) ProtoMessage()

func (*BlockParams) ProtoReflect

func (x *BlockParams) ProtoReflect() protoreflect.Message

func (*BlockParams) Reset

func (x *BlockParams) Reset()

func (*BlockParams) String

func (x *BlockParams) String() string

type CheckTxType

type CheckTxType int32
const (
	CheckTxType_NEW     CheckTxType = 0
	CheckTxType_RECHECK CheckTxType = 1
)

func (CheckTxType) Descriptor

func (CheckTxType) Enum

func (x CheckTxType) Enum() *CheckTxType

func (CheckTxType) EnumDescriptor deprecated

func (CheckTxType) EnumDescriptor() ([]byte, []int)

Deprecated: Use CheckTxType.Descriptor instead.

func (CheckTxType) Number

func (x CheckTxType) Number() protoreflect.EnumNumber

func (CheckTxType) String

func (x CheckTxType) String() string

func (CheckTxType) Type

type ConsensusParams

type ConsensusParams struct {
	Block     *BlockParams           `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"`
	Evidence  *types.EvidenceParams  `protobuf:"bytes,2,opt,name=evidence,proto3" json:"evidence,omitempty"`
	Validator *types.ValidatorParams `protobuf:"bytes,3,opt,name=validator,proto3" json:"validator,omitempty"`
	Version   *types.VersionParams   `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

ConsensusParams contains all consensus-relevant parameters that can be adjusted by the abci app

func (*ConsensusParams) Descriptor deprecated

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

Deprecated: Use ConsensusParams.ProtoReflect.Descriptor instead.

func (*ConsensusParams) GetBlock

func (x *ConsensusParams) GetBlock() *BlockParams

func (*ConsensusParams) GetEvidence

func (x *ConsensusParams) GetEvidence() *types.EvidenceParams

func (*ConsensusParams) GetValidator

func (x *ConsensusParams) GetValidator() *types.ValidatorParams

func (*ConsensusParams) GetVersion

func (x *ConsensusParams) GetVersion() *types.VersionParams

func (*ConsensusParams) ProtoMessage

func (*ConsensusParams) ProtoMessage()

func (*ConsensusParams) ProtoReflect

func (x *ConsensusParams) ProtoReflect() protoreflect.Message

func (*ConsensusParams) Reset

func (x *ConsensusParams) Reset()

func (*ConsensusParams) String

func (x *ConsensusParams) String() string

type Event

type Event struct {
	Type_      string            `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Attributes []*EventAttribute `protobuf:"bytes,2,rep,name=attributes,proto3" json:"attributes,omitempty"`
	// contains filtered or unexported fields
}

Event allows application developers to attach additional information to ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and ResponseDeliverTx. Later, transactions may be queried using these events.

func (*Event) Descriptor deprecated

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

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetAttributes

func (x *Event) GetAttributes() []*EventAttribute

func (*Event) GetType_

func (x *Event) GetType_() string

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

func (x *Event) ProtoReflect() protoreflect.Message

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

type EventAttribute

type EventAttribute struct {
	Key   []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Index bool   `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"` // nondeterministic
	// contains filtered or unexported fields
}

EventAttribute is a single key-value pair, associated with an event.

func (*EventAttribute) Descriptor deprecated

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

Deprecated: Use EventAttribute.ProtoReflect.Descriptor instead.

func (*EventAttribute) GetIndex

func (x *EventAttribute) GetIndex() bool

func (*EventAttribute) GetKey

func (x *EventAttribute) GetKey() []byte

func (*EventAttribute) GetValue

func (x *EventAttribute) GetValue() []byte

func (*EventAttribute) ProtoMessage

func (*EventAttribute) ProtoMessage()

func (*EventAttribute) ProtoReflect

func (x *EventAttribute) ProtoReflect() protoreflect.Message

func (*EventAttribute) Reset

func (x *EventAttribute) Reset()

func (*EventAttribute) String

func (x *EventAttribute) String() string

type Evidence

type Evidence struct {
	Type_ EvidenceType `protobuf:"varint,1,opt,name=type,proto3,enum=tendermint.abci.EvidenceType" json:"type,omitempty"`
	// The offending validator
	Validator *Validator `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator,omitempty"`
	// The height when the offense occurred
	Height int64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	// The corresponding time where the offense occurred
	Time *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=time,proto3" json:"time,omitempty"`
	// Total voting power of the validator set in case the ABCI application does
	// not store historical validators.
	// https://github.com/tendermint/tendermint/issues/4581
	TotalVotingPower int64 `protobuf:"varint,5,opt,name=total_voting_power,json=totalVotingPower,proto3" json:"total_voting_power,omitempty"`
	// contains filtered or unexported fields
}

func (*Evidence) Descriptor deprecated

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

Deprecated: Use Evidence.ProtoReflect.Descriptor instead.

func (*Evidence) GetHeight

func (x *Evidence) GetHeight() int64

func (*Evidence) GetTime

func (x *Evidence) GetTime() *timestamppb.Timestamp

func (*Evidence) GetTotalVotingPower

func (x *Evidence) GetTotalVotingPower() int64

func (*Evidence) GetType_

func (x *Evidence) GetType_() EvidenceType

func (*Evidence) GetValidator

func (x *Evidence) GetValidator() *Validator

func (*Evidence) ProtoMessage

func (*Evidence) ProtoMessage()

func (*Evidence) ProtoReflect

func (x *Evidence) ProtoReflect() protoreflect.Message

func (*Evidence) Reset

func (x *Evidence) Reset()

func (*Evidence) String

func (x *Evidence) String() string

type EvidenceType

type EvidenceType int32
const (
	EvidenceType_UNKNOWN             EvidenceType = 0
	EvidenceType_DUPLICATE_VOTE      EvidenceType = 1
	EvidenceType_LIGHT_CLIENT_ATTACK EvidenceType = 2
)

func (EvidenceType) Descriptor

func (EvidenceType) Enum

func (x EvidenceType) Enum() *EvidenceType

func (EvidenceType) EnumDescriptor deprecated

func (EvidenceType) EnumDescriptor() ([]byte, []int)

Deprecated: Use EvidenceType.Descriptor instead.

func (EvidenceType) Number

func (EvidenceType) String

func (x EvidenceType) String() string

func (EvidenceType) Type

type LastCommitInfo

type LastCommitInfo struct {
	Round int32       `protobuf:"varint,1,opt,name=round,proto3" json:"round,omitempty"`
	Votes []*VoteInfo `protobuf:"bytes,2,rep,name=votes,proto3" json:"votes,omitempty"`
	// contains filtered or unexported fields
}

func (*LastCommitInfo) Descriptor deprecated

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

Deprecated: Use LastCommitInfo.ProtoReflect.Descriptor instead.

func (*LastCommitInfo) GetRound

func (x *LastCommitInfo) GetRound() int32

func (*LastCommitInfo) GetVotes

func (x *LastCommitInfo) GetVotes() []*VoteInfo

func (*LastCommitInfo) ProtoMessage

func (*LastCommitInfo) ProtoMessage()

func (*LastCommitInfo) ProtoReflect

func (x *LastCommitInfo) ProtoReflect() protoreflect.Message

func (*LastCommitInfo) Reset

func (x *LastCommitInfo) Reset()

func (*LastCommitInfo) String

func (x *LastCommitInfo) String() string

type Request

type Request struct {

	// Types that are assignable to Value:
	//	*Request_Echo
	//	*Request_Flush
	//	*Request_Info
	//	*Request_SetOption
	//	*Request_InitChain
	//	*Request_Query
	//	*Request_BeginBlock
	//	*Request_CheckTx
	//	*Request_DeliverTx
	//	*Request_EndBlock
	//	*Request_Commit
	//	*Request_ListSnapshots
	//	*Request_OfferSnapshot
	//	*Request_LoadSnapshotChunk
	//	*Request_ApplySnapshotChunk
	Value isRequest_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*Request) Descriptor deprecated

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

Deprecated: Use Request.ProtoReflect.Descriptor instead.

func (*Request) GetApplySnapshotChunk

func (x *Request) GetApplySnapshotChunk() *RequestApplySnapshotChunk

func (*Request) GetBeginBlock

func (x *Request) GetBeginBlock() *RequestBeginBlock

func (*Request) GetCheckTx

func (x *Request) GetCheckTx() *RequestCheckTx

func (*Request) GetCommit

func (x *Request) GetCommit() *RequestCommit

func (*Request) GetDeliverTx

func (x *Request) GetDeliverTx() *RequestDeliverTx

func (*Request) GetEcho

func (x *Request) GetEcho() *RequestEcho

func (*Request) GetEndBlock

func (x *Request) GetEndBlock() *RequestEndBlock

func (*Request) GetFlush

func (x *Request) GetFlush() *RequestFlush

func (*Request) GetInfo

func (x *Request) GetInfo() *RequestInfo

func (*Request) GetInitChain

func (x *Request) GetInitChain() *RequestInitChain

func (*Request) GetListSnapshots

func (x *Request) GetListSnapshots() *RequestListSnapshots

func (*Request) GetLoadSnapshotChunk

func (x *Request) GetLoadSnapshotChunk() *RequestLoadSnapshotChunk

func (*Request) GetOfferSnapshot

func (x *Request) GetOfferSnapshot() *RequestOfferSnapshot

func (*Request) GetQuery

func (x *Request) GetQuery() *RequestQuery

func (*Request) GetSetOption

func (x *Request) GetSetOption() *RequestSetOption

func (*Request) GetValue

func (x *Request) GetValue() isRequest_Value

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) ProtoReflect

func (x *Request) ProtoReflect() protoreflect.Message

func (*Request) Reset

func (x *Request) Reset()

func (*Request) String

func (x *Request) String() string

type RequestApplySnapshotChunk

type RequestApplySnapshotChunk struct {
	Index  uint32 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	Chunk  []byte `protobuf:"bytes,2,opt,name=chunk,proto3" json:"chunk,omitempty"`
	Sender string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"`
	// contains filtered or unexported fields
}

Applies a snapshot chunk

func (*RequestApplySnapshotChunk) Descriptor deprecated

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

Deprecated: Use RequestApplySnapshotChunk.ProtoReflect.Descriptor instead.

func (*RequestApplySnapshotChunk) GetChunk

func (x *RequestApplySnapshotChunk) GetChunk() []byte

func (*RequestApplySnapshotChunk) GetIndex

func (x *RequestApplySnapshotChunk) GetIndex() uint32

func (*RequestApplySnapshotChunk) GetSender

func (x *RequestApplySnapshotChunk) GetSender() string

func (*RequestApplySnapshotChunk) ProtoMessage

func (*RequestApplySnapshotChunk) ProtoMessage()

func (*RequestApplySnapshotChunk) ProtoReflect

func (*RequestApplySnapshotChunk) Reset

func (x *RequestApplySnapshotChunk) Reset()

func (*RequestApplySnapshotChunk) String

func (x *RequestApplySnapshotChunk) String() string

type RequestBeginBlock

type RequestBeginBlock struct {
	Hash                []byte          `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Header              *types.Header   `protobuf:"bytes,2,opt,name=header,proto3" json:"header,omitempty"`
	LastCommitInfo      *LastCommitInfo `protobuf:"bytes,3,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info,omitempty"`
	ByzantineValidators []*Evidence     `protobuf:"bytes,4,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestBeginBlock) Descriptor deprecated

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

Deprecated: Use RequestBeginBlock.ProtoReflect.Descriptor instead.

func (*RequestBeginBlock) GetByzantineValidators

func (x *RequestBeginBlock) GetByzantineValidators() []*Evidence

func (*RequestBeginBlock) GetHash

func (x *RequestBeginBlock) GetHash() []byte

func (*RequestBeginBlock) GetHeader

func (x *RequestBeginBlock) GetHeader() *types.Header

func (*RequestBeginBlock) GetLastCommitInfo

func (x *RequestBeginBlock) GetLastCommitInfo() *LastCommitInfo

func (*RequestBeginBlock) ProtoMessage

func (*RequestBeginBlock) ProtoMessage()

func (*RequestBeginBlock) ProtoReflect

func (x *RequestBeginBlock) ProtoReflect() protoreflect.Message

func (*RequestBeginBlock) Reset

func (x *RequestBeginBlock) Reset()

func (*RequestBeginBlock) String

func (x *RequestBeginBlock) String() string

type RequestCheckTx

type RequestCheckTx struct {
	Tx    []byte      `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
	Type_ CheckTxType `protobuf:"varint,2,opt,name=type,proto3,enum=tendermint.abci.CheckTxType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestCheckTx) Descriptor deprecated

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

Deprecated: Use RequestCheckTx.ProtoReflect.Descriptor instead.

func (*RequestCheckTx) GetTx

func (x *RequestCheckTx) GetTx() []byte

func (*RequestCheckTx) GetType_

func (x *RequestCheckTx) GetType_() CheckTxType

func (*RequestCheckTx) ProtoMessage

func (*RequestCheckTx) ProtoMessage()

func (*RequestCheckTx) ProtoReflect

func (x *RequestCheckTx) ProtoReflect() protoreflect.Message

func (*RequestCheckTx) Reset

func (x *RequestCheckTx) Reset()

func (*RequestCheckTx) String

func (x *RequestCheckTx) String() string

type RequestCommit

type RequestCommit struct {
	// contains filtered or unexported fields
}

func (*RequestCommit) Descriptor deprecated

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

Deprecated: Use RequestCommit.ProtoReflect.Descriptor instead.

func (*RequestCommit) ProtoMessage

func (*RequestCommit) ProtoMessage()

func (*RequestCommit) ProtoReflect

func (x *RequestCommit) ProtoReflect() protoreflect.Message

func (*RequestCommit) Reset

func (x *RequestCommit) Reset()

func (*RequestCommit) String

func (x *RequestCommit) String() string

type RequestDeliverTx

type RequestDeliverTx struct {
	Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestDeliverTx) Descriptor deprecated

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

Deprecated: Use RequestDeliverTx.ProtoReflect.Descriptor instead.

func (*RequestDeliverTx) GetTx

func (x *RequestDeliverTx) GetTx() []byte

func (*RequestDeliverTx) ProtoMessage

func (*RequestDeliverTx) ProtoMessage()

func (*RequestDeliverTx) ProtoReflect

func (x *RequestDeliverTx) ProtoReflect() protoreflect.Message

func (*RequestDeliverTx) Reset

func (x *RequestDeliverTx) Reset()

func (*RequestDeliverTx) String

func (x *RequestDeliverTx) String() string

type RequestEcho

type RequestEcho struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestEcho) Descriptor deprecated

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

Deprecated: Use RequestEcho.ProtoReflect.Descriptor instead.

func (*RequestEcho) GetMessage

func (x *RequestEcho) GetMessage() string

func (*RequestEcho) ProtoMessage

func (*RequestEcho) ProtoMessage()

func (*RequestEcho) ProtoReflect

func (x *RequestEcho) ProtoReflect() protoreflect.Message

func (*RequestEcho) Reset

func (x *RequestEcho) Reset()

func (*RequestEcho) String

func (x *RequestEcho) String() string

type RequestEndBlock

type RequestEndBlock struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestEndBlock) Descriptor deprecated

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

Deprecated: Use RequestEndBlock.ProtoReflect.Descriptor instead.

func (*RequestEndBlock) GetHeight

func (x *RequestEndBlock) GetHeight() int64

func (*RequestEndBlock) ProtoMessage

func (*RequestEndBlock) ProtoMessage()

func (*RequestEndBlock) ProtoReflect

func (x *RequestEndBlock) ProtoReflect() protoreflect.Message

func (*RequestEndBlock) Reset

func (x *RequestEndBlock) Reset()

func (*RequestEndBlock) String

func (x *RequestEndBlock) String() string

type RequestFlush

type RequestFlush struct {
	// contains filtered or unexported fields
}

func (*RequestFlush) Descriptor deprecated

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

Deprecated: Use RequestFlush.ProtoReflect.Descriptor instead.

func (*RequestFlush) ProtoMessage

func (*RequestFlush) ProtoMessage()

func (*RequestFlush) ProtoReflect

func (x *RequestFlush) ProtoReflect() protoreflect.Message

func (*RequestFlush) Reset

func (x *RequestFlush) Reset()

func (*RequestFlush) String

func (x *RequestFlush) String() string

type RequestInfo

type RequestInfo struct {
	Version      string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	BlockVersion uint64 `protobuf:"varint,2,opt,name=block_version,json=blockVersion,proto3" json:"block_version,omitempty"`
	P2PVersion   uint64 `protobuf:"varint,3,opt,name=p2p_version,json=p2pVersion,proto3" json:"p2p_version,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestInfo) Descriptor deprecated

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

Deprecated: Use RequestInfo.ProtoReflect.Descriptor instead.

func (*RequestInfo) GetBlockVersion

func (x *RequestInfo) GetBlockVersion() uint64

func (*RequestInfo) GetP2PVersion

func (x *RequestInfo) GetP2PVersion() uint64

func (*RequestInfo) GetVersion

func (x *RequestInfo) GetVersion() string

func (*RequestInfo) ProtoMessage

func (*RequestInfo) ProtoMessage()

func (*RequestInfo) ProtoReflect

func (x *RequestInfo) ProtoReflect() protoreflect.Message

func (*RequestInfo) Reset

func (x *RequestInfo) Reset()

func (*RequestInfo) String

func (x *RequestInfo) String() string

type RequestInitChain

type RequestInitChain struct {
	Time            *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"`
	ChainId         string                 `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ConsensusParams *ConsensusParams       `protobuf:"bytes,3,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"`
	Validators      []*ValidatorUpdate     `protobuf:"bytes,4,rep,name=validators,proto3" json:"validators,omitempty"`
	AppStateBytes   []byte                 `protobuf:"bytes,5,opt,name=app_state_bytes,json=appStateBytes,proto3" json:"app_state_bytes,omitempty"`
	InitialHeight   int64                  `protobuf:"varint,6,opt,name=initial_height,json=initialHeight,proto3" json:"initial_height,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestInitChain) Descriptor deprecated

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

Deprecated: Use RequestInitChain.ProtoReflect.Descriptor instead.

func (*RequestInitChain) GetAppStateBytes

func (x *RequestInitChain) GetAppStateBytes() []byte

func (*RequestInitChain) GetChainId

func (x *RequestInitChain) GetChainId() string

func (*RequestInitChain) GetConsensusParams

func (x *RequestInitChain) GetConsensusParams() *ConsensusParams

func (*RequestInitChain) GetInitialHeight

func (x *RequestInitChain) GetInitialHeight() int64

func (*RequestInitChain) GetTime

func (x *RequestInitChain) GetTime() *timestamppb.Timestamp

func (*RequestInitChain) GetValidators

func (x *RequestInitChain) GetValidators() []*ValidatorUpdate

func (*RequestInitChain) ProtoMessage

func (*RequestInitChain) ProtoMessage()

func (*RequestInitChain) ProtoReflect

func (x *RequestInitChain) ProtoReflect() protoreflect.Message

func (*RequestInitChain) Reset

func (x *RequestInitChain) Reset()

func (*RequestInitChain) String

func (x *RequestInitChain) String() string

type RequestListSnapshots

type RequestListSnapshots struct {
	// contains filtered or unexported fields
}

lists available snapshots

func (*RequestListSnapshots) Descriptor deprecated

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

Deprecated: Use RequestListSnapshots.ProtoReflect.Descriptor instead.

func (*RequestListSnapshots) ProtoMessage

func (*RequestListSnapshots) ProtoMessage()

func (*RequestListSnapshots) ProtoReflect

func (x *RequestListSnapshots) ProtoReflect() protoreflect.Message

func (*RequestListSnapshots) Reset

func (x *RequestListSnapshots) Reset()

func (*RequestListSnapshots) String

func (x *RequestListSnapshots) String() string

type RequestLoadSnapshotChunk

type RequestLoadSnapshotChunk struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Format uint32 `protobuf:"varint,2,opt,name=format,proto3" json:"format,omitempty"`
	Chunk  uint32 `protobuf:"varint,3,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

loads a snapshot chunk

func (*RequestLoadSnapshotChunk) Descriptor deprecated

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

Deprecated: Use RequestLoadSnapshotChunk.ProtoReflect.Descriptor instead.

func (*RequestLoadSnapshotChunk) GetChunk

func (x *RequestLoadSnapshotChunk) GetChunk() uint32

func (*RequestLoadSnapshotChunk) GetFormat

func (x *RequestLoadSnapshotChunk) GetFormat() uint32

func (*RequestLoadSnapshotChunk) GetHeight

func (x *RequestLoadSnapshotChunk) GetHeight() uint64

func (*RequestLoadSnapshotChunk) ProtoMessage

func (*RequestLoadSnapshotChunk) ProtoMessage()

func (*RequestLoadSnapshotChunk) ProtoReflect

func (x *RequestLoadSnapshotChunk) ProtoReflect() protoreflect.Message

func (*RequestLoadSnapshotChunk) Reset

func (x *RequestLoadSnapshotChunk) Reset()

func (*RequestLoadSnapshotChunk) String

func (x *RequestLoadSnapshotChunk) String() string

type RequestOfferSnapshot

type RequestOfferSnapshot struct {
	Snapshot *Snapshot `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"`              // snapshot offered by peers
	AppHash  []byte    `protobuf:"bytes,2,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` // light client-verified app hash for snapshot height
	// contains filtered or unexported fields
}

offers a snapshot to the application

func (*RequestOfferSnapshot) Descriptor deprecated

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

Deprecated: Use RequestOfferSnapshot.ProtoReflect.Descriptor instead.

func (*RequestOfferSnapshot) GetAppHash

func (x *RequestOfferSnapshot) GetAppHash() []byte

func (*RequestOfferSnapshot) GetSnapshot

func (x *RequestOfferSnapshot) GetSnapshot() *Snapshot

func (*RequestOfferSnapshot) ProtoMessage

func (*RequestOfferSnapshot) ProtoMessage()

func (*RequestOfferSnapshot) ProtoReflect

func (x *RequestOfferSnapshot) ProtoReflect() protoreflect.Message

func (*RequestOfferSnapshot) Reset

func (x *RequestOfferSnapshot) Reset()

func (*RequestOfferSnapshot) String

func (x *RequestOfferSnapshot) String() string

type RequestQuery

type RequestQuery struct {
	Data   []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Path   string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Height int64  `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Prove  bool   `protobuf:"varint,4,opt,name=prove,proto3" json:"prove,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestQuery) Descriptor deprecated

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

Deprecated: Use RequestQuery.ProtoReflect.Descriptor instead.

func (*RequestQuery) GetData

func (x *RequestQuery) GetData() []byte

func (*RequestQuery) GetHeight

func (x *RequestQuery) GetHeight() int64

func (*RequestQuery) GetPath

func (x *RequestQuery) GetPath() string

func (*RequestQuery) GetProve

func (x *RequestQuery) GetProve() bool

func (*RequestQuery) ProtoMessage

func (*RequestQuery) ProtoMessage()

func (*RequestQuery) ProtoReflect

func (x *RequestQuery) ProtoReflect() protoreflect.Message

func (*RequestQuery) Reset

func (x *RequestQuery) Reset()

func (*RequestQuery) String

func (x *RequestQuery) String() string

type RequestSetOption

type RequestSetOption struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

nondeterministic

func (*RequestSetOption) Descriptor deprecated

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

Deprecated: Use RequestSetOption.ProtoReflect.Descriptor instead.

func (*RequestSetOption) GetKey

func (x *RequestSetOption) GetKey() string

func (*RequestSetOption) GetValue

func (x *RequestSetOption) GetValue() string

func (*RequestSetOption) ProtoMessage

func (*RequestSetOption) ProtoMessage()

func (*RequestSetOption) ProtoReflect

func (x *RequestSetOption) ProtoReflect() protoreflect.Message

func (*RequestSetOption) Reset

func (x *RequestSetOption) Reset()

func (*RequestSetOption) String

func (x *RequestSetOption) String() string

type Request_ApplySnapshotChunk

type Request_ApplySnapshotChunk struct {
	ApplySnapshotChunk *RequestApplySnapshotChunk `protobuf:"bytes,15,opt,name=apply_snapshot_chunk,json=applySnapshotChunk,proto3,oneof"`
}

type Request_BeginBlock

type Request_BeginBlock struct {
	BeginBlock *RequestBeginBlock `protobuf:"bytes,7,opt,name=begin_block,json=beginBlock,proto3,oneof"`
}

type Request_CheckTx

type Request_CheckTx struct {
	CheckTx *RequestCheckTx `protobuf:"bytes,8,opt,name=check_tx,json=checkTx,proto3,oneof"`
}

type Request_Commit

type Request_Commit struct {
	Commit *RequestCommit `protobuf:"bytes,11,opt,name=commit,proto3,oneof"`
}

type Request_DeliverTx

type Request_DeliverTx struct {
	DeliverTx *RequestDeliverTx `protobuf:"bytes,9,opt,name=deliver_tx,json=deliverTx,proto3,oneof"`
}

type Request_Echo

type Request_Echo struct {
	Echo *RequestEcho `protobuf:"bytes,1,opt,name=echo,proto3,oneof"`
}

type Request_EndBlock

type Request_EndBlock struct {
	EndBlock *RequestEndBlock `protobuf:"bytes,10,opt,name=end_block,json=endBlock,proto3,oneof"`
}

type Request_Flush

type Request_Flush struct {
	Flush *RequestFlush `protobuf:"bytes,2,opt,name=flush,proto3,oneof"`
}

type Request_Info

type Request_Info struct {
	Info *RequestInfo `protobuf:"bytes,3,opt,name=info,proto3,oneof"`
}

type Request_InitChain

type Request_InitChain struct {
	InitChain *RequestInitChain `protobuf:"bytes,5,opt,name=init_chain,json=initChain,proto3,oneof"`
}

type Request_ListSnapshots

type Request_ListSnapshots struct {
	ListSnapshots *RequestListSnapshots `protobuf:"bytes,12,opt,name=list_snapshots,json=listSnapshots,proto3,oneof"`
}

type Request_LoadSnapshotChunk

type Request_LoadSnapshotChunk struct {
	LoadSnapshotChunk *RequestLoadSnapshotChunk `protobuf:"bytes,14,opt,name=load_snapshot_chunk,json=loadSnapshotChunk,proto3,oneof"`
}

type Request_OfferSnapshot

type Request_OfferSnapshot struct {
	OfferSnapshot *RequestOfferSnapshot `protobuf:"bytes,13,opt,name=offer_snapshot,json=offerSnapshot,proto3,oneof"`
}

type Request_Query

type Request_Query struct {
	Query *RequestQuery `protobuf:"bytes,6,opt,name=query,proto3,oneof"`
}

type Request_SetOption

type Request_SetOption struct {
	SetOption *RequestSetOption `protobuf:"bytes,4,opt,name=set_option,json=setOption,proto3,oneof"`
}

type Response

type Response struct {

	// Types that are assignable to Value:
	//	*Response_Exception
	//	*Response_Echo
	//	*Response_Flush
	//	*Response_Info
	//	*Response_SetOption
	//	*Response_InitChain
	//	*Response_Query
	//	*Response_BeginBlock
	//	*Response_CheckTx
	//	*Response_DeliverTx
	//	*Response_EndBlock
	//	*Response_Commit
	//	*Response_ListSnapshots
	//	*Response_OfferSnapshot
	//	*Response_LoadSnapshotChunk
	//	*Response_ApplySnapshotChunk
	Value isResponse_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*Response) Descriptor deprecated

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

Deprecated: Use Response.ProtoReflect.Descriptor instead.

func (*Response) GetApplySnapshotChunk

func (x *Response) GetApplySnapshotChunk() *ResponseApplySnapshotChunk

func (*Response) GetBeginBlock

func (x *Response) GetBeginBlock() *ResponseBeginBlock

func (*Response) GetCheckTx

func (x *Response) GetCheckTx() *ResponseCheckTx

func (*Response) GetCommit

func (x *Response) GetCommit() *ResponseCommit

func (*Response) GetDeliverTx

func (x *Response) GetDeliverTx() *ResponseDeliverTx

func (*Response) GetEcho

func (x *Response) GetEcho() *ResponseEcho

func (*Response) GetEndBlock

func (x *Response) GetEndBlock() *ResponseEndBlock

func (*Response) GetException

func (x *Response) GetException() *ResponseException

func (*Response) GetFlush

func (x *Response) GetFlush() *ResponseFlush

func (*Response) GetInfo

func (x *Response) GetInfo() *ResponseInfo

func (*Response) GetInitChain

func (x *Response) GetInitChain() *ResponseInitChain

func (*Response) GetListSnapshots

func (x *Response) GetListSnapshots() *ResponseListSnapshots

func (*Response) GetLoadSnapshotChunk

func (x *Response) GetLoadSnapshotChunk() *ResponseLoadSnapshotChunk

func (*Response) GetOfferSnapshot

func (x *Response) GetOfferSnapshot() *ResponseOfferSnapshot

func (*Response) GetQuery

func (x *Response) GetQuery() *ResponseQuery

func (*Response) GetSetOption

func (x *Response) GetSetOption() *ResponseSetOption

func (*Response) GetValue

func (x *Response) GetValue() isResponse_Value

func (*Response) ProtoMessage

func (*Response) ProtoMessage()

func (*Response) ProtoReflect

func (x *Response) ProtoReflect() protoreflect.Message

func (*Response) Reset

func (x *Response) Reset()

func (*Response) String

func (x *Response) String() string

type ResponseApplySnapshotChunk

type ResponseApplySnapshotChunk struct {
	Result        ResponseApplySnapshotChunk_Result `protobuf:"varint,1,opt,name=result,proto3,enum=tendermint.abci.ResponseApplySnapshotChunk_Result" json:"result,omitempty"`
	RefetchChunks []uint32                          `protobuf:"varint,2,rep,packed,name=refetch_chunks,json=refetchChunks,proto3" json:"refetch_chunks,omitempty"` // Chunks to refetch and reapply
	RejectSenders []string                          `protobuf:"bytes,3,rep,name=reject_senders,json=rejectSenders,proto3" json:"reject_senders,omitempty"`         // Chunk senders to reject and ban
	// contains filtered or unexported fields
}

func (*ResponseApplySnapshotChunk) Descriptor deprecated

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

Deprecated: Use ResponseApplySnapshotChunk.ProtoReflect.Descriptor instead.

func (*ResponseApplySnapshotChunk) GetRefetchChunks

func (x *ResponseApplySnapshotChunk) GetRefetchChunks() []uint32

func (*ResponseApplySnapshotChunk) GetRejectSenders

func (x *ResponseApplySnapshotChunk) GetRejectSenders() []string

func (*ResponseApplySnapshotChunk) GetResult

func (*ResponseApplySnapshotChunk) ProtoMessage

func (*ResponseApplySnapshotChunk) ProtoMessage()

func (*ResponseApplySnapshotChunk) ProtoReflect

func (*ResponseApplySnapshotChunk) Reset

func (x *ResponseApplySnapshotChunk) Reset()

func (*ResponseApplySnapshotChunk) String

func (x *ResponseApplySnapshotChunk) String() string

type ResponseApplySnapshotChunk_Result

type ResponseApplySnapshotChunk_Result int32
const (
	ResponseApplySnapshotChunk_UNKNOWN         ResponseApplySnapshotChunk_Result = 0 // Unknown result, abort all snapshot restoration
	ResponseApplySnapshotChunk_ACCEPT          ResponseApplySnapshotChunk_Result = 1 // Chunk successfully accepted
	ResponseApplySnapshotChunk_ABORT           ResponseApplySnapshotChunk_Result = 2 // Abort all snapshot restoration
	ResponseApplySnapshotChunk_RETRY           ResponseApplySnapshotChunk_Result = 3 // Retry chunk (combine with refetch and reject)
	ResponseApplySnapshotChunk_RETRY_SNAPSHOT  ResponseApplySnapshotChunk_Result = 4 // Retry snapshot (combine with refetch and reject)
	ResponseApplySnapshotChunk_REJECT_SNAPSHOT ResponseApplySnapshotChunk_Result = 5 // Reject this snapshot, try others
)

func (ResponseApplySnapshotChunk_Result) Descriptor

func (ResponseApplySnapshotChunk_Result) Enum

func (ResponseApplySnapshotChunk_Result) EnumDescriptor deprecated

func (ResponseApplySnapshotChunk_Result) EnumDescriptor() ([]byte, []int)

Deprecated: Use ResponseApplySnapshotChunk_Result.Descriptor instead.

func (ResponseApplySnapshotChunk_Result) Number

func (ResponseApplySnapshotChunk_Result) String

func (ResponseApplySnapshotChunk_Result) Type

type ResponseBeginBlock

type ResponseBeginBlock struct {
	Events []*Event `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseBeginBlock) Descriptor deprecated

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

Deprecated: Use ResponseBeginBlock.ProtoReflect.Descriptor instead.

func (*ResponseBeginBlock) GetEvents

func (x *ResponseBeginBlock) GetEvents() []*Event

func (*ResponseBeginBlock) ProtoMessage

func (*ResponseBeginBlock) ProtoMessage()

func (*ResponseBeginBlock) ProtoReflect

func (x *ResponseBeginBlock) ProtoReflect() protoreflect.Message

func (*ResponseBeginBlock) Reset

func (x *ResponseBeginBlock) Reset()

func (*ResponseBeginBlock) String

func (x *ResponseBeginBlock) String() string

type ResponseCheckTx

type ResponseCheckTx struct {
	Code      uint32   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Data      []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Log       string   `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`   // nondeterministic
	Info      string   `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"` // nondeterministic
	GasWanted int64    `protobuf:"varint,5,opt,name=gas_wanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed   int64    `protobuf:"varint,6,opt,name=gas_used,proto3" json:"gas_used,omitempty"`
	Events    []*Event `protobuf:"bytes,7,rep,name=events,proto3" json:"events,omitempty"`
	Codespace string   `protobuf:"bytes,8,opt,name=codespace,proto3" json:"codespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseCheckTx) Descriptor deprecated

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

Deprecated: Use ResponseCheckTx.ProtoReflect.Descriptor instead.

func (*ResponseCheckTx) GetCode

func (x *ResponseCheckTx) GetCode() uint32

func (*ResponseCheckTx) GetCodespace

func (x *ResponseCheckTx) GetCodespace() string

func (*ResponseCheckTx) GetData

func (x *ResponseCheckTx) GetData() []byte

func (*ResponseCheckTx) GetEvents

func (x *ResponseCheckTx) GetEvents() []*Event

func (*ResponseCheckTx) GetGasUsed

func (x *ResponseCheckTx) GetGasUsed() int64

func (*ResponseCheckTx) GetGasWanted

func (x *ResponseCheckTx) GetGasWanted() int64

func (*ResponseCheckTx) GetInfo

func (x *ResponseCheckTx) GetInfo() string

func (*ResponseCheckTx) GetLog

func (x *ResponseCheckTx) GetLog() string

func (*ResponseCheckTx) ProtoMessage

func (*ResponseCheckTx) ProtoMessage()

func (*ResponseCheckTx) ProtoReflect

func (x *ResponseCheckTx) ProtoReflect() protoreflect.Message

func (*ResponseCheckTx) Reset

func (x *ResponseCheckTx) Reset()

func (*ResponseCheckTx) String

func (x *ResponseCheckTx) String() string

type ResponseCommit

type ResponseCommit struct {

	// reserve 1
	Data         []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	RetainHeight int64  `protobuf:"varint,3,opt,name=retain_height,json=retainHeight,proto3" json:"retain_height,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseCommit) Descriptor deprecated

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

Deprecated: Use ResponseCommit.ProtoReflect.Descriptor instead.

func (*ResponseCommit) GetData

func (x *ResponseCommit) GetData() []byte

func (*ResponseCommit) GetRetainHeight

func (x *ResponseCommit) GetRetainHeight() int64

func (*ResponseCommit) ProtoMessage

func (*ResponseCommit) ProtoMessage()

func (*ResponseCommit) ProtoReflect

func (x *ResponseCommit) ProtoReflect() protoreflect.Message

func (*ResponseCommit) Reset

func (x *ResponseCommit) Reset()

func (*ResponseCommit) String

func (x *ResponseCommit) String() string

type ResponseDeliverTx

type ResponseDeliverTx struct {
	Code      uint32   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Data      []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Log       string   `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`   // nondeterministic
	Info      string   `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"` // nondeterministic
	GasWanted int64    `protobuf:"varint,5,opt,name=gas_wanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed   int64    `protobuf:"varint,6,opt,name=gas_used,proto3" json:"gas_used,omitempty"`
	Events    []*Event `protobuf:"bytes,7,rep,name=events,proto3" json:"events,omitempty"`
	Codespace string   `protobuf:"bytes,8,opt,name=codespace,proto3" json:"codespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseDeliverTx) Descriptor deprecated

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

Deprecated: Use ResponseDeliverTx.ProtoReflect.Descriptor instead.

func (*ResponseDeliverTx) GetCode

func (x *ResponseDeliverTx) GetCode() uint32

func (*ResponseDeliverTx) GetCodespace

func (x *ResponseDeliverTx) GetCodespace() string

func (*ResponseDeliverTx) GetData

func (x *ResponseDeliverTx) GetData() []byte

func (*ResponseDeliverTx) GetEvents

func (x *ResponseDeliverTx) GetEvents() []*Event

func (*ResponseDeliverTx) GetGasUsed

func (x *ResponseDeliverTx) GetGasUsed() int64

func (*ResponseDeliverTx) GetGasWanted

func (x *ResponseDeliverTx) GetGasWanted() int64

func (*ResponseDeliverTx) GetInfo

func (x *ResponseDeliverTx) GetInfo() string

func (*ResponseDeliverTx) GetLog

func (x *ResponseDeliverTx) GetLog() string

func (*ResponseDeliverTx) ProtoMessage

func (*ResponseDeliverTx) ProtoMessage()

func (*ResponseDeliverTx) ProtoReflect

func (x *ResponseDeliverTx) ProtoReflect() protoreflect.Message

func (*ResponseDeliverTx) Reset

func (x *ResponseDeliverTx) Reset()

func (*ResponseDeliverTx) String

func (x *ResponseDeliverTx) String() string

type ResponseEcho

type ResponseEcho struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseEcho) Descriptor deprecated

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

Deprecated: Use ResponseEcho.ProtoReflect.Descriptor instead.

func (*ResponseEcho) GetMessage

func (x *ResponseEcho) GetMessage() string

func (*ResponseEcho) ProtoMessage

func (*ResponseEcho) ProtoMessage()

func (*ResponseEcho) ProtoReflect

func (x *ResponseEcho) ProtoReflect() protoreflect.Message

func (*ResponseEcho) Reset

func (x *ResponseEcho) Reset()

func (*ResponseEcho) String

func (x *ResponseEcho) String() string

type ResponseEndBlock

type ResponseEndBlock struct {
	ValidatorUpdates      []*ValidatorUpdate `protobuf:"bytes,1,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates,omitempty"`
	ConsensusParamUpdates *ConsensusParams   `` /* 126-byte string literal not displayed */
	Events                []*Event           `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseEndBlock) Descriptor deprecated

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

Deprecated: Use ResponseEndBlock.ProtoReflect.Descriptor instead.

func (*ResponseEndBlock) GetConsensusParamUpdates

func (x *ResponseEndBlock) GetConsensusParamUpdates() *ConsensusParams

func (*ResponseEndBlock) GetEvents

func (x *ResponseEndBlock) GetEvents() []*Event

func (*ResponseEndBlock) GetValidatorUpdates

func (x *ResponseEndBlock) GetValidatorUpdates() []*ValidatorUpdate

func (*ResponseEndBlock) ProtoMessage

func (*ResponseEndBlock) ProtoMessage()

func (*ResponseEndBlock) ProtoReflect

func (x *ResponseEndBlock) ProtoReflect() protoreflect.Message

func (*ResponseEndBlock) Reset

func (x *ResponseEndBlock) Reset()

func (*ResponseEndBlock) String

func (x *ResponseEndBlock) String() string

type ResponseException

type ResponseException struct {
	Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

nondeterministic

func (*ResponseException) Descriptor deprecated

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

Deprecated: Use ResponseException.ProtoReflect.Descriptor instead.

func (*ResponseException) GetError

func (x *ResponseException) GetError() string

func (*ResponseException) ProtoMessage

func (*ResponseException) ProtoMessage()

func (*ResponseException) ProtoReflect

func (x *ResponseException) ProtoReflect() protoreflect.Message

func (*ResponseException) Reset

func (x *ResponseException) Reset()

func (*ResponseException) String

func (x *ResponseException) String() string

type ResponseFlush

type ResponseFlush struct {
	// contains filtered or unexported fields
}

func (*ResponseFlush) Descriptor deprecated

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

Deprecated: Use ResponseFlush.ProtoReflect.Descriptor instead.

func (*ResponseFlush) ProtoMessage

func (*ResponseFlush) ProtoMessage()

func (*ResponseFlush) ProtoReflect

func (x *ResponseFlush) ProtoReflect() protoreflect.Message

func (*ResponseFlush) Reset

func (x *ResponseFlush) Reset()

func (*ResponseFlush) String

func (x *ResponseFlush) String() string

type ResponseInfo

type ResponseInfo struct {
	Data             string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Version          string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	AppVersion       uint64 `protobuf:"varint,3,opt,name=app_version,json=appVersion,proto3" json:"app_version,omitempty"`
	LastBlockHeight  int64  `protobuf:"varint,4,opt,name=last_block_height,json=lastBlockHeight,proto3" json:"last_block_height,omitempty"`
	LastBlockAppHash []byte `protobuf:"bytes,5,opt,name=last_block_app_hash,json=lastBlockAppHash,proto3" json:"last_block_app_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseInfo) Descriptor deprecated

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

Deprecated: Use ResponseInfo.ProtoReflect.Descriptor instead.

func (*ResponseInfo) GetAppVersion

func (x *ResponseInfo) GetAppVersion() uint64

func (*ResponseInfo) GetData

func (x *ResponseInfo) GetData() string

func (*ResponseInfo) GetLastBlockAppHash

func (x *ResponseInfo) GetLastBlockAppHash() []byte

func (*ResponseInfo) GetLastBlockHeight

func (x *ResponseInfo) GetLastBlockHeight() int64

func (*ResponseInfo) GetVersion

func (x *ResponseInfo) GetVersion() string

func (*ResponseInfo) ProtoMessage

func (*ResponseInfo) ProtoMessage()

func (*ResponseInfo) ProtoReflect

func (x *ResponseInfo) ProtoReflect() protoreflect.Message

func (*ResponseInfo) Reset

func (x *ResponseInfo) Reset()

func (*ResponseInfo) String

func (x *ResponseInfo) String() string

type ResponseInitChain

type ResponseInitChain struct {
	ConsensusParams *ConsensusParams   `protobuf:"bytes,1,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"`
	Validators      []*ValidatorUpdate `protobuf:"bytes,2,rep,name=validators,proto3" json:"validators,omitempty"`
	AppHash         []byte             `protobuf:"bytes,3,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseInitChain) Descriptor deprecated

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

Deprecated: Use ResponseInitChain.ProtoReflect.Descriptor instead.

func (*ResponseInitChain) GetAppHash

func (x *ResponseInitChain) GetAppHash() []byte

func (*ResponseInitChain) GetConsensusParams

func (x *ResponseInitChain) GetConsensusParams() *ConsensusParams

func (*ResponseInitChain) GetValidators

func (x *ResponseInitChain) GetValidators() []*ValidatorUpdate

func (*ResponseInitChain) ProtoMessage

func (*ResponseInitChain) ProtoMessage()

func (*ResponseInitChain) ProtoReflect

func (x *ResponseInitChain) ProtoReflect() protoreflect.Message

func (*ResponseInitChain) Reset

func (x *ResponseInitChain) Reset()

func (*ResponseInitChain) String

func (x *ResponseInitChain) String() string

type ResponseListSnapshots

type ResponseListSnapshots struct {
	Snapshots []*Snapshot `protobuf:"bytes,1,rep,name=snapshots,proto3" json:"snapshots,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseListSnapshots) Descriptor deprecated

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

Deprecated: Use ResponseListSnapshots.ProtoReflect.Descriptor instead.

func (*ResponseListSnapshots) GetSnapshots

func (x *ResponseListSnapshots) GetSnapshots() []*Snapshot

func (*ResponseListSnapshots) ProtoMessage

func (*ResponseListSnapshots) ProtoMessage()

func (*ResponseListSnapshots) ProtoReflect

func (x *ResponseListSnapshots) ProtoReflect() protoreflect.Message

func (*ResponseListSnapshots) Reset

func (x *ResponseListSnapshots) Reset()

func (*ResponseListSnapshots) String

func (x *ResponseListSnapshots) String() string

type ResponseLoadSnapshotChunk

type ResponseLoadSnapshotChunk struct {
	Chunk []byte `protobuf:"bytes,1,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseLoadSnapshotChunk) Descriptor deprecated

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

Deprecated: Use ResponseLoadSnapshotChunk.ProtoReflect.Descriptor instead.

func (*ResponseLoadSnapshotChunk) GetChunk

func (x *ResponseLoadSnapshotChunk) GetChunk() []byte

func (*ResponseLoadSnapshotChunk) ProtoMessage

func (*ResponseLoadSnapshotChunk) ProtoMessage()

func (*ResponseLoadSnapshotChunk) ProtoReflect

func (*ResponseLoadSnapshotChunk) Reset

func (x *ResponseLoadSnapshotChunk) Reset()

func (*ResponseLoadSnapshotChunk) String

func (x *ResponseLoadSnapshotChunk) String() string

type ResponseOfferSnapshot

type ResponseOfferSnapshot struct {
	Result ResponseOfferSnapshot_Result `protobuf:"varint,1,opt,name=result,proto3,enum=tendermint.abci.ResponseOfferSnapshot_Result" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseOfferSnapshot) Descriptor deprecated

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

Deprecated: Use ResponseOfferSnapshot.ProtoReflect.Descriptor instead.

func (*ResponseOfferSnapshot) GetResult

func (*ResponseOfferSnapshot) ProtoMessage

func (*ResponseOfferSnapshot) ProtoMessage()

func (*ResponseOfferSnapshot) ProtoReflect

func (x *ResponseOfferSnapshot) ProtoReflect() protoreflect.Message

func (*ResponseOfferSnapshot) Reset

func (x *ResponseOfferSnapshot) Reset()

func (*ResponseOfferSnapshot) String

func (x *ResponseOfferSnapshot) String() string

type ResponseOfferSnapshot_Result

type ResponseOfferSnapshot_Result int32
const (
	ResponseOfferSnapshot_UNKNOWN       ResponseOfferSnapshot_Result = 0 // Unknown result, abort all snapshot restoration
	ResponseOfferSnapshot_ACCEPT        ResponseOfferSnapshot_Result = 1 // Snapshot accepted, apply chunks
	ResponseOfferSnapshot_ABORT         ResponseOfferSnapshot_Result = 2 // Abort all snapshot restoration
	ResponseOfferSnapshot_REJECT        ResponseOfferSnapshot_Result = 3 // Reject this specific snapshot, try others
	ResponseOfferSnapshot_REJECT_FORMAT ResponseOfferSnapshot_Result = 4 // Reject all snapshots of this format, try others
	ResponseOfferSnapshot_REJECT_SENDER ResponseOfferSnapshot_Result = 5 // Reject all snapshots from the sender(s), try others
)

func (ResponseOfferSnapshot_Result) Descriptor

func (ResponseOfferSnapshot_Result) Enum

func (ResponseOfferSnapshot_Result) EnumDescriptor deprecated

func (ResponseOfferSnapshot_Result) EnumDescriptor() ([]byte, []int)

Deprecated: Use ResponseOfferSnapshot_Result.Descriptor instead.

func (ResponseOfferSnapshot_Result) Number

func (ResponseOfferSnapshot_Result) String

func (ResponseOfferSnapshot_Result) Type

type ResponseQuery

type ResponseQuery struct {
	Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// bytes data = 2; // use "value" instead.
	Log       string           `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`   // nondeterministic
	Info      string           `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"` // nondeterministic
	Index     int64            `protobuf:"varint,5,opt,name=index,proto3" json:"index,omitempty"`
	Key       []byte           `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
	Value     []byte           `protobuf:"bytes,7,opt,name=value,proto3" json:"value,omitempty"`
	ProofOps  *crypto.ProofOps `protobuf:"bytes,8,opt,name=proof_ops,json=proofOps,proto3" json:"proof_ops,omitempty"`
	Height    int64            `protobuf:"varint,9,opt,name=height,proto3" json:"height,omitempty"`
	Codespace string           `protobuf:"bytes,10,opt,name=codespace,proto3" json:"codespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseQuery) Descriptor deprecated

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

Deprecated: Use ResponseQuery.ProtoReflect.Descriptor instead.

func (*ResponseQuery) GetCode

func (x *ResponseQuery) GetCode() uint32

func (*ResponseQuery) GetCodespace

func (x *ResponseQuery) GetCodespace() string

func (*ResponseQuery) GetHeight

func (x *ResponseQuery) GetHeight() int64

func (*ResponseQuery) GetIndex

func (x *ResponseQuery) GetIndex() int64

func (*ResponseQuery) GetInfo

func (x *ResponseQuery) GetInfo() string

func (*ResponseQuery) GetKey

func (x *ResponseQuery) GetKey() []byte

func (*ResponseQuery) GetLog

func (x *ResponseQuery) GetLog() string

func (*ResponseQuery) GetProofOps

func (x *ResponseQuery) GetProofOps() *crypto.ProofOps

func (*ResponseQuery) GetValue

func (x *ResponseQuery) GetValue() []byte

func (*ResponseQuery) ProtoMessage

func (*ResponseQuery) ProtoMessage()

func (*ResponseQuery) ProtoReflect

func (x *ResponseQuery) ProtoReflect() protoreflect.Message

func (*ResponseQuery) Reset

func (x *ResponseQuery) Reset()

func (*ResponseQuery) String

func (x *ResponseQuery) String() string

type ResponseSetOption

type ResponseSetOption struct {
	Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// bytes data = 2;
	Log  string `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`
	Info string `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

nondeterministic

func (*ResponseSetOption) Descriptor deprecated

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

Deprecated: Use ResponseSetOption.ProtoReflect.Descriptor instead.

func (*ResponseSetOption) GetCode

func (x *ResponseSetOption) GetCode() uint32

func (*ResponseSetOption) GetInfo

func (x *ResponseSetOption) GetInfo() string

func (*ResponseSetOption) GetLog

func (x *ResponseSetOption) GetLog() string

func (*ResponseSetOption) ProtoMessage

func (*ResponseSetOption) ProtoMessage()

func (*ResponseSetOption) ProtoReflect

func (x *ResponseSetOption) ProtoReflect() protoreflect.Message

func (*ResponseSetOption) Reset

func (x *ResponseSetOption) Reset()

func (*ResponseSetOption) String

func (x *ResponseSetOption) String() string

type Response_ApplySnapshotChunk

type Response_ApplySnapshotChunk struct {
	ApplySnapshotChunk *ResponseApplySnapshotChunk `protobuf:"bytes,16,opt,name=apply_snapshot_chunk,json=applySnapshotChunk,proto3,oneof"`
}

type Response_BeginBlock

type Response_BeginBlock struct {
	BeginBlock *ResponseBeginBlock `protobuf:"bytes,8,opt,name=begin_block,json=beginBlock,proto3,oneof"`
}

type Response_CheckTx

type Response_CheckTx struct {
	CheckTx *ResponseCheckTx `protobuf:"bytes,9,opt,name=check_tx,json=checkTx,proto3,oneof"`
}

type Response_Commit

type Response_Commit struct {
	Commit *ResponseCommit `protobuf:"bytes,12,opt,name=commit,proto3,oneof"`
}

type Response_DeliverTx

type Response_DeliverTx struct {
	DeliverTx *ResponseDeliverTx `protobuf:"bytes,10,opt,name=deliver_tx,json=deliverTx,proto3,oneof"`
}

type Response_Echo

type Response_Echo struct {
	Echo *ResponseEcho `protobuf:"bytes,2,opt,name=echo,proto3,oneof"`
}

type Response_EndBlock

type Response_EndBlock struct {
	EndBlock *ResponseEndBlock `protobuf:"bytes,11,opt,name=end_block,json=endBlock,proto3,oneof"`
}

type Response_Exception

type Response_Exception struct {
	Exception *ResponseException `protobuf:"bytes,1,opt,name=exception,proto3,oneof"`
}

type Response_Flush

type Response_Flush struct {
	Flush *ResponseFlush `protobuf:"bytes,3,opt,name=flush,proto3,oneof"`
}

type Response_Info

type Response_Info struct {
	Info *ResponseInfo `protobuf:"bytes,4,opt,name=info,proto3,oneof"`
}

type Response_InitChain

type Response_InitChain struct {
	InitChain *ResponseInitChain `protobuf:"bytes,6,opt,name=init_chain,json=initChain,proto3,oneof"`
}

type Response_ListSnapshots

type Response_ListSnapshots struct {
	ListSnapshots *ResponseListSnapshots `protobuf:"bytes,13,opt,name=list_snapshots,json=listSnapshots,proto3,oneof"`
}

type Response_LoadSnapshotChunk

type Response_LoadSnapshotChunk struct {
	LoadSnapshotChunk *ResponseLoadSnapshotChunk `protobuf:"bytes,15,opt,name=load_snapshot_chunk,json=loadSnapshotChunk,proto3,oneof"`
}

type Response_OfferSnapshot

type Response_OfferSnapshot struct {
	OfferSnapshot *ResponseOfferSnapshot `protobuf:"bytes,14,opt,name=offer_snapshot,json=offerSnapshot,proto3,oneof"`
}

type Response_Query

type Response_Query struct {
	Query *ResponseQuery `protobuf:"bytes,7,opt,name=query,proto3,oneof"`
}

type Response_SetOption

type Response_SetOption struct {
	SetOption *ResponseSetOption `protobuf:"bytes,5,opt,name=set_option,json=setOption,proto3,oneof"`
}

type Snapshot

type Snapshot struct {
	Height   uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`    // The height at which the snapshot was taken
	Format   uint32 `protobuf:"varint,2,opt,name=format,proto3" json:"format,omitempty"`    // The application-specific snapshot format
	Chunks   uint32 `protobuf:"varint,3,opt,name=chunks,proto3" json:"chunks,omitempty"`    // Number of chunks in the snapshot
	Hash     []byte `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`         // Arbitrary snapshot hash, equal only if identical
	Metadata []byte `protobuf:"bytes,5,opt,name=metadata,proto3" json:"metadata,omitempty"` // Arbitrary application metadata
	// contains filtered or unexported fields
}

func (*Snapshot) Descriptor deprecated

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

Deprecated: Use Snapshot.ProtoReflect.Descriptor instead.

func (*Snapshot) GetChunks

func (x *Snapshot) GetChunks() uint32

func (*Snapshot) GetFormat

func (x *Snapshot) GetFormat() uint32

func (*Snapshot) GetHash

func (x *Snapshot) GetHash() []byte

func (*Snapshot) GetHeight

func (x *Snapshot) GetHeight() uint64

func (*Snapshot) GetMetadata

func (x *Snapshot) GetMetadata() []byte

func (*Snapshot) ProtoMessage

func (*Snapshot) ProtoMessage()

func (*Snapshot) ProtoReflect

func (x *Snapshot) ProtoReflect() protoreflect.Message

func (*Snapshot) Reset

func (x *Snapshot) Reset()

func (*Snapshot) String

func (x *Snapshot) String() string

type TxResult

type TxResult struct {
	Height int64              `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Index  uint32             `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	Tx     []byte             `protobuf:"bytes,3,opt,name=tx,proto3" json:"tx,omitempty"`
	Result *ResponseDeliverTx `protobuf:"bytes,4,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

TxResult contains results of executing the transaction.

One usage is indexing transaction results.

func (*TxResult) Descriptor deprecated

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

Deprecated: Use TxResult.ProtoReflect.Descriptor instead.

func (*TxResult) GetHeight

func (x *TxResult) GetHeight() int64

func (*TxResult) GetIndex

func (x *TxResult) GetIndex() uint32

func (*TxResult) GetResult

func (x *TxResult) GetResult() *ResponseDeliverTx

func (*TxResult) GetTx

func (x *TxResult) GetTx() []byte

func (*TxResult) ProtoMessage

func (*TxResult) ProtoMessage()

func (*TxResult) ProtoReflect

func (x *TxResult) ProtoReflect() protoreflect.Message

func (*TxResult) Reset

func (x *TxResult) Reset()

func (*TxResult) String

func (x *TxResult) String() string

type UnimplementedABCIApplicationServer

type UnimplementedABCIApplicationServer struct {
}

UnimplementedABCIApplicationServer must be embedded to have forward compatible implementations.

func (UnimplementedABCIApplicationServer) ApplySnapshotChunk

func (UnimplementedABCIApplicationServer) BeginBlock

func (UnimplementedABCIApplicationServer) CheckTx

func (UnimplementedABCIApplicationServer) Commit

func (UnimplementedABCIApplicationServer) DeliverTx

func (UnimplementedABCIApplicationServer) Echo

func (UnimplementedABCIApplicationServer) EndBlock

func (UnimplementedABCIApplicationServer) Flush

func (UnimplementedABCIApplicationServer) Info

func (UnimplementedABCIApplicationServer) InitChain

func (UnimplementedABCIApplicationServer) ListSnapshots

func (UnimplementedABCIApplicationServer) LoadSnapshotChunk

func (UnimplementedABCIApplicationServer) OfferSnapshot

func (UnimplementedABCIApplicationServer) Query

func (UnimplementedABCIApplicationServer) SetOption

type UnsafeABCIApplicationServer

type UnsafeABCIApplicationServer interface {
	// contains filtered or unexported methods
}

UnsafeABCIApplicationServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ABCIApplicationServer will result in compilation errors.

type Validator

type Validator struct {
	Address []byte `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // The first 20 bytes of SHA256(public key)
	// PubKey pub_key = 2 [(gogoproto.nullable)=false];
	Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` // The voting power
	// contains filtered or unexported fields
}

Validator

func (*Validator) Descriptor deprecated

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

Deprecated: Use Validator.ProtoReflect.Descriptor instead.

func (*Validator) GetAddress

func (x *Validator) GetAddress() []byte

func (*Validator) GetPower

func (x *Validator) GetPower() int64

func (*Validator) ProtoMessage

func (*Validator) ProtoMessage()

func (*Validator) ProtoReflect

func (x *Validator) ProtoReflect() protoreflect.Message

func (*Validator) Reset

func (x *Validator) Reset()

func (*Validator) String

func (x *Validator) String() string

type ValidatorUpdate

type ValidatorUpdate struct {
	PubKey *crypto.PublicKey `protobuf:"bytes,1,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	Power  int64             `protobuf:"varint,2,opt,name=power,proto3" json:"power,omitempty"`
	// contains filtered or unexported fields
}

ValidatorUpdate

func (*ValidatorUpdate) Descriptor deprecated

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

Deprecated: Use ValidatorUpdate.ProtoReflect.Descriptor instead.

func (*ValidatorUpdate) GetPower

func (x *ValidatorUpdate) GetPower() int64

func (*ValidatorUpdate) GetPubKey

func (x *ValidatorUpdate) GetPubKey() *crypto.PublicKey

func (*ValidatorUpdate) ProtoMessage

func (*ValidatorUpdate) ProtoMessage()

func (*ValidatorUpdate) ProtoReflect

func (x *ValidatorUpdate) ProtoReflect() protoreflect.Message

func (*ValidatorUpdate) Reset

func (x *ValidatorUpdate) Reset()

func (*ValidatorUpdate) String

func (x *ValidatorUpdate) String() string

type VoteInfo

type VoteInfo struct {
	Validator       *Validator `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator,omitempty"`
	SignedLastBlock bool       `protobuf:"varint,2,opt,name=signed_last_block,json=signedLastBlock,proto3" json:"signed_last_block,omitempty"`
	// contains filtered or unexported fields
}

VoteInfo

func (*VoteInfo) Descriptor deprecated

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

Deprecated: Use VoteInfo.ProtoReflect.Descriptor instead.

func (*VoteInfo) GetSignedLastBlock

func (x *VoteInfo) GetSignedLastBlock() bool

func (*VoteInfo) GetValidator

func (x *VoteInfo) GetValidator() *Validator

func (*VoteInfo) ProtoMessage

func (*VoteInfo) ProtoMessage()

func (*VoteInfo) ProtoReflect

func (x *VoteInfo) ProtoReflect() protoreflect.Message

func (*VoteInfo) Reset

func (x *VoteInfo) Reset()

func (*VoteInfo) String

func (x *VoteInfo) String() string

Jump to

Keyboard shortcuts

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