types

package
v0.0.0-...-e0cfe8b Latest Latest
Warning

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

Go to latest
Published: May 24, 2021 License: BSD-3-Clause Imports: 8 Imported by: 19

Documentation

Index

Constants

This section is empty.

Variables

View Source
var EncodingType_name = map[int32]string{
	0: "JSON",
	1: "PROTOBUF3",
}
View Source
var EncodingType_value = map[string]int32{
	"JSON":      0,
	"PROTOBUF3": 1,
}

Functions

func RegisterAPIServer

func RegisterAPIServer(s *grpc.Server, srv APIServer)

func RegisterContractServer

func RegisterContractServer(s *grpc.Server, srv ContractServer)

Types

type APIClient

type APIClient interface {
	Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error)
	Has(ctx context.Context, in *HasRequest, opts ...grpc.CallOption) (*HasResponse, error)
	Range(ctx context.Context, in *RangeRequest, opts ...grpc.CallOption) (*RangeResponse, error)
	StaticCall(ctx context.Context, in *CallRequest, opts ...grpc.CallOption) (*CallResponse, error)
	Resolve(ctx context.Context, in *ResolveRequest, opts ...grpc.CallOption) (*ResolveResponse, error)
	Emit(ctx context.Context, in *EmitRequest, opts ...grpc.CallOption) (*EmitResponse, error)
	GetEvmTxReceipt(ctx context.Context, in *EvmTxReceiptRequest, opts ...grpc.CallOption) (*EvmTxReceipt, error)
	Set(ctx context.Context, in *SetRequest, opts ...grpc.CallOption) (*SetResponse, error)
	Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
	Call(ctx context.Context, in *CallRequest, opts ...grpc.CallOption) (*CallResponse, error)
	ContractRecord(ctx context.Context, in *ContractRecordRequest, opts ...grpc.CallOption) (*ContractRecordResponse, error)
	FeatureEnabled(ctx context.Context, in *FeatureEnabledRequest, opts ...grpc.CallOption) (*FeatureEnabledResponse, error)
}

func NewAPIClient

func NewAPIClient(cc *grpc.ClientConn) APIClient

type CallRequest

type CallRequest struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	Input                []byte         `protobuf:"bytes,2,opt,name=input,proto3" json:"input,omitempty"`
	VmType               vm.VMType      `protobuf:"varint,3,opt,name=vm_type,json=vmType,proto3,enum=VMType" json:"vm_type,omitempty"`
	Value                *types.BigUInt `protobuf:"bytes,4,opt,name=value" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CallRequest) Descriptor

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

func (*CallRequest) GetAddress

func (m *CallRequest) GetAddress() *types.Address

func (*CallRequest) GetInput

func (m *CallRequest) GetInput() []byte

func (*CallRequest) GetValue

func (m *CallRequest) GetValue() *types.BigUInt

func (*CallRequest) GetVmType

func (m *CallRequest) GetVmType() vm.VMType

func (*CallRequest) ProtoMessage

func (*CallRequest) ProtoMessage()

func (*CallRequest) Reset

func (m *CallRequest) Reset()

func (*CallRequest) String

func (m *CallRequest) String() string

func (*CallRequest) XXX_DiscardUnknown

func (m *CallRequest) XXX_DiscardUnknown()

func (*CallRequest) XXX_Marshal

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

func (*CallRequest) XXX_Merge

func (dst *CallRequest) XXX_Merge(src proto.Message)

func (*CallRequest) XXX_Size

func (m *CallRequest) XXX_Size() int

func (*CallRequest) XXX_Unmarshal

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

type CallResponse

type CallResponse struct {
	Output               []byte   `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CallResponse) Descriptor

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

func (*CallResponse) GetOutput

func (m *CallResponse) GetOutput() []byte

func (*CallResponse) ProtoMessage

func (*CallResponse) ProtoMessage()

func (*CallResponse) Reset

func (m *CallResponse) Reset()

func (*CallResponse) String

func (m *CallResponse) String() string

func (*CallResponse) XXX_DiscardUnknown

func (m *CallResponse) XXX_DiscardUnknown()

func (*CallResponse) XXX_Marshal

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

func (*CallResponse) XXX_Merge

func (dst *CallResponse) XXX_Merge(src proto.Message)

func (*CallResponse) XXX_Size

func (m *CallResponse) XXX_Size() int

func (*CallResponse) XXX_Unmarshal

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

type Context

type Context struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Context) Descriptor

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

func (*Context) ProtoMessage

func (*Context) ProtoMessage()

func (*Context) Reset

func (m *Context) Reset()

func (*Context) String

func (m *Context) String() string

func (*Context) XXX_DiscardUnknown

func (m *Context) XXX_DiscardUnknown()

func (*Context) XXX_Marshal

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

func (*Context) XXX_Merge

func (dst *Context) XXX_Merge(src proto.Message)

func (*Context) XXX_Size

func (m *Context) XXX_Size() int

func (*Context) XXX_Unmarshal

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

type ContractCallRequest

type ContractCallRequest struct {
	Block                *types.BlockHeader `protobuf:"bytes,1,opt,name=block" json:"block,omitempty"`
	Message              *Message           `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
	ContractAddress      *types.Address     `protobuf:"bytes,3,opt,name=contract_address,json=contractAddress" json:"contract_address,omitempty"`
	ApiServer            uint32             `protobuf:"varint,4,opt,name=api_server,json=apiServer,proto3" json:"api_server,omitempty"`
	Request              *Request           `protobuf:"bytes,5,opt,name=request" json:"request,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ContractCallRequest) Descriptor

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

func (*ContractCallRequest) GetApiServer

func (m *ContractCallRequest) GetApiServer() uint32

func (*ContractCallRequest) GetBlock

func (m *ContractCallRequest) GetBlock() *types.BlockHeader

func (*ContractCallRequest) GetContractAddress

func (m *ContractCallRequest) GetContractAddress() *types.Address

func (*ContractCallRequest) GetMessage

func (m *ContractCallRequest) GetMessage() *Message

func (*ContractCallRequest) GetRequest

func (m *ContractCallRequest) GetRequest() *Request

func (*ContractCallRequest) ProtoMessage

func (*ContractCallRequest) ProtoMessage()

func (*ContractCallRequest) Reset

func (m *ContractCallRequest) Reset()

func (*ContractCallRequest) String

func (m *ContractCallRequest) String() string

func (*ContractCallRequest) XXX_DiscardUnknown

func (m *ContractCallRequest) XXX_DiscardUnknown()

func (*ContractCallRequest) XXX_Marshal

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

func (*ContractCallRequest) XXX_Merge

func (dst *ContractCallRequest) XXX_Merge(src proto.Message)

func (*ContractCallRequest) XXX_Size

func (m *ContractCallRequest) XXX_Size() int

func (*ContractCallRequest) XXX_Unmarshal

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

type ContractClient

type ContractClient interface {
	Meta(ctx context.Context, in *MetaRequest, opts ...grpc.CallOption) (*ContractMeta, error)
	Init(ctx context.Context, in *ContractCallRequest, opts ...grpc.CallOption) (*InitResponse, error)
	Call(ctx context.Context, in *ContractCallRequest, opts ...grpc.CallOption) (*Response, error)
	StaticCall(ctx context.Context, in *ContractCallRequest, opts ...grpc.CallOption) (*Response, error)
}

func NewContractClient

func NewContractClient(cc *grpc.ClientConn) ContractClient

type ContractEventsResult

type ContractEventsResult struct {
	Events               []*EventData `protobuf:"bytes,1,rep,name=events" json:"events,omitempty"`
	FromBlock            uint64       `protobuf:"varint,2,opt,name=from_block,json=fromBlock,proto3" json:"from_block,string,omitempty"`
	ToBlock              uint64       `protobuf:"varint,3,opt,name=to_block,json=toBlock,proto3" json:"to_block,string,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ContractEventsResult) Descriptor

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

func (*ContractEventsResult) GetEvents

func (m *ContractEventsResult) GetEvents() []*EventData

func (*ContractEventsResult) GetFromBlock

func (m *ContractEventsResult) GetFromBlock() uint64

func (*ContractEventsResult) GetToBlock

func (m *ContractEventsResult) GetToBlock() uint64

func (*ContractEventsResult) ProtoMessage

func (*ContractEventsResult) ProtoMessage()

func (*ContractEventsResult) Reset

func (m *ContractEventsResult) Reset()

func (*ContractEventsResult) String

func (m *ContractEventsResult) String() string

func (*ContractEventsResult) XXX_DiscardUnknown

func (m *ContractEventsResult) XXX_DiscardUnknown()

func (*ContractEventsResult) XXX_Marshal

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

func (*ContractEventsResult) XXX_Merge

func (dst *ContractEventsResult) XXX_Merge(src proto.Message)

func (*ContractEventsResult) XXX_Size

func (m *ContractEventsResult) XXX_Size() int

func (*ContractEventsResult) XXX_Unmarshal

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

type ContractMeta

type ContractMeta struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Version              string   `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	MetricAddr           string   `protobuf:"bytes,3,opt,name=metric_addr,json=metricAddr,proto3" json:"metric_addr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContractMeta) Descriptor

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

func (*ContractMeta) GetMetricAddr

func (m *ContractMeta) GetMetricAddr() string

func (*ContractMeta) GetName

func (m *ContractMeta) GetName() string

func (*ContractMeta) GetVersion

func (m *ContractMeta) GetVersion() string

func (*ContractMeta) ProtoMessage

func (*ContractMeta) ProtoMessage()

func (*ContractMeta) Reset

func (m *ContractMeta) Reset()

func (*ContractMeta) String

func (m *ContractMeta) String() string

func (*ContractMeta) XXX_DiscardUnknown

func (m *ContractMeta) XXX_DiscardUnknown()

func (*ContractMeta) XXX_Marshal

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

func (*ContractMeta) XXX_Merge

func (dst *ContractMeta) XXX_Merge(src proto.Message)

func (*ContractMeta) XXX_Size

func (m *ContractMeta) XXX_Size() int

func (*ContractMeta) XXX_Unmarshal

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

type ContractMethodCall

type ContractMethodCall struct {
	Method               string   `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
	Args                 []byte   `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContractMethodCall) Descriptor

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

func (*ContractMethodCall) GetArgs

func (m *ContractMethodCall) GetArgs() []byte

func (*ContractMethodCall) GetMethod

func (m *ContractMethodCall) GetMethod() string

func (*ContractMethodCall) ProtoMessage

func (*ContractMethodCall) ProtoMessage()

func (*ContractMethodCall) Reset

func (m *ContractMethodCall) Reset()

func (*ContractMethodCall) String

func (m *ContractMethodCall) String() string

func (*ContractMethodCall) XXX_DiscardUnknown

func (m *ContractMethodCall) XXX_DiscardUnknown()

func (*ContractMethodCall) XXX_Marshal

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

func (*ContractMethodCall) XXX_Merge

func (dst *ContractMethodCall) XXX_Merge(src proto.Message)

func (*ContractMethodCall) XXX_Size

func (m *ContractMethodCall) XXX_Size() int

func (*ContractMethodCall) XXX_Unmarshal

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

type ContractRecordRequest

type ContractRecordRequest struct {
	Contract             *types.Address `protobuf:"bytes,1,opt,name=contract" json:"contract,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ContractRecordRequest) Descriptor

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

func (*ContractRecordRequest) GetContract

func (m *ContractRecordRequest) GetContract() *types.Address

func (*ContractRecordRequest) ProtoMessage

func (*ContractRecordRequest) ProtoMessage()

func (*ContractRecordRequest) Reset

func (m *ContractRecordRequest) Reset()

func (*ContractRecordRequest) String

func (m *ContractRecordRequest) String() string

func (*ContractRecordRequest) XXX_DiscardUnknown

func (m *ContractRecordRequest) XXX_DiscardUnknown()

func (*ContractRecordRequest) XXX_Marshal

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

func (*ContractRecordRequest) XXX_Merge

func (dst *ContractRecordRequest) XXX_Merge(src proto.Message)

func (*ContractRecordRequest) XXX_Size

func (m *ContractRecordRequest) XXX_Size() int

func (*ContractRecordRequest) XXX_Unmarshal

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

type ContractRecordResponse

type ContractRecordResponse struct {
	ContractName         string         `protobuf:"bytes,1,opt,name=contract_name,json=contractName,proto3" json:"contract_name,omitempty"`
	ContractAddress      *types.Address `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress" json:"contract_address,omitempty"`
	CreatorAddress       *types.Address `protobuf:"bytes,3,opt,name=creator_address,json=creatorAddress" json:"creator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ContractRecordResponse) Descriptor

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

func (*ContractRecordResponse) GetContractAddress

func (m *ContractRecordResponse) GetContractAddress() *types.Address

func (*ContractRecordResponse) GetContractName

func (m *ContractRecordResponse) GetContractName() string

func (*ContractRecordResponse) GetCreatorAddress

func (m *ContractRecordResponse) GetCreatorAddress() *types.Address

func (*ContractRecordResponse) ProtoMessage

func (*ContractRecordResponse) ProtoMessage()

func (*ContractRecordResponse) Reset

func (m *ContractRecordResponse) Reset()

func (*ContractRecordResponse) String

func (m *ContractRecordResponse) String() string

func (*ContractRecordResponse) XXX_DiscardUnknown

func (m *ContractRecordResponse) XXX_DiscardUnknown()

func (*ContractRecordResponse) XXX_Marshal

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

func (*ContractRecordResponse) XXX_Merge

func (dst *ContractRecordResponse) XXX_Merge(src proto.Message)

func (*ContractRecordResponse) XXX_Size

func (m *ContractRecordResponse) XXX_Size() int

func (*ContractRecordResponse) XXX_Unmarshal

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

type DeleteRequest

type DeleteRequest struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRequest) Descriptor

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

func (*DeleteRequest) GetKey

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

func (*DeleteRequest) ProtoMessage

func (*DeleteRequest) ProtoMessage()

func (*DeleteRequest) Reset

func (m *DeleteRequest) Reset()

func (*DeleteRequest) String

func (m *DeleteRequest) String() string

func (*DeleteRequest) XXX_DiscardUnknown

func (m *DeleteRequest) XXX_DiscardUnknown()

func (*DeleteRequest) XXX_Marshal

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

func (*DeleteRequest) XXX_Merge

func (dst *DeleteRequest) XXX_Merge(src proto.Message)

func (*DeleteRequest) XXX_Size

func (m *DeleteRequest) XXX_Size() int

func (*DeleteRequest) XXX_Unmarshal

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

type DeleteResponse

type DeleteResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteResponse) Descriptor

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

func (*DeleteResponse) ProtoMessage

func (*DeleteResponse) ProtoMessage()

func (*DeleteResponse) Reset

func (m *DeleteResponse) Reset()

func (*DeleteResponse) String

func (m *DeleteResponse) String() string

func (*DeleteResponse) XXX_DiscardUnknown

func (m *DeleteResponse) XXX_DiscardUnknown()

func (*DeleteResponse) XXX_Marshal

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

func (*DeleteResponse) XXX_Merge

func (dst *DeleteResponse) XXX_Merge(src proto.Message)

func (*DeleteResponse) XXX_Size

func (m *DeleteResponse) XXX_Size() int

func (*DeleteResponse) XXX_Unmarshal

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

type EmitRequest

type EmitRequest struct {
	Data                 []byte   `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Topics               []string `protobuf:"bytes,2,rep,name=topics" json:"topics,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EmitRequest) Descriptor

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

func (*EmitRequest) GetData

func (m *EmitRequest) GetData() []byte

func (*EmitRequest) GetTopics

func (m *EmitRequest) GetTopics() []string

func (*EmitRequest) ProtoMessage

func (*EmitRequest) ProtoMessage()

func (*EmitRequest) Reset

func (m *EmitRequest) Reset()

func (*EmitRequest) String

func (m *EmitRequest) String() string

func (*EmitRequest) XXX_DiscardUnknown

func (m *EmitRequest) XXX_DiscardUnknown()

func (*EmitRequest) XXX_Marshal

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

func (*EmitRequest) XXX_Merge

func (dst *EmitRequest) XXX_Merge(src proto.Message)

func (*EmitRequest) XXX_Size

func (m *EmitRequest) XXX_Size() int

func (*EmitRequest) XXX_Unmarshal

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

type EmitResponse

type EmitResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EmitResponse) Descriptor

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

func (*EmitResponse) ProtoMessage

func (*EmitResponse) ProtoMessage()

func (*EmitResponse) Reset

func (m *EmitResponse) Reset()

func (*EmitResponse) String

func (m *EmitResponse) String() string

func (*EmitResponse) XXX_DiscardUnknown

func (m *EmitResponse) XXX_DiscardUnknown()

func (*EmitResponse) XXX_Marshal

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

func (*EmitResponse) XXX_Merge

func (dst *EmitResponse) XXX_Merge(src proto.Message)

func (*EmitResponse) XXX_Size

func (m *EmitResponse) XXX_Size() int

func (*EmitResponse) XXX_Unmarshal

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

type EncodingType

type EncodingType int32
const (
	EncodingType_JSON      EncodingType = 0
	EncodingType_PROTOBUF3 EncodingType = 1
)

func (EncodingType) EnumDescriptor

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

func (EncodingType) String

func (x EncodingType) String() string

type EthBlockHashList

type EthBlockHashList struct {
	EthBlockHash         [][]byte `protobuf:"bytes,1,rep,name=eth_block_hash,json=ethBlockHash" json:"eth_block_hash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthBlockHashList) Descriptor

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

func (*EthBlockHashList) GetEthBlockHash

func (m *EthBlockHashList) GetEthBlockHash() [][]byte

func (*EthBlockHashList) ProtoMessage

func (*EthBlockHashList) ProtoMessage()

func (*EthBlockHashList) Reset

func (m *EthBlockHashList) Reset()

func (*EthBlockHashList) String

func (m *EthBlockHashList) String() string

func (*EthBlockHashList) XXX_DiscardUnknown

func (m *EthBlockHashList) XXX_DiscardUnknown()

func (*EthBlockHashList) XXX_Marshal

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

func (*EthBlockHashList) XXX_Merge

func (dst *EthBlockHashList) XXX_Merge(src proto.Message)

func (*EthBlockHashList) XXX_Size

func (m *EthBlockHashList) XXX_Size() int

func (*EthBlockHashList) XXX_Unmarshal

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

type EthBlockInfo

type EthBlockInfo struct {
	Number               int64    `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Hash                 []byte   `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	ParentHash           []byte   `protobuf:"bytes,3,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"`
	Nonce                []byte   `protobuf:"bytes,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Sha3Uncles           []byte   `protobuf:"bytes,5,opt,name=sha3_uncles,json=sha3Uncles,proto3" json:"sha3_uncles,omitempty"`
	LogsBloom            []byte   `protobuf:"bytes,6,opt,name=logs_bloom,json=logsBloom,proto3" json:"logs_bloom,omitempty"`
	TransactionsRoot     []byte   `protobuf:"bytes,7,opt,name=transactions_root,json=transactionsRoot,proto3" json:"transactions_root,omitempty"`
	StateRoot            []byte   `protobuf:"bytes,8,opt,name=state_root,json=stateRoot,proto3" json:"state_root,omitempty"`
	ReceiptsRoot         []byte   `protobuf:"bytes,9,opt,name=receipts_root,json=receiptsRoot,proto3" json:"receipts_root,omitempty"`
	Miner                []byte   `protobuf:"bytes,10,opt,name=miner,proto3" json:"miner,omitempty"`
	Difficulty           int64    `protobuf:"varint,11,opt,name=difficulty,proto3" json:"difficulty,omitempty"`
	TotalDifficulty      int64    `protobuf:"varint,12,opt,name=total_difficulty,json=totalDifficulty,proto3" json:"total_difficulty,omitempty"`
	ExtraData            []byte   `protobuf:"bytes,13,opt,name=extra_data,json=extraData,proto3" json:"extra_data,omitempty"`
	Size_                int64    `protobuf:"varint,14,opt,name=size,proto3" json:"size,omitempty"`
	GasLimit             int64    `protobuf:"varint,15,opt,name=gasLimit,proto3" json:"gasLimit,omitempty"`
	GasUsed              int64    `protobuf:"varint,16,opt,name=gasUsed,proto3" json:"gasUsed,omitempty"`
	Timestamp            int64    `protobuf:"varint,17,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Transactions         [][]byte `protobuf:"bytes,18,rep,name=transactions" json:"transactions,omitempty"`
	Uncles               [][]byte `protobuf:"bytes,19,rep,name=uncles" json:"uncles,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthBlockInfo) Descriptor

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

func (*EthBlockInfo) GetDifficulty

func (m *EthBlockInfo) GetDifficulty() int64

func (*EthBlockInfo) GetExtraData

func (m *EthBlockInfo) GetExtraData() []byte

func (*EthBlockInfo) GetGasLimit

func (m *EthBlockInfo) GetGasLimit() int64

func (*EthBlockInfo) GetGasUsed

func (m *EthBlockInfo) GetGasUsed() int64

func (*EthBlockInfo) GetHash

func (m *EthBlockInfo) GetHash() []byte

func (*EthBlockInfo) GetLogsBloom

func (m *EthBlockInfo) GetLogsBloom() []byte

func (*EthBlockInfo) GetMiner

func (m *EthBlockInfo) GetMiner() []byte

func (*EthBlockInfo) GetNonce

func (m *EthBlockInfo) GetNonce() []byte

func (*EthBlockInfo) GetNumber

func (m *EthBlockInfo) GetNumber() int64

func (*EthBlockInfo) GetParentHash

func (m *EthBlockInfo) GetParentHash() []byte

func (*EthBlockInfo) GetReceiptsRoot

func (m *EthBlockInfo) GetReceiptsRoot() []byte

func (*EthBlockInfo) GetSha3Uncles

func (m *EthBlockInfo) GetSha3Uncles() []byte

func (*EthBlockInfo) GetSize_

func (m *EthBlockInfo) GetSize_() int64

func (*EthBlockInfo) GetStateRoot

func (m *EthBlockInfo) GetStateRoot() []byte

func (*EthBlockInfo) GetTimestamp

func (m *EthBlockInfo) GetTimestamp() int64

func (*EthBlockInfo) GetTotalDifficulty

func (m *EthBlockInfo) GetTotalDifficulty() int64

func (*EthBlockInfo) GetTransactions

func (m *EthBlockInfo) GetTransactions() [][]byte

func (*EthBlockInfo) GetTransactionsRoot

func (m *EthBlockInfo) GetTransactionsRoot() []byte

func (*EthBlockInfo) GetUncles

func (m *EthBlockInfo) GetUncles() [][]byte

func (*EthBlockInfo) ProtoMessage

func (*EthBlockInfo) ProtoMessage()

func (*EthBlockInfo) Reset

func (m *EthBlockInfo) Reset()

func (*EthBlockInfo) String

func (m *EthBlockInfo) String() string

func (*EthBlockInfo) XXX_DiscardUnknown

func (m *EthBlockInfo) XXX_DiscardUnknown()

func (*EthBlockInfo) XXX_Marshal

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

func (*EthBlockInfo) XXX_Merge

func (dst *EthBlockInfo) XXX_Merge(src proto.Message)

func (*EthBlockInfo) XXX_Size

func (m *EthBlockInfo) XXX_Size() int

func (*EthBlockInfo) XXX_Unmarshal

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

type EthFilterEnvelope

type EthFilterEnvelope struct {
	// Types that are valid to be assigned to Message:
	//	*EthFilterEnvelope_EthBlockHashList
	//	*EthFilterEnvelope_EthFilterLogList
	//	*EthFilterEnvelope_EthTxHashList
	Message              isEthFilterEnvelope_Message `protobuf_oneof:"message"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*EthFilterEnvelope) Descriptor

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

func (*EthFilterEnvelope) GetEthBlockHashList

func (m *EthFilterEnvelope) GetEthBlockHashList() *EthBlockHashList

func (*EthFilterEnvelope) GetEthFilterLogList

func (m *EthFilterEnvelope) GetEthFilterLogList() *EthFilterLogList

func (*EthFilterEnvelope) GetEthTxHashList

func (m *EthFilterEnvelope) GetEthTxHashList() *EthTxHashList

func (*EthFilterEnvelope) GetMessage

func (m *EthFilterEnvelope) GetMessage() isEthFilterEnvelope_Message

func (*EthFilterEnvelope) ProtoMessage

func (*EthFilterEnvelope) ProtoMessage()

func (*EthFilterEnvelope) Reset

func (m *EthFilterEnvelope) Reset()

func (*EthFilterEnvelope) String

func (m *EthFilterEnvelope) String() string

func (*EthFilterEnvelope) XXX_DiscardUnknown

func (m *EthFilterEnvelope) XXX_DiscardUnknown()

func (*EthFilterEnvelope) XXX_Marshal

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

func (*EthFilterEnvelope) XXX_Merge

func (dst *EthFilterEnvelope) XXX_Merge(src proto.Message)

func (*EthFilterEnvelope) XXX_OneofFuncs

func (*EthFilterEnvelope) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*EthFilterEnvelope) XXX_Size

func (m *EthFilterEnvelope) XXX_Size() int

func (*EthFilterEnvelope) XXX_Unmarshal

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

type EthFilterEnvelope_EthBlockHashList

type EthFilterEnvelope_EthBlockHashList struct {
	EthBlockHashList *EthBlockHashList `protobuf:"bytes,1,opt,name=eth_block_hash_list,json=ethBlockHashList,oneof"`
}

type EthFilterEnvelope_EthFilterLogList

type EthFilterEnvelope_EthFilterLogList struct {
	EthFilterLogList *EthFilterLogList `protobuf:"bytes,2,opt,name=eth_filter_log_list,json=ethFilterLogList,oneof"`
}

type EthFilterEnvelope_EthTxHashList

type EthFilterEnvelope_EthTxHashList struct {
	EthTxHashList *EthTxHashList `protobuf:"bytes,3,opt,name=eth_tx_hash_list,json=ethTxHashList,oneof"`
}

type EthFilterLog

type EthFilterLog struct {
	Removed              bool     `protobuf:"varint,1,opt,name=removed,proto3" json:"removed,omitempty"`
	LogIndex             int64    `protobuf:"varint,2,opt,name=log_index,json=logIndex,proto3" json:"log_index,omitempty"`
	TransactionIndex     int32    `protobuf:"varint,3,opt,name=transaction_index,json=transactionIndex,proto3" json:"transaction_index,omitempty"`
	TransactionHash      []byte   `protobuf:"bytes,4,opt,name=transaction_hash,json=transactionHash,proto3" json:"transaction_hash,omitempty"`
	BlockHash            []byte   `protobuf:"bytes,5,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	BlockNumber          int64    `protobuf:"varint,6,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	Address              []byte   `protobuf:"bytes,7,opt,name=address,proto3" json:"address,omitempty"`
	Data                 []byte   `protobuf:"bytes,8,opt,name=data,proto3" json:"data,omitempty"`
	Topics               [][]byte `protobuf:"bytes,9,rep,name=topics" json:"topics,omitempty"`
	BlockTime            int64    `protobuf:"varint,10,opt,name=block_time,json=blockTime,proto3" json:"block_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthFilterLog) Descriptor

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

func (*EthFilterLog) GetAddress

func (m *EthFilterLog) GetAddress() []byte

func (*EthFilterLog) GetBlockHash

func (m *EthFilterLog) GetBlockHash() []byte

func (*EthFilterLog) GetBlockNumber

func (m *EthFilterLog) GetBlockNumber() int64

func (*EthFilterLog) GetBlockTime

func (m *EthFilterLog) GetBlockTime() int64

func (*EthFilterLog) GetData

func (m *EthFilterLog) GetData() []byte

func (*EthFilterLog) GetLogIndex

func (m *EthFilterLog) GetLogIndex() int64

func (*EthFilterLog) GetRemoved

func (m *EthFilterLog) GetRemoved() bool

func (*EthFilterLog) GetTopics

func (m *EthFilterLog) GetTopics() [][]byte

func (*EthFilterLog) GetTransactionHash

func (m *EthFilterLog) GetTransactionHash() []byte

func (*EthFilterLog) GetTransactionIndex

func (m *EthFilterLog) GetTransactionIndex() int32

func (*EthFilterLog) ProtoMessage

func (*EthFilterLog) ProtoMessage()

func (*EthFilterLog) Reset

func (m *EthFilterLog) Reset()

func (*EthFilterLog) String

func (m *EthFilterLog) String() string

func (*EthFilterLog) XXX_DiscardUnknown

func (m *EthFilterLog) XXX_DiscardUnknown()

func (*EthFilterLog) XXX_Marshal

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

func (*EthFilterLog) XXX_Merge

func (dst *EthFilterLog) XXX_Merge(src proto.Message)

func (*EthFilterLog) XXX_Size

func (m *EthFilterLog) XXX_Size() int

func (*EthFilterLog) XXX_Unmarshal

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

type EthFilterLogList

type EthFilterLogList struct {
	EthBlockLogs         []*EthFilterLog `protobuf:"bytes,1,rep,name=eth_block_logs,json=ethBlockLogs" json:"eth_block_logs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*EthFilterLogList) Descriptor

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

func (*EthFilterLogList) GetEthBlockLogs

func (m *EthFilterLogList) GetEthBlockLogs() []*EthFilterLog

func (*EthFilterLogList) ProtoMessage

func (*EthFilterLogList) ProtoMessage()

func (*EthFilterLogList) Reset

func (m *EthFilterLogList) Reset()

func (*EthFilterLogList) String

func (m *EthFilterLogList) String() string

func (*EthFilterLogList) XXX_DiscardUnknown

func (m *EthFilterLogList) XXX_DiscardUnknown()

func (*EthFilterLogList) XXX_Marshal

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

func (*EthFilterLogList) XXX_Merge

func (dst *EthFilterLogList) XXX_Merge(src proto.Message)

func (*EthFilterLogList) XXX_Size

func (m *EthFilterLogList) XXX_Size() int

func (*EthFilterLogList) XXX_Unmarshal

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

type EthMessage

type EthMessage struct {
	Body                 []byte   `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
	Id                   string   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthMessage) Descriptor

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

func (*EthMessage) GetBody

func (m *EthMessage) GetBody() []byte

func (*EthMessage) GetId

func (m *EthMessage) GetId() string

func (*EthMessage) ProtoMessage

func (*EthMessage) ProtoMessage()

func (*EthMessage) Reset

func (m *EthMessage) Reset()

func (*EthMessage) String

func (m *EthMessage) String() string

func (*EthMessage) XXX_DiscardUnknown

func (m *EthMessage) XXX_DiscardUnknown()

func (*EthMessage) XXX_Marshal

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

func (*EthMessage) XXX_Merge

func (dst *EthMessage) XXX_Merge(src proto.Message)

func (*EthMessage) XXX_Size

func (m *EthMessage) XXX_Size() int

func (*EthMessage) XXX_Unmarshal

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

type EthTxHashList

type EthTxHashList struct {
	EthTxHash            [][]byte `protobuf:"bytes,1,rep,name=eth_tx_hash,json=ethTxHash" json:"eth_tx_hash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthTxHashList) Descriptor

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

func (*EthTxHashList) GetEthTxHash

func (m *EthTxHashList) GetEthTxHash() [][]byte

func (*EthTxHashList) ProtoMessage

func (*EthTxHashList) ProtoMessage()

func (*EthTxHashList) Reset

func (m *EthTxHashList) Reset()

func (*EthTxHashList) String

func (m *EthTxHashList) String() string

func (*EthTxHashList) XXX_DiscardUnknown

func (m *EthTxHashList) XXX_DiscardUnknown()

func (*EthTxHashList) XXX_Marshal

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

func (*EthTxHashList) XXX_Merge

func (dst *EthTxHashList) XXX_Merge(src proto.Message)

func (*EthTxHashList) XXX_Size

func (m *EthTxHashList) XXX_Size() int

func (*EthTxHashList) XXX_Unmarshal

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

type EventData

type EventData struct {
	Topics               []string       `protobuf:"bytes,1,rep,name=topics" json:"topics,omitempty"`
	Caller               *types.Address `protobuf:"bytes,2,opt,name=caller" json:"caller,omitempty"`
	Address              *types.Address `protobuf:"bytes,3,opt,name=address" json:"address,omitempty"`
	PluginName           string         `protobuf:"bytes,4,opt,name=plugin_name,json=pluginName,proto3" json:"plugin_name,omitempty"`
	BlockHeight          uint64         `protobuf:"varint,5,opt,name=block_height,json=blockHeight,proto3" json:"block_height,string,omitempty"`
	EncodedBody          []byte         `protobuf:"bytes,6,opt,name=encoded_body,json=encodedBody,proto3" json:"encoded_body,omitempty"`
	OriginalRequest      []byte         `protobuf:"bytes,7,opt,name=original_request,json=originalRequest,proto3" json:"original_request,omitempty"`
	TxHash               []byte         `protobuf:"bytes,8,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	TransactionIndex     uint64         `protobuf:"varint,9,opt,name=transaction_index,json=transactionIndex,proto3" json:"transaction_index,string,omitempty"`
	BlockHash            []byte         `protobuf:"bytes,10,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	BlockTime            int64          `protobuf:"varint,11,opt,name=block_time,json=blockTime,proto3" json:"block_time,string,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*EventData) Descriptor

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

func (*EventData) GetAddress

func (m *EventData) GetAddress() *types.Address

func (*EventData) GetBlockHash

func (m *EventData) GetBlockHash() []byte

func (*EventData) GetBlockHeight

func (m *EventData) GetBlockHeight() uint64

func (*EventData) GetBlockTime

func (m *EventData) GetBlockTime() int64

func (*EventData) GetCaller

func (m *EventData) GetCaller() *types.Address

func (*EventData) GetEncodedBody

func (m *EventData) GetEncodedBody() []byte

func (*EventData) GetOriginalRequest

func (m *EventData) GetOriginalRequest() []byte

func (*EventData) GetPluginName

func (m *EventData) GetPluginName() string

func (*EventData) GetTopics

func (m *EventData) GetTopics() []string

func (*EventData) GetTransactionIndex

func (m *EventData) GetTransactionIndex() uint64

func (*EventData) GetTxHash

func (m *EventData) GetTxHash() []byte

func (*EventData) ProtoMessage

func (*EventData) ProtoMessage()

func (*EventData) Reset

func (m *EventData) Reset()

func (*EventData) String

func (m *EventData) String() string

func (*EventData) XXX_DiscardUnknown

func (m *EventData) XXX_DiscardUnknown()

func (*EventData) XXX_Marshal

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

func (*EventData) XXX_Merge

func (dst *EventData) XXX_Merge(src proto.Message)

func (*EventData) XXX_Size

func (m *EventData) XXX_Size() int

func (*EventData) XXX_Unmarshal

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

type EventDataList

type EventDataList struct {
	Events               []*EventData `protobuf:"bytes,1,rep,name=events" json:"events,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*EventDataList) Descriptor

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

func (*EventDataList) GetEvents

func (m *EventDataList) GetEvents() []*EventData

func (*EventDataList) ProtoMessage

func (*EventDataList) ProtoMessage()

func (*EventDataList) Reset

func (m *EventDataList) Reset()

func (*EventDataList) String

func (m *EventDataList) String() string

func (*EventDataList) XXX_DiscardUnknown

func (m *EventDataList) XXX_DiscardUnknown()

func (*EventDataList) XXX_Marshal

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

func (*EventDataList) XXX_Merge

func (dst *EventDataList) XXX_Merge(src proto.Message)

func (*EventDataList) XXX_Size

func (m *EventDataList) XXX_Size() int

func (*EventDataList) XXX_Unmarshal

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

type EvmTxObject

type EvmTxObject struct {
	Hash                 []byte   `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Nonce                uint64   `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	BlockHash            []byte   `protobuf:"bytes,3,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	BlockNumber          int64    `protobuf:"varint,4,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	TransactionIndex     int32    `protobuf:"varint,5,opt,name=transaction_index,json=transactionIndex,proto3" json:"transaction_index,omitempty"`
	From                 []byte   `protobuf:"bytes,6,opt,name=from,proto3" json:"from,omitempty"`
	To                   []byte   `protobuf:"bytes,7,opt,name=to,proto3" json:"to,omitempty"`
	Value                int64    `protobuf:"varint,8,opt,name=value,proto3" json:"value,omitempty"`
	GasPrice             int64    `protobuf:"varint,9,opt,name=gas_price,json=gasPrice,proto3" json:"gas_price,omitempty"`
	Gas                  int64    `protobuf:"varint,10,opt,name=gas,proto3" json:"gas,omitempty"`
	Input                []byte   `protobuf:"bytes,11,opt,name=input,proto3" json:"input,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EvmTxObject) Descriptor

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

func (*EvmTxObject) GetBlockHash

func (m *EvmTxObject) GetBlockHash() []byte

func (*EvmTxObject) GetBlockNumber

func (m *EvmTxObject) GetBlockNumber() int64

func (*EvmTxObject) GetFrom

func (m *EvmTxObject) GetFrom() []byte

func (*EvmTxObject) GetGas

func (m *EvmTxObject) GetGas() int64

func (*EvmTxObject) GetGasPrice

func (m *EvmTxObject) GetGasPrice() int64

func (*EvmTxObject) GetHash

func (m *EvmTxObject) GetHash() []byte

func (*EvmTxObject) GetInput

func (m *EvmTxObject) GetInput() []byte

func (*EvmTxObject) GetNonce

func (m *EvmTxObject) GetNonce() uint64

func (*EvmTxObject) GetTo

func (m *EvmTxObject) GetTo() []byte

func (*EvmTxObject) GetTransactionIndex

func (m *EvmTxObject) GetTransactionIndex() int32

func (*EvmTxObject) GetValue

func (m *EvmTxObject) GetValue() int64

func (*EvmTxObject) ProtoMessage

func (*EvmTxObject) ProtoMessage()

func (*EvmTxObject) Reset

func (m *EvmTxObject) Reset()

func (*EvmTxObject) String

func (m *EvmTxObject) String() string

func (*EvmTxObject) XXX_DiscardUnknown

func (m *EvmTxObject) XXX_DiscardUnknown()

func (*EvmTxObject) XXX_Marshal

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

func (*EvmTxObject) XXX_Merge

func (dst *EvmTxObject) XXX_Merge(src proto.Message)

func (*EvmTxObject) XXX_Size

func (m *EvmTxObject) XXX_Size() int

func (*EvmTxObject) XXX_Unmarshal

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

type EvmTxReceipt

type EvmTxReceipt struct {
	TransactionIndex     int32          `protobuf:"varint,1,opt,name=transaction_index,json=transactionIndex,proto3" json:"transaction_index,omitempty"`
	BlockHash            []byte         `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	BlockNumber          int64          `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	CumulativeGasUsed    int32          `protobuf:"varint,4,opt,name=cumulative_gas_used,json=cumulativeGasUsed,proto3" json:"cumulative_gas_used,omitempty"`
	GasUsed              int32          `protobuf:"varint,5,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	ContractAddress      []byte         `protobuf:"bytes,6,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	Logs                 []*EventData   `protobuf:"bytes,7,rep,name=logs" json:"logs,omitempty"`
	LogsBloom            []byte         `protobuf:"bytes,8,opt,name=logs_bloom,json=logsBloom,proto3" json:"logs_bloom,omitempty"`
	Status               int32          `protobuf:"varint,9,opt,name=status,proto3" json:"status,omitempty"`
	TxHash               []byte         `protobuf:"bytes,10,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	CallerAddress        *types.Address `protobuf:"bytes,11,opt,name=caller_address,json=callerAddress" json:"caller_address,omitempty"`
	Nonce                int64          `protobuf:"varint,12,opt,name=nonce,proto3" json:"nonce,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*EvmTxReceipt) Descriptor

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

func (*EvmTxReceipt) GetBlockHash

func (m *EvmTxReceipt) GetBlockHash() []byte

func (*EvmTxReceipt) GetBlockNumber

func (m *EvmTxReceipt) GetBlockNumber() int64

func (*EvmTxReceipt) GetCallerAddress

func (m *EvmTxReceipt) GetCallerAddress() *types.Address

func (*EvmTxReceipt) GetContractAddress

func (m *EvmTxReceipt) GetContractAddress() []byte

func (*EvmTxReceipt) GetCumulativeGasUsed

func (m *EvmTxReceipt) GetCumulativeGasUsed() int32

func (*EvmTxReceipt) GetGasUsed

func (m *EvmTxReceipt) GetGasUsed() int32

func (*EvmTxReceipt) GetLogs

func (m *EvmTxReceipt) GetLogs() []*EventData

func (*EvmTxReceipt) GetLogsBloom

func (m *EvmTxReceipt) GetLogsBloom() []byte

func (*EvmTxReceipt) GetNonce

func (m *EvmTxReceipt) GetNonce() int64

func (*EvmTxReceipt) GetStatus

func (m *EvmTxReceipt) GetStatus() int32

func (*EvmTxReceipt) GetTransactionIndex

func (m *EvmTxReceipt) GetTransactionIndex() int32

func (*EvmTxReceipt) GetTxHash

func (m *EvmTxReceipt) GetTxHash() []byte

func (*EvmTxReceipt) ProtoMessage

func (*EvmTxReceipt) ProtoMessage()

func (*EvmTxReceipt) Reset

func (m *EvmTxReceipt) Reset()

func (*EvmTxReceipt) String

func (m *EvmTxReceipt) String() string

func (*EvmTxReceipt) XXX_DiscardUnknown

func (m *EvmTxReceipt) XXX_DiscardUnknown()

func (*EvmTxReceipt) XXX_Marshal

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

func (*EvmTxReceipt) XXX_Merge

func (dst *EvmTxReceipt) XXX_Merge(src proto.Message)

func (*EvmTxReceipt) XXX_Size

func (m *EvmTxReceipt) XXX_Size() int

func (*EvmTxReceipt) XXX_Unmarshal

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

type EvmTxReceiptList

type EvmTxReceiptList struct {
	TxReceipts           []*EvmTxReceipt `protobuf:"bytes,1,rep,name=tx_receipts,json=txReceipts" json:"tx_receipts,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*EvmTxReceiptList) Descriptor

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

func (*EvmTxReceiptList) GetTxReceipts

func (m *EvmTxReceiptList) GetTxReceipts() []*EvmTxReceipt

func (*EvmTxReceiptList) ProtoMessage

func (*EvmTxReceiptList) ProtoMessage()

func (*EvmTxReceiptList) Reset

func (m *EvmTxReceiptList) Reset()

func (*EvmTxReceiptList) String

func (m *EvmTxReceiptList) String() string

func (*EvmTxReceiptList) XXX_DiscardUnknown

func (m *EvmTxReceiptList) XXX_DiscardUnknown()

func (*EvmTxReceiptList) XXX_Marshal

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

func (*EvmTxReceiptList) XXX_Merge

func (dst *EvmTxReceiptList) XXX_Merge(src proto.Message)

func (*EvmTxReceiptList) XXX_Size

func (m *EvmTxReceiptList) XXX_Size() int

func (*EvmTxReceiptList) XXX_Unmarshal

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

type EvmTxReceiptListItem

type EvmTxReceiptListItem struct {
	Receipt              *EvmTxReceipt `protobuf:"bytes,1,opt,name=receipt" json:"receipt,omitempty"`
	NextTxHash           []byte        `protobuf:"bytes,2,opt,name=nextTxHash,proto3" json:"nextTxHash,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*EvmTxReceiptListItem) Descriptor

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

func (*EvmTxReceiptListItem) GetNextTxHash

func (m *EvmTxReceiptListItem) GetNextTxHash() []byte

func (*EvmTxReceiptListItem) GetReceipt

func (m *EvmTxReceiptListItem) GetReceipt() *EvmTxReceipt

func (*EvmTxReceiptListItem) ProtoMessage

func (*EvmTxReceiptListItem) ProtoMessage()

func (*EvmTxReceiptListItem) Reset

func (m *EvmTxReceiptListItem) Reset()

func (*EvmTxReceiptListItem) String

func (m *EvmTxReceiptListItem) String() string

func (*EvmTxReceiptListItem) XXX_DiscardUnknown

func (m *EvmTxReceiptListItem) XXX_DiscardUnknown()

func (*EvmTxReceiptListItem) XXX_Marshal

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

func (*EvmTxReceiptListItem) XXX_Merge

func (dst *EvmTxReceiptListItem) XXX_Merge(src proto.Message)

func (*EvmTxReceiptListItem) XXX_Size

func (m *EvmTxReceiptListItem) XXX_Size() int

func (*EvmTxReceiptListItem) XXX_Unmarshal

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

type EvmTxReceiptRequest

type EvmTxReceiptRequest struct {
	Value                []byte   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EvmTxReceiptRequest) Descriptor

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

func (*EvmTxReceiptRequest) GetValue

func (m *EvmTxReceiptRequest) GetValue() []byte

func (*EvmTxReceiptRequest) ProtoMessage

func (*EvmTxReceiptRequest) ProtoMessage()

func (*EvmTxReceiptRequest) Reset

func (m *EvmTxReceiptRequest) Reset()

func (*EvmTxReceiptRequest) String

func (m *EvmTxReceiptRequest) String() string

func (*EvmTxReceiptRequest) XXX_DiscardUnknown

func (m *EvmTxReceiptRequest) XXX_DiscardUnknown()

func (*EvmTxReceiptRequest) XXX_Marshal

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

func (*EvmTxReceiptRequest) XXX_Merge

func (dst *EvmTxReceiptRequest) XXX_Merge(src proto.Message)

func (*EvmTxReceiptRequest) XXX_Size

func (m *EvmTxReceiptRequest) XXX_Size() int

func (*EvmTxReceiptRequest) XXX_Unmarshal

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

type FeatureEnabledRequest

type FeatureEnabledRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	DefaultVal           bool     `protobuf:"varint,2,opt,name=defaultVal,proto3" json:"defaultVal,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FeatureEnabledRequest) Descriptor

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

func (*FeatureEnabledRequest) GetDefaultVal

func (m *FeatureEnabledRequest) GetDefaultVal() bool

func (*FeatureEnabledRequest) GetName

func (m *FeatureEnabledRequest) GetName() string

func (*FeatureEnabledRequest) ProtoMessage

func (*FeatureEnabledRequest) ProtoMessage()

func (*FeatureEnabledRequest) Reset

func (m *FeatureEnabledRequest) Reset()

func (*FeatureEnabledRequest) String

func (m *FeatureEnabledRequest) String() string

func (*FeatureEnabledRequest) XXX_DiscardUnknown

func (m *FeatureEnabledRequest) XXX_DiscardUnknown()

func (*FeatureEnabledRequest) XXX_Marshal

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

func (*FeatureEnabledRequest) XXX_Merge

func (dst *FeatureEnabledRequest) XXX_Merge(src proto.Message)

func (*FeatureEnabledRequest) XXX_Size

func (m *FeatureEnabledRequest) XXX_Size() int

func (*FeatureEnabledRequest) XXX_Unmarshal

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

type FeatureEnabledResponse

type FeatureEnabledResponse struct {
	Value                bool     `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FeatureEnabledResponse) Descriptor

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

func (*FeatureEnabledResponse) GetValue

func (m *FeatureEnabledResponse) GetValue() bool

func (*FeatureEnabledResponse) ProtoMessage

func (*FeatureEnabledResponse) ProtoMessage()

func (*FeatureEnabledResponse) Reset

func (m *FeatureEnabledResponse) Reset()

func (*FeatureEnabledResponse) String

func (m *FeatureEnabledResponse) String() string

func (*FeatureEnabledResponse) XXX_DiscardUnknown

func (m *FeatureEnabledResponse) XXX_DiscardUnknown()

func (*FeatureEnabledResponse) XXX_Marshal

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

func (*FeatureEnabledResponse) XXX_Merge

func (dst *FeatureEnabledResponse) XXX_Merge(src proto.Message)

func (*FeatureEnabledResponse) XXX_Size

func (m *FeatureEnabledResponse) XXX_Size() int

func (*FeatureEnabledResponse) XXX_Unmarshal

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

type GetRequest

type GetRequest struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRequest) Descriptor

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

func (*GetRequest) GetKey

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

func (*GetRequest) ProtoMessage

func (*GetRequest) ProtoMessage()

func (*GetRequest) Reset

func (m *GetRequest) Reset()

func (*GetRequest) String

func (m *GetRequest) String() string

func (*GetRequest) XXX_DiscardUnknown

func (m *GetRequest) XXX_DiscardUnknown()

func (*GetRequest) XXX_Marshal

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

func (*GetRequest) XXX_Merge

func (dst *GetRequest) XXX_Merge(src proto.Message)

func (*GetRequest) XXX_Size

func (m *GetRequest) XXX_Size() int

func (*GetRequest) XXX_Unmarshal

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

type GetResponse

type GetResponse struct {
	Value                []byte   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetResponse) Descriptor

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

func (*GetResponse) GetValue

func (m *GetResponse) GetValue() []byte

func (*GetResponse) ProtoMessage

func (*GetResponse) ProtoMessage()

func (*GetResponse) Reset

func (m *GetResponse) Reset()

func (*GetResponse) String

func (m *GetResponse) String() string

func (*GetResponse) XXX_DiscardUnknown

func (m *GetResponse) XXX_DiscardUnknown()

func (*GetResponse) XXX_Marshal

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

func (*GetResponse) XXX_Merge

func (dst *GetResponse) XXX_Merge(src proto.Message)

func (*GetResponse) XXX_Size

func (m *GetResponse) XXX_Size() int

func (*GetResponse) XXX_Unmarshal

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

type HasRequest

type HasRequest struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*HasRequest) Descriptor

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

func (*HasRequest) GetKey

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

func (*HasRequest) ProtoMessage

func (*HasRequest) ProtoMessage()

func (*HasRequest) Reset

func (m *HasRequest) Reset()

func (*HasRequest) String

func (m *HasRequest) String() string

func (*HasRequest) XXX_DiscardUnknown

func (m *HasRequest) XXX_DiscardUnknown()

func (*HasRequest) XXX_Marshal

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

func (*HasRequest) XXX_Merge

func (dst *HasRequest) XXX_Merge(src proto.Message)

func (*HasRequest) XXX_Size

func (m *HasRequest) XXX_Size() int

func (*HasRequest) XXX_Unmarshal

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

type HasResponse

type HasResponse struct {
	Value                bool     `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*HasResponse) Descriptor

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

func (*HasResponse) GetValue

func (m *HasResponse) GetValue() bool

func (*HasResponse) ProtoMessage

func (*HasResponse) ProtoMessage()

func (*HasResponse) Reset

func (m *HasResponse) Reset()

func (*HasResponse) String

func (m *HasResponse) String() string

func (*HasResponse) XXX_DiscardUnknown

func (m *HasResponse) XXX_DiscardUnknown()

func (*HasResponse) XXX_Marshal

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

func (*HasResponse) XXX_Merge

func (dst *HasResponse) XXX_Merge(src proto.Message)

func (*HasResponse) XXX_Size

func (m *HasResponse) XXX_Size() int

func (*HasResponse) XXX_Unmarshal

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

type InitResponse

type InitResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InitResponse) Descriptor

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

func (*InitResponse) ProtoMessage

func (*InitResponse) ProtoMessage()

func (*InitResponse) Reset

func (m *InitResponse) Reset()

func (*InitResponse) String

func (m *InitResponse) String() string

func (*InitResponse) XXX_DiscardUnknown

func (m *InitResponse) XXX_DiscardUnknown()

func (*InitResponse) XXX_Marshal

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

func (*InitResponse) XXX_Merge

func (dst *InitResponse) XXX_Merge(src proto.Message)

func (*InitResponse) XXX_Size

func (m *InitResponse) XXX_Size() int

func (*InitResponse) XXX_Unmarshal

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

type Message

type Message struct {
	Sender               *types.Address `protobuf:"bytes,1,opt,name=sender" json:"sender,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*Message) Descriptor

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

func (*Message) GetSender

func (m *Message) GetSender() *types.Address

func (*Message) ProtoMessage

func (*Message) ProtoMessage()

func (*Message) Reset

func (m *Message) Reset()

func (*Message) String

func (m *Message) String() string

func (*Message) XXX_DiscardUnknown

func (m *Message) XXX_DiscardUnknown()

func (*Message) XXX_Marshal

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

func (*Message) XXX_Merge

func (dst *Message) XXX_Merge(src proto.Message)

func (*Message) XXX_Size

func (m *Message) XXX_Size() int

func (*Message) XXX_Unmarshal

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

type MetaRequest

type MetaRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MetaRequest) Descriptor

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

func (*MetaRequest) ProtoMessage

func (*MetaRequest) ProtoMessage()

func (*MetaRequest) Reset

func (m *MetaRequest) Reset()

func (*MetaRequest) String

func (m *MetaRequest) String() string

func (*MetaRequest) XXX_DiscardUnknown

func (m *MetaRequest) XXX_DiscardUnknown()

func (*MetaRequest) XXX_Marshal

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

func (*MetaRequest) XXX_Merge

func (dst *MetaRequest) XXX_Merge(src proto.Message)

func (*MetaRequest) XXX_Size

func (m *MetaRequest) XXX_Size() int

func (*MetaRequest) XXX_Unmarshal

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

type PluginCode

type PluginCode struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Input                []byte   `protobuf:"bytes,2,opt,name=input,proto3" json:"input,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PluginCode) Descriptor

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

func (*PluginCode) GetInput

func (m *PluginCode) GetInput() []byte

func (*PluginCode) GetName

func (m *PluginCode) GetName() string

func (*PluginCode) ProtoMessage

func (*PluginCode) ProtoMessage()

func (*PluginCode) Reset

func (m *PluginCode) Reset()

func (*PluginCode) String

func (m *PluginCode) String() string

func (*PluginCode) XXX_DiscardUnknown

func (m *PluginCode) XXX_DiscardUnknown()

func (*PluginCode) XXX_Marshal

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

func (*PluginCode) XXX_Merge

func (dst *PluginCode) XXX_Merge(src proto.Message)

func (*PluginCode) XXX_Size

func (m *PluginCode) XXX_Size() int

func (*PluginCode) XXX_Unmarshal

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

type RangeEntry

type RangeEntry 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"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RangeEntry) Descriptor

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

func (*RangeEntry) GetKey

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

func (*RangeEntry) GetValue

func (m *RangeEntry) GetValue() []byte

func (*RangeEntry) ProtoMessage

func (*RangeEntry) ProtoMessage()

func (*RangeEntry) Reset

func (m *RangeEntry) Reset()

func (*RangeEntry) String

func (m *RangeEntry) String() string

func (*RangeEntry) XXX_DiscardUnknown

func (m *RangeEntry) XXX_DiscardUnknown()

func (*RangeEntry) XXX_Marshal

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

func (*RangeEntry) XXX_Merge

func (dst *RangeEntry) XXX_Merge(src proto.Message)

func (*RangeEntry) XXX_Size

func (m *RangeEntry) XXX_Size() int

func (*RangeEntry) XXX_Unmarshal

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

type RangeRequest

type RangeRequest struct {
	Prefix               []byte   `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RangeRequest) Descriptor

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

func (*RangeRequest) GetPrefix

func (m *RangeRequest) GetPrefix() []byte

func (*RangeRequest) ProtoMessage

func (*RangeRequest) ProtoMessage()

func (*RangeRequest) Reset

func (m *RangeRequest) Reset()

func (*RangeRequest) String

func (m *RangeRequest) String() string

func (*RangeRequest) XXX_DiscardUnknown

func (m *RangeRequest) XXX_DiscardUnknown()

func (*RangeRequest) XXX_Marshal

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

func (*RangeRequest) XXX_Merge

func (dst *RangeRequest) XXX_Merge(src proto.Message)

func (*RangeRequest) XXX_Size

func (m *RangeRequest) XXX_Size() int

func (*RangeRequest) XXX_Unmarshal

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

type RangeResponse

type RangeResponse struct {
	RangeEntries         []*RangeEntry `protobuf:"bytes,1,rep,name=range_entries,json=rangeEntries" json:"range_entries,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*RangeResponse) Descriptor

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

func (*RangeResponse) GetRangeEntries

func (m *RangeResponse) GetRangeEntries() []*RangeEntry

func (*RangeResponse) ProtoMessage

func (*RangeResponse) ProtoMessage()

func (*RangeResponse) Reset

func (m *RangeResponse) Reset()

func (*RangeResponse) String

func (m *RangeResponse) String() string

func (*RangeResponse) XXX_DiscardUnknown

func (m *RangeResponse) XXX_DiscardUnknown()

func (*RangeResponse) XXX_Marshal

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

func (*RangeResponse) XXX_Merge

func (dst *RangeResponse) XXX_Merge(src proto.Message)

func (*RangeResponse) XXX_Size

func (m *RangeResponse) XXX_Size() int

func (*RangeResponse) XXX_Unmarshal

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

type Request

type Request struct {
	ContentType          EncodingType `protobuf:"varint,1,opt,name=content_type,json=contentType,proto3,enum=EncodingType" json:"content_type,omitempty"`
	Accept               EncodingType `protobuf:"varint,2,opt,name=accept,proto3,enum=EncodingType" json:"accept,omitempty"`
	Body                 []byte       `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*Request) Descriptor

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

func (*Request) GetAccept

func (m *Request) GetAccept() EncodingType

func (*Request) GetBody

func (m *Request) GetBody() []byte

func (*Request) GetContentType

func (m *Request) GetContentType() EncodingType

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) Reset

func (m *Request) Reset()

func (*Request) String

func (m *Request) String() string

func (*Request) XXX_DiscardUnknown

func (m *Request) XXX_DiscardUnknown()

func (*Request) XXX_Marshal

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

func (*Request) XXX_Merge

func (dst *Request) XXX_Merge(src proto.Message)

func (*Request) XXX_Size

func (m *Request) XXX_Size() int

func (*Request) XXX_Unmarshal

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

type ResolveRequest

type ResolveRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ResolveRequest) Descriptor

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

func (*ResolveRequest) GetName

func (m *ResolveRequest) GetName() string

func (*ResolveRequest) ProtoMessage

func (*ResolveRequest) ProtoMessage()

func (*ResolveRequest) Reset

func (m *ResolveRequest) Reset()

func (*ResolveRequest) String

func (m *ResolveRequest) String() string

func (*ResolveRequest) XXX_DiscardUnknown

func (m *ResolveRequest) XXX_DiscardUnknown()

func (*ResolveRequest) XXX_Marshal

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

func (*ResolveRequest) XXX_Merge

func (dst *ResolveRequest) XXX_Merge(src proto.Message)

func (*ResolveRequest) XXX_Size

func (m *ResolveRequest) XXX_Size() int

func (*ResolveRequest) XXX_Unmarshal

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

type ResolveResponse

type ResolveResponse struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ResolveResponse) Descriptor

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

func (*ResolveResponse) GetAddress

func (m *ResolveResponse) GetAddress() *types.Address

func (*ResolveResponse) ProtoMessage

func (*ResolveResponse) ProtoMessage()

func (*ResolveResponse) Reset

func (m *ResolveResponse) Reset()

func (*ResolveResponse) String

func (m *ResolveResponse) String() string

func (*ResolveResponse) XXX_DiscardUnknown

func (m *ResolveResponse) XXX_DiscardUnknown()

func (*ResolveResponse) XXX_Marshal

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

func (*ResolveResponse) XXX_Merge

func (dst *ResolveResponse) XXX_Merge(src proto.Message)

func (*ResolveResponse) XXX_Size

func (m *ResolveResponse) XXX_Size() int

func (*ResolveResponse) XXX_Unmarshal

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

type Response

type Response struct {
	ContentType          EncodingType `protobuf:"varint,1,opt,name=content_type,json=contentType,proto3,enum=EncodingType" json:"content_type,omitempty"`
	Body                 []byte       `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*Response) Descriptor

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

func (*Response) GetBody

func (m *Response) GetBody() []byte

func (*Response) GetContentType

func (m *Response) GetContentType() EncodingType

func (*Response) ProtoMessage

func (*Response) ProtoMessage()

func (*Response) Reset

func (m *Response) Reset()

func (*Response) String

func (m *Response) String() string

func (*Response) XXX_DiscardUnknown

func (m *Response) XXX_DiscardUnknown()

func (*Response) XXX_Marshal

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

func (*Response) XXX_Merge

func (dst *Response) XXX_Merge(src proto.Message)

func (*Response) XXX_Size

func (m *Response) XXX_Size() int

func (*Response) XXX_Unmarshal

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

type SetRequest

type SetRequest 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"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetRequest) Descriptor

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

func (*SetRequest) GetKey

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

func (*SetRequest) GetValue

func (m *SetRequest) GetValue() []byte

func (*SetRequest) ProtoMessage

func (*SetRequest) ProtoMessage()

func (*SetRequest) Reset

func (m *SetRequest) Reset()

func (*SetRequest) String

func (m *SetRequest) String() string

func (*SetRequest) XXX_DiscardUnknown

func (m *SetRequest) XXX_DiscardUnknown()

func (*SetRequest) XXX_Marshal

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

func (*SetRequest) XXX_Merge

func (dst *SetRequest) XXX_Merge(src proto.Message)

func (*SetRequest) XXX_Size

func (m *SetRequest) XXX_Size() int

func (*SetRequest) XXX_Unmarshal

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

type SetResponse

type SetResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetResponse) Descriptor

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

func (*SetResponse) ProtoMessage

func (*SetResponse) ProtoMessage()

func (*SetResponse) Reset

func (m *SetResponse) Reset()

func (*SetResponse) String

func (m *SetResponse) String() string

func (*SetResponse) XXX_DiscardUnknown

func (m *SetResponse) XXX_DiscardUnknown()

func (*SetResponse) XXX_Marshal

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

func (*SetResponse) XXX_Merge

func (dst *SetResponse) XXX_Merge(src proto.Message)

func (*SetResponse) XXX_Size

func (m *SetResponse) XXX_Size() int

func (*SetResponse) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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