generated

package
v0.24.0 Latest Latest
Warning

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

Go to latest
Published: Apr 12, 2024 License: AGPL-3.0 Imports: 8 Imported by: 0

README

The .go files in this folder are auto-generated from the .proto service definition using the protoc Protocol Buffer compiler.

Install Protobuf and Protoc-gen-go with:

brew install protobuf

go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest

Add this to the environment, because there are some binaries in $HOME/go

export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOROOT:$GOPATH:$GOBIN

The files were generated using the following command:

cd go/common/rpc/generated
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative enclave.proto

Documentation

Index

Constants

This section is empty.

Variables

View Source
var EnclaveProto_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "generated.EnclaveProto",
	HandlerType: (*EnclaveProtoServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Status",
			Handler:    _EnclaveProto_Status_Handler,
		},
		{
			MethodName: "Attestation",
			Handler:    _EnclaveProto_Attestation_Handler,
		},
		{
			MethodName: "GenerateSecret",
			Handler:    _EnclaveProto_GenerateSecret_Handler,
		},
		{
			MethodName: "InitEnclave",
			Handler:    _EnclaveProto_InitEnclave_Handler,
		},
		{
			MethodName: "EnclaveID",
			Handler:    _EnclaveProto_EnclaveID_Handler,
		},
		{
			MethodName: "SubmitL1Block",
			Handler:    _EnclaveProto_SubmitL1Block_Handler,
		},
		{
			MethodName: "SubmitTx",
			Handler:    _EnclaveProto_SubmitTx_Handler,
		},
		{
			MethodName: "SubmitBatch",
			Handler:    _EnclaveProto_SubmitBatch_Handler,
		},
		{
			MethodName: "ObsCall",
			Handler:    _EnclaveProto_ObsCall_Handler,
		},
		{
			MethodName: "GetTransactionCount",
			Handler:    _EnclaveProto_GetTransactionCount_Handler,
		},
		{
			MethodName: "Stop",
			Handler:    _EnclaveProto_Stop_Handler,
		},
		{
			MethodName: "GetTransaction",
			Handler:    _EnclaveProto_GetTransaction_Handler,
		},
		{
			MethodName: "GetTransactionReceipt",
			Handler:    _EnclaveProto_GetTransactionReceipt_Handler,
		},
		{
			MethodName: "GetBalance",
			Handler:    _EnclaveProto_GetBalance_Handler,
		},
		{
			MethodName: "GetCode",
			Handler:    _EnclaveProto_GetCode_Handler,
		},
		{
			MethodName: "Subscribe",
			Handler:    _EnclaveProto_Subscribe_Handler,
		},
		{
			MethodName: "Unsubscribe",
			Handler:    _EnclaveProto_Unsubscribe_Handler,
		},
		{
			MethodName: "EstimateGas",
			Handler:    _EnclaveProto_EstimateGas_Handler,
		},
		{
			MethodName: "GetLogs",
			Handler:    _EnclaveProto_GetLogs_Handler,
		},
		{
			MethodName: "HealthCheck",
			Handler:    _EnclaveProto_HealthCheck_Handler,
		},
		{
			MethodName: "GetBatch",
			Handler:    _EnclaveProto_GetBatch_Handler,
		},
		{
			MethodName: "GetBatchBySeqNo",
			Handler:    _EnclaveProto_GetBatchBySeqNo_Handler,
		},
		{
			MethodName: "GetRollupData",
			Handler:    _EnclaveProto_GetRollupData_Handler,
		},
		{
			MethodName: "CreateBatch",
			Handler:    _EnclaveProto_CreateBatch_Handler,
		},
		{
			MethodName: "CreateRollup",
			Handler:    _EnclaveProto_CreateRollup_Handler,
		},
		{
			MethodName: "DebugTraceTransaction",
			Handler:    _EnclaveProto_DebugTraceTransaction_Handler,
		},
		{
			MethodName: "DebugEventLogRelevancy",
			Handler:    _EnclaveProto_DebugEventLogRelevancy_Handler,
		},
		{
			MethodName: "GetTotalContractCount",
			Handler:    _EnclaveProto_GetTotalContractCount_Handler,
		},
		{
			MethodName: "GetReceiptsByAddress",
			Handler:    _EnclaveProto_GetReceiptsByAddress_Handler,
		},
		{
			MethodName: "GetPublicTransactionData",
			Handler:    _EnclaveProto_GetPublicTransactionData_Handler,
		},
		{
			MethodName: "EnclavePublicConfig",
			Handler:    _EnclaveProto_EnclavePublicConfig_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "StreamL2Updates",
			Handler:       _EnclaveProto_StreamL2Updates_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "enclave.proto",
}

EnclaveProto_ServiceDesc is the grpc.ServiceDesc for EnclaveProto 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_enclave_proto protoreflect.FileDescriptor

Functions

func RegisterEnclaveProtoServer

func RegisterEnclaveProtoServer(s grpc.ServiceRegistrar, srv EnclaveProtoServer)

Types

type AttestationReportMsg

type AttestationReportMsg struct {
	Report      []byte       `protobuf:"bytes,1,opt,name=Report,proto3" json:"Report,omitempty"` // The actual report bytes so it can be shared and verified by other nodes
	PubKey      []byte       `protobuf:"bytes,2,opt,name=PubKey,proto3" json:"PubKey,omitempty"` // Public key to encrypt traffic back to this enclave
	EnclaveID   []byte       `protobuf:"bytes,3,opt,name=EnclaveID,proto3" json:"EnclaveID,omitempty"`
	HostAddress string       `protobuf:"bytes,4,opt,name=HostAddress,proto3" json:"HostAddress,omitempty"` // The IP address on which the host can be contacted by other Obscuro hosts for peer-to-peer communication
	SystemError *SystemError `protobuf:"bytes,5,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*AttestationReportMsg) Descriptor deprecated

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

Deprecated: Use AttestationReportMsg.ProtoReflect.Descriptor instead.

func (*AttestationReportMsg) GetEnclaveID added in v0.24.0

func (x *AttestationReportMsg) GetEnclaveID() []byte

func (*AttestationReportMsg) GetHostAddress

func (x *AttestationReportMsg) GetHostAddress() string

func (*AttestationReportMsg) GetPubKey

func (x *AttestationReportMsg) GetPubKey() []byte

func (*AttestationReportMsg) GetReport

func (x *AttestationReportMsg) GetReport() []byte

func (*AttestationReportMsg) GetSystemError

func (x *AttestationReportMsg) GetSystemError() *SystemError

func (*AttestationReportMsg) ProtoMessage

func (*AttestationReportMsg) ProtoMessage()

func (*AttestationReportMsg) ProtoReflect

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

func (*AttestationReportMsg) Reset

func (x *AttestationReportMsg) Reset()

func (*AttestationReportMsg) String

func (x *AttestationReportMsg) String() string

type AttestationRequest

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

func (*AttestationRequest) Descriptor deprecated

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

Deprecated: Use AttestationRequest.ProtoReflect.Descriptor instead.

func (*AttestationRequest) ProtoMessage

func (*AttestationRequest) ProtoMessage()

func (*AttestationRequest) ProtoReflect

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

func (*AttestationRequest) Reset

func (x *AttestationRequest) Reset()

func (*AttestationRequest) String

func (x *AttestationRequest) String() string

type AttestationResponse

type AttestationResponse struct {
	AttestationReportMsg *AttestationReportMsg `protobuf:"bytes,1,opt,name=attestationReportMsg,proto3" json:"attestationReportMsg,omitempty"`
	SystemError          *SystemError          `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*AttestationResponse) Descriptor deprecated

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

Deprecated: Use AttestationResponse.ProtoReflect.Descriptor instead.

func (*AttestationResponse) GetAttestationReportMsg

func (x *AttestationResponse) GetAttestationReportMsg() *AttestationReportMsg

func (*AttestationResponse) GetSystemError

func (x *AttestationResponse) GetSystemError() *SystemError

func (*AttestationResponse) ProtoMessage

func (*AttestationResponse) ProtoMessage()

func (*AttestationResponse) ProtoReflect

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

func (*AttestationResponse) Reset

func (x *AttestationResponse) Reset()

func (*AttestationResponse) String

func (x *AttestationResponse) String() string

type BatchHeaderMsg

type BatchHeaderMsg struct {
	ParentHash                    []byte           `protobuf:"bytes,1,opt,name=ParentHash,proto3" json:"ParentHash,omitempty"`
	Proof                         []byte           `protobuf:"bytes,2,opt,name=Proof,proto3" json:"Proof,omitempty"`
	Root                          []byte           `protobuf:"bytes,3,opt,name=Root,proto3" json:"Root,omitempty"`
	TxHash                        []byte           `protobuf:"bytes,4,opt,name=TxHash,proto3" json:"TxHash,omitempty"`
	Number                        uint64           `protobuf:"varint,5,opt,name=Number,proto3" json:"Number,omitempty"`
	SequencerOrderNo              uint64           `protobuf:"varint,6,opt,name=SequencerOrderNo,proto3" json:"SequencerOrderNo,omitempty"`
	ReceiptHash                   []byte           `protobuf:"bytes,7,opt,name=ReceiptHash,proto3" json:"ReceiptHash,omitempty"`
	Extra                         []byte           `protobuf:"bytes,8,opt,name=Extra,proto3" json:"Extra,omitempty"`
	Signature                     []byte           `protobuf:"bytes,9,opt,name=Signature,proto3" json:"Signature,omitempty"`
	GasLimit                      uint64           `protobuf:"varint,10,opt,name=GasLimit,proto3" json:"GasLimit,omitempty"`
	GasUsed                       uint64           `protobuf:"varint,11,opt,name=GasUsed,proto3" json:"GasUsed,omitempty"`
	Time                          uint64           `protobuf:"varint,12,opt,name=Time,proto3" json:"Time,omitempty"`
	BaseFee                       uint64           `protobuf:"varint,13,opt,name=BaseFee,proto3" json:"BaseFee,omitempty"`
	LatestInboundCrossChainHeight []byte           `protobuf:"bytes,14,opt,name=LatestInboundCrossChainHeight,proto3" json:"LatestInboundCrossChainHeight,omitempty"`
	LatestInboundCrossChainHash   []byte           `protobuf:"bytes,15,opt,name=LatestInboundCrossChainHash,proto3" json:"LatestInboundCrossChainHash,omitempty"`
	CrossChainMessages            []*CrossChainMsg `protobuf:"bytes,16,rep,name=CrossChainMessages,proto3" json:"CrossChainMessages,omitempty"`
	TransferTree                  []byte           `protobuf:"bytes,17,opt,name=TransferTree,proto3" json:"TransferTree,omitempty"`
	Coinbase                      []byte           `protobuf:"bytes,18,opt,name=Coinbase,proto3" json:"Coinbase,omitempty"`
	// contains filtered or unexported fields
}

func (*BatchHeaderMsg) Descriptor deprecated

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

Deprecated: Use BatchHeaderMsg.ProtoReflect.Descriptor instead.

func (*BatchHeaderMsg) GetBaseFee

func (x *BatchHeaderMsg) GetBaseFee() uint64

func (*BatchHeaderMsg) GetCoinbase

func (x *BatchHeaderMsg) GetCoinbase() []byte

func (*BatchHeaderMsg) GetCrossChainMessages

func (x *BatchHeaderMsg) GetCrossChainMessages() []*CrossChainMsg

func (*BatchHeaderMsg) GetExtra

func (x *BatchHeaderMsg) GetExtra() []byte

func (*BatchHeaderMsg) GetGasLimit

func (x *BatchHeaderMsg) GetGasLimit() uint64

func (*BatchHeaderMsg) GetGasUsed

func (x *BatchHeaderMsg) GetGasUsed() uint64

func (*BatchHeaderMsg) GetLatestInboundCrossChainHash

func (x *BatchHeaderMsg) GetLatestInboundCrossChainHash() []byte

func (*BatchHeaderMsg) GetLatestInboundCrossChainHeight

func (x *BatchHeaderMsg) GetLatestInboundCrossChainHeight() []byte

func (*BatchHeaderMsg) GetNumber

func (x *BatchHeaderMsg) GetNumber() uint64

func (*BatchHeaderMsg) GetParentHash

func (x *BatchHeaderMsg) GetParentHash() []byte

func (*BatchHeaderMsg) GetProof

func (x *BatchHeaderMsg) GetProof() []byte

func (*BatchHeaderMsg) GetReceiptHash

func (x *BatchHeaderMsg) GetReceiptHash() []byte

func (*BatchHeaderMsg) GetRoot

func (x *BatchHeaderMsg) GetRoot() []byte

func (*BatchHeaderMsg) GetSequencerOrderNo

func (x *BatchHeaderMsg) GetSequencerOrderNo() uint64

func (*BatchHeaderMsg) GetSignature added in v0.24.0

func (x *BatchHeaderMsg) GetSignature() []byte

func (*BatchHeaderMsg) GetTime

func (x *BatchHeaderMsg) GetTime() uint64

func (*BatchHeaderMsg) GetTransferTree

func (x *BatchHeaderMsg) GetTransferTree() []byte

func (*BatchHeaderMsg) GetTxHash

func (x *BatchHeaderMsg) GetTxHash() []byte

func (*BatchHeaderMsg) ProtoMessage

func (*BatchHeaderMsg) ProtoMessage()

func (*BatchHeaderMsg) ProtoReflect

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

func (*BatchHeaderMsg) Reset

func (x *BatchHeaderMsg) Reset()

func (*BatchHeaderMsg) String

func (x *BatchHeaderMsg) String() string

type BlockSubmissionErrorMsg

type BlockSubmissionErrorMsg struct {
	Cause  string `protobuf:"bytes,1,opt,name=cause,proto3" json:"cause,omitempty"`   // error cause description
	L1Head []byte `protobuf:"bytes,2,opt,name=l1Head,proto3" json:"l1Head,omitempty"` // hash for the L1 head block in enclave's view of the canonical chain
	// contains filtered or unexported fields
}

func (*BlockSubmissionErrorMsg) Descriptor deprecated

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

Deprecated: Use BlockSubmissionErrorMsg.ProtoReflect.Descriptor instead.

func (*BlockSubmissionErrorMsg) GetCause

func (x *BlockSubmissionErrorMsg) GetCause() string

func (*BlockSubmissionErrorMsg) GetL1Head

func (x *BlockSubmissionErrorMsg) GetL1Head() []byte

func (*BlockSubmissionErrorMsg) ProtoMessage

func (*BlockSubmissionErrorMsg) ProtoMessage()

func (*BlockSubmissionErrorMsg) ProtoReflect

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

func (*BlockSubmissionErrorMsg) Reset

func (x *BlockSubmissionErrorMsg) Reset()

func (*BlockSubmissionErrorMsg) String

func (x *BlockSubmissionErrorMsg) String() string

type BlockSubmissionResponseMsg

type BlockSubmissionResponseMsg struct {
	ProducedSecretResponses []*SecretResponseMsg     `protobuf:"bytes,1,rep,name=producedSecretResponses,proto3" json:"producedSecretResponses,omitempty"`
	Error                   *BlockSubmissionErrorMsg `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` // todo (@matt) - remove this BlockSubmissionError field once we are using the Status() to update host view of enclave state
	// contains filtered or unexported fields
}

func (*BlockSubmissionResponseMsg) Descriptor deprecated

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

Deprecated: Use BlockSubmissionResponseMsg.ProtoReflect.Descriptor instead.

func (*BlockSubmissionResponseMsg) GetError

func (*BlockSubmissionResponseMsg) GetProducedSecretResponses

func (x *BlockSubmissionResponseMsg) GetProducedSecretResponses() []*SecretResponseMsg

func (*BlockSubmissionResponseMsg) ProtoMessage

func (*BlockSubmissionResponseMsg) ProtoMessage()

func (*BlockSubmissionResponseMsg) ProtoReflect

func (*BlockSubmissionResponseMsg) Reset

func (x *BlockSubmissionResponseMsg) Reset()

func (*BlockSubmissionResponseMsg) String

func (x *BlockSubmissionResponseMsg) String() string

type CreateBatchRequest

type CreateBatchRequest struct {
	SkipIfEmpty bool `protobuf:"varint,1,opt,name=skipIfEmpty,proto3" json:"skipIfEmpty,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBatchRequest) Descriptor deprecated

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

Deprecated: Use CreateBatchRequest.ProtoReflect.Descriptor instead.

func (*CreateBatchRequest) GetSkipIfEmpty

func (x *CreateBatchRequest) GetSkipIfEmpty() bool

func (*CreateBatchRequest) ProtoMessage

func (*CreateBatchRequest) ProtoMessage()

func (*CreateBatchRequest) ProtoReflect

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

func (*CreateBatchRequest) Reset

func (x *CreateBatchRequest) Reset()

func (*CreateBatchRequest) String

func (x *CreateBatchRequest) String() string

type CreateBatchResponse

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

func (*CreateBatchResponse) Descriptor deprecated

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

Deprecated: Use CreateBatchResponse.ProtoReflect.Descriptor instead.

func (*CreateBatchResponse) GetError

func (x *CreateBatchResponse) GetError() string

func (*CreateBatchResponse) ProtoMessage

func (*CreateBatchResponse) ProtoMessage()

func (*CreateBatchResponse) ProtoReflect

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

func (*CreateBatchResponse) Reset

func (x *CreateBatchResponse) Reset()

func (*CreateBatchResponse) String

func (x *CreateBatchResponse) String() string

type CreateRollupRequest

type CreateRollupRequest struct {
	FromSequenceNumber *uint64 `protobuf:"varint,1,opt,name=fromSequenceNumber,proto3,oneof" json:"fromSequenceNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRollupRequest) Descriptor deprecated

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

Deprecated: Use CreateRollupRequest.ProtoReflect.Descriptor instead.

func (*CreateRollupRequest) GetFromSequenceNumber

func (x *CreateRollupRequest) GetFromSequenceNumber() uint64

func (*CreateRollupRequest) ProtoMessage

func (*CreateRollupRequest) ProtoMessage()

func (*CreateRollupRequest) ProtoReflect

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

func (*CreateRollupRequest) Reset

func (x *CreateRollupRequest) Reset()

func (*CreateRollupRequest) String

func (x *CreateRollupRequest) String() string

type CreateRollupResponse

type CreateRollupResponse struct {
	Msg         *ExtRollupMsg `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	SystemError *SystemError  `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRollupResponse) Descriptor deprecated

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

Deprecated: Use CreateRollupResponse.ProtoReflect.Descriptor instead.

func (*CreateRollupResponse) GetMsg

func (x *CreateRollupResponse) GetMsg() *ExtRollupMsg

func (*CreateRollupResponse) GetSystemError

func (x *CreateRollupResponse) GetSystemError() *SystemError

func (*CreateRollupResponse) ProtoMessage

func (*CreateRollupResponse) ProtoMessage()

func (*CreateRollupResponse) ProtoReflect

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

func (*CreateRollupResponse) Reset

func (x *CreateRollupResponse) Reset()

func (*CreateRollupResponse) String

func (x *CreateRollupResponse) String() string

type CrossChainMsg

type CrossChainMsg struct {
	Sender   []byte `protobuf:"bytes,1,opt,name=Sender,proto3" json:"Sender,omitempty"`
	Sequence uint64 `protobuf:"varint,2,opt,name=Sequence,proto3" json:"Sequence,omitempty"`
	Nonce    uint32 `protobuf:"varint,3,opt,name=Nonce,proto3" json:"Nonce,omitempty"`
	Topic    uint32 `protobuf:"varint,4,opt,name=Topic,proto3" json:"Topic,omitempty"`
	Payload  []byte `protobuf:"bytes,5,opt,name=Payload,proto3" json:"Payload,omitempty"`
	// contains filtered or unexported fields
}

func (*CrossChainMsg) Descriptor deprecated

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

Deprecated: Use CrossChainMsg.ProtoReflect.Descriptor instead.

func (*CrossChainMsg) GetNonce

func (x *CrossChainMsg) GetNonce() uint32

func (*CrossChainMsg) GetPayload

func (x *CrossChainMsg) GetPayload() []byte

func (*CrossChainMsg) GetSender

func (x *CrossChainMsg) GetSender() []byte

func (*CrossChainMsg) GetSequence

func (x *CrossChainMsg) GetSequence() uint64

func (*CrossChainMsg) GetTopic

func (x *CrossChainMsg) GetTopic() uint32

func (*CrossChainMsg) ProtoMessage

func (*CrossChainMsg) ProtoMessage()

func (*CrossChainMsg) ProtoReflect

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

func (*CrossChainMsg) Reset

func (x *CrossChainMsg) Reset()

func (*CrossChainMsg) String

func (x *CrossChainMsg) String() string

type DebugEventLogRelevancyRequest

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

func (*DebugEventLogRelevancyRequest) Descriptor deprecated

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

Deprecated: Use DebugEventLogRelevancyRequest.ProtoReflect.Descriptor instead.

func (*DebugEventLogRelevancyRequest) GetTxHash

func (x *DebugEventLogRelevancyRequest) GetTxHash() []byte

func (*DebugEventLogRelevancyRequest) ProtoMessage

func (*DebugEventLogRelevancyRequest) ProtoMessage()

func (*DebugEventLogRelevancyRequest) ProtoReflect

func (*DebugEventLogRelevancyRequest) Reset

func (x *DebugEventLogRelevancyRequest) Reset()

func (*DebugEventLogRelevancyRequest) String

type DebugEventLogRelevancyResponse

type DebugEventLogRelevancyResponse struct {
	Msg         string       `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*DebugEventLogRelevancyResponse) Descriptor deprecated

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

Deprecated: Use DebugEventLogRelevancyResponse.ProtoReflect.Descriptor instead.

func (*DebugEventLogRelevancyResponse) GetMsg

func (*DebugEventLogRelevancyResponse) GetSystemError

func (x *DebugEventLogRelevancyResponse) GetSystemError() *SystemError

func (*DebugEventLogRelevancyResponse) ProtoMessage

func (*DebugEventLogRelevancyResponse) ProtoMessage()

func (*DebugEventLogRelevancyResponse) ProtoReflect

func (*DebugEventLogRelevancyResponse) Reset

func (x *DebugEventLogRelevancyResponse) Reset()

func (*DebugEventLogRelevancyResponse) String

type DebugTraceTransactionRequest

type DebugTraceTransactionRequest struct {
	TxHash []byte `protobuf:"bytes,1,opt,name=txHash,proto3" json:"txHash,omitempty"`
	Config []byte `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*DebugTraceTransactionRequest) Descriptor deprecated

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

Deprecated: Use DebugTraceTransactionRequest.ProtoReflect.Descriptor instead.

func (*DebugTraceTransactionRequest) GetConfig

func (x *DebugTraceTransactionRequest) GetConfig() []byte

func (*DebugTraceTransactionRequest) GetTxHash

func (x *DebugTraceTransactionRequest) GetTxHash() []byte

func (*DebugTraceTransactionRequest) ProtoMessage

func (*DebugTraceTransactionRequest) ProtoMessage()

func (*DebugTraceTransactionRequest) ProtoReflect

func (*DebugTraceTransactionRequest) Reset

func (x *DebugTraceTransactionRequest) Reset()

func (*DebugTraceTransactionRequest) String

type DebugTraceTransactionResponse

type DebugTraceTransactionResponse struct {
	Msg         string       `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*DebugTraceTransactionResponse) Descriptor deprecated

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

Deprecated: Use DebugTraceTransactionResponse.ProtoReflect.Descriptor instead.

func (*DebugTraceTransactionResponse) GetMsg

func (*DebugTraceTransactionResponse) GetSystemError

func (x *DebugTraceTransactionResponse) GetSystemError() *SystemError

func (*DebugTraceTransactionResponse) ProtoMessage

func (*DebugTraceTransactionResponse) ProtoMessage()

func (*DebugTraceTransactionResponse) ProtoReflect

func (*DebugTraceTransactionResponse) Reset

func (x *DebugTraceTransactionResponse) Reset()

func (*DebugTraceTransactionResponse) String

type EmptyArgs

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

func (*EmptyArgs) Descriptor deprecated

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

Deprecated: Use EmptyArgs.ProtoReflect.Descriptor instead.

func (*EmptyArgs) ProtoMessage

func (*EmptyArgs) ProtoMessage()

func (*EmptyArgs) ProtoReflect

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

func (*EmptyArgs) Reset

func (x *EmptyArgs) Reset()

func (*EmptyArgs) String

func (x *EmptyArgs) String() string

type EnclaveIDRequest added in v0.21.0

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

func (*EnclaveIDRequest) Descriptor deprecated added in v0.21.0

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

Deprecated: Use EnclaveIDRequest.ProtoReflect.Descriptor instead.

func (*EnclaveIDRequest) ProtoMessage added in v0.21.0

func (*EnclaveIDRequest) ProtoMessage()

func (*EnclaveIDRequest) ProtoReflect added in v0.21.0

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

func (*EnclaveIDRequest) Reset added in v0.21.0

func (x *EnclaveIDRequest) Reset()

func (*EnclaveIDRequest) String added in v0.21.0

func (x *EnclaveIDRequest) String() string

type EnclaveIDResponse added in v0.21.0

type EnclaveIDResponse struct {
	EnclaveID   []byte       `protobuf:"bytes,1,opt,name=enclaveID,proto3" json:"enclaveID,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*EnclaveIDResponse) Descriptor deprecated added in v0.21.0

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

Deprecated: Use EnclaveIDResponse.ProtoReflect.Descriptor instead.

func (*EnclaveIDResponse) GetEnclaveID added in v0.21.0

func (x *EnclaveIDResponse) GetEnclaveID() []byte

func (*EnclaveIDResponse) GetSystemError added in v0.21.0

func (x *EnclaveIDResponse) GetSystemError() *SystemError

func (*EnclaveIDResponse) ProtoMessage added in v0.21.0

func (*EnclaveIDResponse) ProtoMessage()

func (*EnclaveIDResponse) ProtoReflect added in v0.21.0

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

func (*EnclaveIDResponse) Reset added in v0.21.0

func (x *EnclaveIDResponse) Reset()

func (*EnclaveIDResponse) String added in v0.21.0

func (x *EnclaveIDResponse) String() string

type EnclaveProtoClient

type EnclaveProtoClient interface {
	// Status is used to check whether the server is ready for requests.
	Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, error)
	// Attestation - Produces an attestation report which will be used to request the shared secret from another enclave.
	Attestation(ctx context.Context, in *AttestationRequest, opts ...grpc.CallOption) (*AttestationResponse, error)
	// GenerateSecret - the genesis enclave is responsible with generating the secret entropy
	GenerateSecret(ctx context.Context, in *GenerateSecretRequest, opts ...grpc.CallOption) (*GenerateSecretResponse, error)
	// Init - initialise an enclave with a seed received by another enclave
	InitEnclave(ctx context.Context, in *InitEnclaveRequest, opts ...grpc.CallOption) (*InitEnclaveResponse, error)
	// EnclaveID - request the EnclaveID from the enclave
	EnclaveID(ctx context.Context, in *EnclaveIDRequest, opts ...grpc.CallOption) (*EnclaveIDResponse, error)
	// SubmitL1Block - Used for the host to submit blocks to the enclave, these may be:
	//  a. historic block - if the enclave is behind and in the process of catching up with the L1 state
	//  b. the latest block published by the L1, to which the enclave should respond with a rollup
	// It is the responsibility of the host to gossip the returned rollup
	// For good functioning the caller should always submit blocks ordered by height
	// submitting a block before receiving ancestors of it, will result in it being ignored
	SubmitL1Block(ctx context.Context, in *SubmitBlockRequest, opts ...grpc.CallOption) (*SubmitBlockResponse, error)
	// SubmitTx - user transactions
	SubmitTx(ctx context.Context, in *SubmitTxRequest, opts ...grpc.CallOption) (*SubmitTxResponse, error)
	// SubmitBatch submits a batch received from the sequencer for processing.
	SubmitBatch(ctx context.Context, in *SubmitBatchRequest, opts ...grpc.CallOption) (*SubmitBatchResponse, error)
	// ObsCall - returns the result of executing the smart contract as a user, encrypted with the
	// viewing key corresponding to the `from` field
	ObsCall(ctx context.Context, in *ObsCallRequest, opts ...grpc.CallOption) (*ObsCallResponse, error)
	// GetTransactionCount - returns the nonce of the wallet with the given address.
	GetTransactionCount(ctx context.Context, in *GetTransactionCountRequest, opts ...grpc.CallOption) (*GetTransactionCountResponse, error)
	// Stop gracefully stops the enclave
	Stop(ctx context.Context, in *StopRequest, opts ...grpc.CallOption) (*StopResponse, error)
	// GetTransaction returns a transaction given its Signed Hash, returns nil, false when Transaction is unknown
	GetTransaction(ctx context.Context, in *GetTransactionRequest, opts ...grpc.CallOption) (*GetTransactionResponse, error)
	// GetTransaction returns a transaction receipt given the transaction's signed hash, encrypted with the viewing key
	// corresponding to the original transaction submitter
	GetTransactionReceipt(ctx context.Context, in *GetTransactionReceiptRequest, opts ...grpc.CallOption) (*GetTransactionReceiptResponse, error)
	// GetBalance returns the address's balance on the Obscuro network, encrypted with the viewing key corresponding to
	// the address
	GetBalance(ctx context.Context, in *GetBalanceRequest, opts ...grpc.CallOption) (*GetBalanceResponse, error)
	// GetCode returns the code stored at the given address in the state for the given rollup height or rollup hash
	GetCode(ctx context.Context, in *GetCodeRequest, opts ...grpc.CallOption) (*GetCodeResponse, error)
	Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (*SubscribeResponse, error)
	Unsubscribe(ctx context.Context, in *UnsubscribeRequest, opts ...grpc.CallOption) (*UnsubscribeResponse, error)
	// EstimateGas returns the estimation of gas used for the given transactions
	EstimateGas(ctx context.Context, in *EstimateGasRequest, opts ...grpc.CallOption) (*EstimateGasResponse, error)
	GetLogs(ctx context.Context, in *GetLogsRequest, opts ...grpc.CallOption) (*GetLogsResponse, error)
	// HealthCheck returns the health status of enclave + db
	HealthCheck(ctx context.Context, in *EmptyArgs, opts ...grpc.CallOption) (*HealthCheckResponse, error)
	// GetBatch returns the encrypted batch based on a hash
	GetBatch(ctx context.Context, in *GetBatchRequest, opts ...grpc.CallOption) (*GetBatchResponse, error)
	// GetBatch returns the encrypted batch based on a hash
	GetBatchBySeqNo(ctx context.Context, in *GetBatchBySeqNoRequest, opts ...grpc.CallOption) (*GetBatchResponse, error)
	// GetRollupData returns the first batch sequence number in the rollup and the timestamp
	GetRollupData(ctx context.Context, in *GetRollupDataRequest, opts ...grpc.CallOption) (*GetRollupDataResponse, error)
	CreateBatch(ctx context.Context, in *CreateBatchRequest, opts ...grpc.CallOption) (*CreateBatchResponse, error)
	CreateRollup(ctx context.Context, in *CreateRollupRequest, opts ...grpc.CallOption) (*CreateRollupResponse, error)
	DebugTraceTransaction(ctx context.Context, in *DebugTraceTransactionRequest, opts ...grpc.CallOption) (*DebugTraceTransactionResponse, error)
	StreamL2Updates(ctx context.Context, in *StreamL2UpdatesRequest, opts ...grpc.CallOption) (EnclaveProto_StreamL2UpdatesClient, error)
	DebugEventLogRelevancy(ctx context.Context, in *DebugEventLogRelevancyRequest, opts ...grpc.CallOption) (*DebugEventLogRelevancyResponse, error)
	GetTotalContractCount(ctx context.Context, in *GetTotalContractCountRequest, opts ...grpc.CallOption) (*GetTotalContractCountResponse, error)
	GetReceiptsByAddress(ctx context.Context, in *GetReceiptsByAddressRequest, opts ...grpc.CallOption) (*GetReceiptsByAddressResponse, error)
	GetPublicTransactionData(ctx context.Context, in *GetPublicTransactionDataRequest, opts ...grpc.CallOption) (*GetPublicTransactionDataResponse, error)
	// EnclavePublicConfig returns public network data that is known to the enclave but may not be known to the host
	EnclavePublicConfig(ctx context.Context, in *EnclavePublicConfigRequest, opts ...grpc.CallOption) (*EnclavePublicConfigResponse, error)
}

EnclaveProtoClient is the client API for EnclaveProto 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 EnclaveProtoServer

type EnclaveProtoServer interface {
	// Status is used to check whether the server is ready for requests.
	Status(context.Context, *StatusRequest) (*StatusResponse, error)
	// Attestation - Produces an attestation report which will be used to request the shared secret from another enclave.
	Attestation(context.Context, *AttestationRequest) (*AttestationResponse, error)
	// GenerateSecret - the genesis enclave is responsible with generating the secret entropy
	GenerateSecret(context.Context, *GenerateSecretRequest) (*GenerateSecretResponse, error)
	// Init - initialise an enclave with a seed received by another enclave
	InitEnclave(context.Context, *InitEnclaveRequest) (*InitEnclaveResponse, error)
	// EnclaveID - request the EnclaveID from the enclave
	EnclaveID(context.Context, *EnclaveIDRequest) (*EnclaveIDResponse, error)
	// SubmitL1Block - Used for the host to submit blocks to the enclave, these may be:
	//  a. historic block - if the enclave is behind and in the process of catching up with the L1 state
	//  b. the latest block published by the L1, to which the enclave should respond with a rollup
	// It is the responsibility of the host to gossip the returned rollup
	// For good functioning the caller should always submit blocks ordered by height
	// submitting a block before receiving ancestors of it, will result in it being ignored
	SubmitL1Block(context.Context, *SubmitBlockRequest) (*SubmitBlockResponse, error)
	// SubmitTx - user transactions
	SubmitTx(context.Context, *SubmitTxRequest) (*SubmitTxResponse, error)
	// SubmitBatch submits a batch received from the sequencer for processing.
	SubmitBatch(context.Context, *SubmitBatchRequest) (*SubmitBatchResponse, error)
	// ObsCall - returns the result of executing the smart contract as a user, encrypted with the
	// viewing key corresponding to the `from` field
	ObsCall(context.Context, *ObsCallRequest) (*ObsCallResponse, error)
	// GetTransactionCount - returns the nonce of the wallet with the given address.
	GetTransactionCount(context.Context, *GetTransactionCountRequest) (*GetTransactionCountResponse, error)
	// Stop gracefully stops the enclave
	Stop(context.Context, *StopRequest) (*StopResponse, error)
	// GetTransaction returns a transaction given its Signed Hash, returns nil, false when Transaction is unknown
	GetTransaction(context.Context, *GetTransactionRequest) (*GetTransactionResponse, error)
	// GetTransaction returns a transaction receipt given the transaction's signed hash, encrypted with the viewing key
	// corresponding to the original transaction submitter
	GetTransactionReceipt(context.Context, *GetTransactionReceiptRequest) (*GetTransactionReceiptResponse, error)
	// GetBalance returns the address's balance on the Obscuro network, encrypted with the viewing key corresponding to
	// the address
	GetBalance(context.Context, *GetBalanceRequest) (*GetBalanceResponse, error)
	// GetCode returns the code stored at the given address in the state for the given rollup height or rollup hash
	GetCode(context.Context, *GetCodeRequest) (*GetCodeResponse, error)
	Subscribe(context.Context, *SubscribeRequest) (*SubscribeResponse, error)
	Unsubscribe(context.Context, *UnsubscribeRequest) (*UnsubscribeResponse, error)
	// EstimateGas returns the estimation of gas used for the given transactions
	EstimateGas(context.Context, *EstimateGasRequest) (*EstimateGasResponse, error)
	GetLogs(context.Context, *GetLogsRequest) (*GetLogsResponse, error)
	// HealthCheck returns the health status of enclave + db
	HealthCheck(context.Context, *EmptyArgs) (*HealthCheckResponse, error)
	// GetBatch returns the encrypted batch based on a hash
	GetBatch(context.Context, *GetBatchRequest) (*GetBatchResponse, error)
	// GetBatch returns the encrypted batch based on a hash
	GetBatchBySeqNo(context.Context, *GetBatchBySeqNoRequest) (*GetBatchResponse, error)
	// GetRollupData returns the first batch sequence number in the rollup and the timestamp
	GetRollupData(context.Context, *GetRollupDataRequest) (*GetRollupDataResponse, error)
	CreateBatch(context.Context, *CreateBatchRequest) (*CreateBatchResponse, error)
	CreateRollup(context.Context, *CreateRollupRequest) (*CreateRollupResponse, error)
	DebugTraceTransaction(context.Context, *DebugTraceTransactionRequest) (*DebugTraceTransactionResponse, error)
	StreamL2Updates(*StreamL2UpdatesRequest, EnclaveProto_StreamL2UpdatesServer) error
	DebugEventLogRelevancy(context.Context, *DebugEventLogRelevancyRequest) (*DebugEventLogRelevancyResponse, error)
	GetTotalContractCount(context.Context, *GetTotalContractCountRequest) (*GetTotalContractCountResponse, error)
	GetReceiptsByAddress(context.Context, *GetReceiptsByAddressRequest) (*GetReceiptsByAddressResponse, error)
	GetPublicTransactionData(context.Context, *GetPublicTransactionDataRequest) (*GetPublicTransactionDataResponse, error)
	// EnclavePublicConfig returns public network data that is known to the enclave but may not be known to the host
	EnclavePublicConfig(context.Context, *EnclavePublicConfigRequest) (*EnclavePublicConfigResponse, error)
	// contains filtered or unexported methods
}

EnclaveProtoServer is the server API for EnclaveProto service. All implementations must embed UnimplementedEnclaveProtoServer for forward compatibility

type EnclaveProto_StreamL2UpdatesClient

type EnclaveProto_StreamL2UpdatesClient interface {
	Recv() (*EncodedUpdateResponse, error)
	grpc.ClientStream
}

type EnclaveProto_StreamL2UpdatesServer

type EnclaveProto_StreamL2UpdatesServer interface {
	Send(*EncodedUpdateResponse) error
	grpc.ServerStream
}

type EnclavePublicConfigRequest

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

func (*EnclavePublicConfigRequest) Descriptor deprecated

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

Deprecated: Use EnclavePublicConfigRequest.ProtoReflect.Descriptor instead.

func (*EnclavePublicConfigRequest) ProtoMessage

func (*EnclavePublicConfigRequest) ProtoMessage()

func (*EnclavePublicConfigRequest) ProtoReflect

func (*EnclavePublicConfigRequest) Reset

func (x *EnclavePublicConfigRequest) Reset()

func (*EnclavePublicConfigRequest) String

func (x *EnclavePublicConfigRequest) String() string

type EnclavePublicConfigResponse

type EnclavePublicConfigResponse struct {
	L2MessageBusAddress []byte       `protobuf:"bytes,1,opt,name=l2MessageBusAddress,proto3" json:"l2MessageBusAddress,omitempty"`
	SystemError         *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*EnclavePublicConfigResponse) Descriptor deprecated

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

Deprecated: Use EnclavePublicConfigResponse.ProtoReflect.Descriptor instead.

func (*EnclavePublicConfigResponse) GetL2MessageBusAddress

func (x *EnclavePublicConfigResponse) GetL2MessageBusAddress() []byte

func (*EnclavePublicConfigResponse) GetSystemError

func (x *EnclavePublicConfigResponse) GetSystemError() *SystemError

func (*EnclavePublicConfigResponse) ProtoMessage

func (*EnclavePublicConfigResponse) ProtoMessage()

func (*EnclavePublicConfigResponse) ProtoReflect

func (*EnclavePublicConfigResponse) Reset

func (x *EnclavePublicConfigResponse) Reset()

func (*EnclavePublicConfigResponse) String

func (x *EnclavePublicConfigResponse) String() string

type EncodedUpdateResponse

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

func (*EncodedUpdateResponse) Descriptor deprecated

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

Deprecated: Use EncodedUpdateResponse.ProtoReflect.Descriptor instead.

func (*EncodedUpdateResponse) GetBatch

func (x *EncodedUpdateResponse) GetBatch() []byte

func (*EncodedUpdateResponse) ProtoMessage

func (*EncodedUpdateResponse) ProtoMessage()

func (*EncodedUpdateResponse) ProtoReflect

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

func (*EncodedUpdateResponse) Reset

func (x *EncodedUpdateResponse) Reset()

func (*EncodedUpdateResponse) String

func (x *EncodedUpdateResponse) String() string

type EstimateGasRequest

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

func (*EstimateGasRequest) Descriptor deprecated

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

Deprecated: Use EstimateGasRequest.ProtoReflect.Descriptor instead.

func (*EstimateGasRequest) GetEncryptedParams

func (x *EstimateGasRequest) GetEncryptedParams() []byte

func (*EstimateGasRequest) ProtoMessage

func (*EstimateGasRequest) ProtoMessage()

func (*EstimateGasRequest) ProtoReflect

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

func (*EstimateGasRequest) Reset

func (x *EstimateGasRequest) Reset()

func (*EstimateGasRequest) String

func (x *EstimateGasRequest) String() string

type EstimateGasResponse

type EstimateGasResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*EstimateGasResponse) Descriptor deprecated

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

Deprecated: Use EstimateGasResponse.ProtoReflect.Descriptor instead.

func (*EstimateGasResponse) GetEncodedEnclaveResponse

func (x *EstimateGasResponse) GetEncodedEnclaveResponse() []byte

func (*EstimateGasResponse) GetSystemError

func (x *EstimateGasResponse) GetSystemError() *SystemError

func (*EstimateGasResponse) ProtoMessage

func (*EstimateGasResponse) ProtoMessage()

func (*EstimateGasResponse) ProtoReflect

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

func (*EstimateGasResponse) Reset

func (x *EstimateGasResponse) Reset()

func (*EstimateGasResponse) String

func (x *EstimateGasResponse) String() string

type ExtBatchMsg

type ExtBatchMsg struct {
	Header   *BatchHeaderMsg `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	TxHashes [][]byte        `protobuf:"bytes,2,rep,name=txHashes,proto3" json:"txHashes,omitempty"`
	Txs      []byte          `protobuf:"bytes,3,opt,name=txs,proto3" json:"txs,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtBatchMsg) Descriptor deprecated

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

Deprecated: Use ExtBatchMsg.ProtoReflect.Descriptor instead.

func (*ExtBatchMsg) GetHeader

func (x *ExtBatchMsg) GetHeader() *BatchHeaderMsg

func (*ExtBatchMsg) GetTxHashes

func (x *ExtBatchMsg) GetTxHashes() [][]byte

func (*ExtBatchMsg) GetTxs

func (x *ExtBatchMsg) GetTxs() []byte

func (*ExtBatchMsg) ProtoMessage

func (*ExtBatchMsg) ProtoMessage()

func (*ExtBatchMsg) ProtoReflect

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

func (*ExtBatchMsg) Reset

func (x *ExtBatchMsg) Reset()

func (*ExtBatchMsg) String

func (x *ExtBatchMsg) String() string

type ExtRollupMsg

type ExtRollupMsg struct {
	Header               *RollupHeaderMsg `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	BatchPayloads        []byte           `protobuf:"bytes,2,opt,name=batchPayloads,proto3" json:"batchPayloads,omitempty"`
	CalldataRollupHeader []byte           `protobuf:"bytes,3,opt,name=calldataRollupHeader,proto3" json:"calldataRollupHeader,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtRollupMsg) Descriptor deprecated

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

Deprecated: Use ExtRollupMsg.ProtoReflect.Descriptor instead.

func (*ExtRollupMsg) GetBatchPayloads

func (x *ExtRollupMsg) GetBatchPayloads() []byte

func (*ExtRollupMsg) GetCalldataRollupHeader

func (x *ExtRollupMsg) GetCalldataRollupHeader() []byte

func (*ExtRollupMsg) GetHeader

func (x *ExtRollupMsg) GetHeader() *RollupHeaderMsg

func (*ExtRollupMsg) ProtoMessage

func (*ExtRollupMsg) ProtoMessage()

func (*ExtRollupMsg) ProtoReflect

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

func (*ExtRollupMsg) Reset

func (x *ExtRollupMsg) Reset()

func (*ExtRollupMsg) String

func (x *ExtRollupMsg) String() string

type GenerateSecretRequest

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

func (*GenerateSecretRequest) Descriptor deprecated

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

Deprecated: Use GenerateSecretRequest.ProtoReflect.Descriptor instead.

func (*GenerateSecretRequest) ProtoMessage

func (*GenerateSecretRequest) ProtoMessage()

func (*GenerateSecretRequest) ProtoReflect

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

func (*GenerateSecretRequest) Reset

func (x *GenerateSecretRequest) Reset()

func (*GenerateSecretRequest) String

func (x *GenerateSecretRequest) String() string

type GenerateSecretResponse

type GenerateSecretResponse struct {
	EncryptedSharedEnclaveSecret []byte       `protobuf:"bytes,1,opt,name=encryptedSharedEnclaveSecret,proto3" json:"encryptedSharedEnclaveSecret,omitempty"`
	SystemError                  *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateSecretResponse) Descriptor deprecated

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

Deprecated: Use GenerateSecretResponse.ProtoReflect.Descriptor instead.

func (*GenerateSecretResponse) GetEncryptedSharedEnclaveSecret

func (x *GenerateSecretResponse) GetEncryptedSharedEnclaveSecret() []byte

func (*GenerateSecretResponse) GetSystemError

func (x *GenerateSecretResponse) GetSystemError() *SystemError

func (*GenerateSecretResponse) ProtoMessage

func (*GenerateSecretResponse) ProtoMessage()

func (*GenerateSecretResponse) ProtoReflect

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

func (*GenerateSecretResponse) Reset

func (x *GenerateSecretResponse) Reset()

func (*GenerateSecretResponse) String

func (x *GenerateSecretResponse) String() string

type GetBalanceRequest

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

func (*GetBalanceRequest) Descriptor deprecated

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

Deprecated: Use GetBalanceRequest.ProtoReflect.Descriptor instead.

func (*GetBalanceRequest) GetEncryptedParams

func (x *GetBalanceRequest) GetEncryptedParams() []byte

func (*GetBalanceRequest) ProtoMessage

func (*GetBalanceRequest) ProtoMessage()

func (*GetBalanceRequest) ProtoReflect

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

func (*GetBalanceRequest) Reset

func (x *GetBalanceRequest) Reset()

func (*GetBalanceRequest) String

func (x *GetBalanceRequest) String() string

type GetBalanceResponse

type GetBalanceResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBalanceResponse) Descriptor deprecated

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

Deprecated: Use GetBalanceResponse.ProtoReflect.Descriptor instead.

func (*GetBalanceResponse) GetEncodedEnclaveResponse

func (x *GetBalanceResponse) GetEncodedEnclaveResponse() []byte

func (*GetBalanceResponse) GetSystemError

func (x *GetBalanceResponse) GetSystemError() *SystemError

func (*GetBalanceResponse) ProtoMessage

func (*GetBalanceResponse) ProtoMessage()

func (*GetBalanceResponse) ProtoReflect

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

func (*GetBalanceResponse) Reset

func (x *GetBalanceResponse) Reset()

func (*GetBalanceResponse) String

func (x *GetBalanceResponse) String() string

type GetBatchBySeqNoRequest

type GetBatchBySeqNoRequest struct {
	SeqNo uint64 `protobuf:"varint,1,opt,name=seqNo,proto3" json:"seqNo,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchBySeqNoRequest) Descriptor deprecated

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

Deprecated: Use GetBatchBySeqNoRequest.ProtoReflect.Descriptor instead.

func (*GetBatchBySeqNoRequest) GetSeqNo

func (x *GetBatchBySeqNoRequest) GetSeqNo() uint64

func (*GetBatchBySeqNoRequest) ProtoMessage

func (*GetBatchBySeqNoRequest) ProtoMessage()

func (*GetBatchBySeqNoRequest) ProtoReflect

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

func (*GetBatchBySeqNoRequest) Reset

func (x *GetBatchBySeqNoRequest) Reset()

func (*GetBatchBySeqNoRequest) String

func (x *GetBatchBySeqNoRequest) String() string

type GetBatchRequest

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

func (*GetBatchRequest) Descriptor deprecated

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

Deprecated: Use GetBatchRequest.ProtoReflect.Descriptor instead.

func (*GetBatchRequest) GetKnownHead

func (x *GetBatchRequest) GetKnownHead() []byte

func (*GetBatchRequest) ProtoMessage

func (*GetBatchRequest) ProtoMessage()

func (*GetBatchRequest) ProtoReflect

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

func (*GetBatchRequest) Reset

func (x *GetBatchRequest) Reset()

func (*GetBatchRequest) String

func (x *GetBatchRequest) String() string

type GetBatchResponse

type GetBatchResponse struct {
	Batch       []byte       `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchResponse) Descriptor deprecated

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

Deprecated: Use GetBatchResponse.ProtoReflect.Descriptor instead.

func (*GetBatchResponse) GetBatch

func (x *GetBatchResponse) GetBatch() []byte

func (*GetBatchResponse) GetSystemError

func (x *GetBatchResponse) GetSystemError() *SystemError

func (*GetBatchResponse) ProtoMessage

func (*GetBatchResponse) ProtoMessage()

func (*GetBatchResponse) ProtoReflect

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

func (*GetBatchResponse) Reset

func (x *GetBatchResponse) Reset()

func (*GetBatchResponse) String

func (x *GetBatchResponse) String() string

type GetCodeRequest

type GetCodeRequest struct {
	Address    []byte `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	RollupHash []byte `protobuf:"bytes,2,opt,name=rollupHash,proto3" json:"rollupHash,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCodeRequest) Descriptor deprecated

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

Deprecated: Use GetCodeRequest.ProtoReflect.Descriptor instead.

func (*GetCodeRequest) GetAddress

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

func (*GetCodeRequest) GetRollupHash

func (x *GetCodeRequest) GetRollupHash() []byte

func (*GetCodeRequest) ProtoMessage

func (*GetCodeRequest) ProtoMessage()

func (*GetCodeRequest) ProtoReflect

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

func (*GetCodeRequest) Reset

func (x *GetCodeRequest) Reset()

func (*GetCodeRequest) String

func (x *GetCodeRequest) String() string

type GetCodeResponse

type GetCodeResponse struct {
	Code        []byte       `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCodeResponse) Descriptor deprecated

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

Deprecated: Use GetCodeResponse.ProtoReflect.Descriptor instead.

func (*GetCodeResponse) GetCode

func (x *GetCodeResponse) GetCode() []byte

func (*GetCodeResponse) GetSystemError

func (x *GetCodeResponse) GetSystemError() *SystemError

func (*GetCodeResponse) ProtoMessage

func (*GetCodeResponse) ProtoMessage()

func (*GetCodeResponse) ProtoReflect

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

func (*GetCodeResponse) Reset

func (x *GetCodeResponse) Reset()

func (*GetCodeResponse) String

func (x *GetCodeResponse) String() string

type GetLogsRequest

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

func (*GetLogsRequest) Descriptor deprecated

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

Deprecated: Use GetLogsRequest.ProtoReflect.Descriptor instead.

func (*GetLogsRequest) GetEncryptedParams

func (x *GetLogsRequest) GetEncryptedParams() []byte

func (*GetLogsRequest) ProtoMessage

func (*GetLogsRequest) ProtoMessage()

func (*GetLogsRequest) ProtoReflect

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

func (*GetLogsRequest) Reset

func (x *GetLogsRequest) Reset()

func (*GetLogsRequest) String

func (x *GetLogsRequest) String() string

type GetLogsResponse

type GetLogsResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLogsResponse) Descriptor deprecated

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

Deprecated: Use GetLogsResponse.ProtoReflect.Descriptor instead.

func (*GetLogsResponse) GetEncodedEnclaveResponse

func (x *GetLogsResponse) GetEncodedEnclaveResponse() []byte

func (*GetLogsResponse) GetSystemError

func (x *GetLogsResponse) GetSystemError() *SystemError

func (*GetLogsResponse) ProtoMessage

func (*GetLogsResponse) ProtoMessage()

func (*GetLogsResponse) ProtoReflect

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

func (*GetLogsResponse) Reset

func (x *GetLogsResponse) Reset()

func (*GetLogsResponse) String

func (x *GetLogsResponse) String() string

type GetPublicTransactionDataRequest

type GetPublicTransactionDataRequest struct {
	Pagination *Pagination `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicTransactionDataRequest) Descriptor deprecated

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

Deprecated: Use GetPublicTransactionDataRequest.ProtoReflect.Descriptor instead.

func (*GetPublicTransactionDataRequest) GetPagination

func (x *GetPublicTransactionDataRequest) GetPagination() *Pagination

func (*GetPublicTransactionDataRequest) ProtoMessage

func (*GetPublicTransactionDataRequest) ProtoMessage()

func (*GetPublicTransactionDataRequest) ProtoReflect

func (*GetPublicTransactionDataRequest) Reset

func (*GetPublicTransactionDataRequest) String

type GetPublicTransactionDataResponse

type GetPublicTransactionDataResponse struct {
	PublicTransactionData []byte       `protobuf:"bytes,1,opt,name=publicTransactionData,proto3" json:"publicTransactionData,omitempty"`
	SystemError           *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicTransactionDataResponse) Descriptor deprecated

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

Deprecated: Use GetPublicTransactionDataResponse.ProtoReflect.Descriptor instead.

func (*GetPublicTransactionDataResponse) GetPublicTransactionData

func (x *GetPublicTransactionDataResponse) GetPublicTransactionData() []byte

func (*GetPublicTransactionDataResponse) GetSystemError

func (x *GetPublicTransactionDataResponse) GetSystemError() *SystemError

func (*GetPublicTransactionDataResponse) ProtoMessage

func (*GetPublicTransactionDataResponse) ProtoMessage()

func (*GetPublicTransactionDataResponse) ProtoReflect

func (*GetPublicTransactionDataResponse) Reset

func (*GetPublicTransactionDataResponse) String

type GetReceiptsByAddressRequest

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

func (*GetReceiptsByAddressRequest) Descriptor deprecated

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

Deprecated: Use GetReceiptsByAddressRequest.ProtoReflect.Descriptor instead.

func (*GetReceiptsByAddressRequest) GetEncryptedParams

func (x *GetReceiptsByAddressRequest) GetEncryptedParams() []byte

func (*GetReceiptsByAddressRequest) ProtoMessage

func (*GetReceiptsByAddressRequest) ProtoMessage()

func (*GetReceiptsByAddressRequest) ProtoReflect

func (*GetReceiptsByAddressRequest) Reset

func (x *GetReceiptsByAddressRequest) Reset()

func (*GetReceiptsByAddressRequest) String

func (x *GetReceiptsByAddressRequest) String() string

type GetReceiptsByAddressResponse

type GetReceiptsByAddressResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetReceiptsByAddressResponse) Descriptor deprecated

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

Deprecated: Use GetReceiptsByAddressResponse.ProtoReflect.Descriptor instead.

func (*GetReceiptsByAddressResponse) GetEncodedEnclaveResponse

func (x *GetReceiptsByAddressResponse) GetEncodedEnclaveResponse() []byte

func (*GetReceiptsByAddressResponse) GetSystemError

func (x *GetReceiptsByAddressResponse) GetSystemError() *SystemError

func (*GetReceiptsByAddressResponse) ProtoMessage

func (*GetReceiptsByAddressResponse) ProtoMessage()

func (*GetReceiptsByAddressResponse) ProtoReflect

func (*GetReceiptsByAddressResponse) Reset

func (x *GetReceiptsByAddressResponse) Reset()

func (*GetReceiptsByAddressResponse) String

type GetRollupDataRequest added in v0.24.0

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

func (*GetRollupDataRequest) Descriptor deprecated added in v0.24.0

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

Deprecated: Use GetRollupDataRequest.ProtoReflect.Descriptor instead.

func (*GetRollupDataRequest) GetHash added in v0.24.0

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

func (*GetRollupDataRequest) ProtoMessage added in v0.24.0

func (*GetRollupDataRequest) ProtoMessage()

func (*GetRollupDataRequest) ProtoReflect added in v0.24.0

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

func (*GetRollupDataRequest) Reset added in v0.24.0

func (x *GetRollupDataRequest) Reset()

func (*GetRollupDataRequest) String added in v0.24.0

func (x *GetRollupDataRequest) String() string

type GetRollupDataResponse added in v0.24.0

type GetRollupDataResponse struct {
	Msg         *PublicRollupDataMsg `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	SystemError *SystemError         `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRollupDataResponse) Descriptor deprecated added in v0.24.0

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

Deprecated: Use GetRollupDataResponse.ProtoReflect.Descriptor instead.

func (*GetRollupDataResponse) GetMsg added in v0.24.0

func (*GetRollupDataResponse) GetSystemError added in v0.24.0

func (x *GetRollupDataResponse) GetSystemError() *SystemError

func (*GetRollupDataResponse) ProtoMessage added in v0.24.0

func (*GetRollupDataResponse) ProtoMessage()

func (*GetRollupDataResponse) ProtoReflect added in v0.24.0

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

func (*GetRollupDataResponse) Reset added in v0.24.0

func (x *GetRollupDataResponse) Reset()

func (*GetRollupDataResponse) String added in v0.24.0

func (x *GetRollupDataResponse) String() string

type GetTotalContractCountRequest

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

func (*GetTotalContractCountRequest) Descriptor deprecated

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

Deprecated: Use GetTotalContractCountRequest.ProtoReflect.Descriptor instead.

func (*GetTotalContractCountRequest) ProtoMessage

func (*GetTotalContractCountRequest) ProtoMessage()

func (*GetTotalContractCountRequest) ProtoReflect

func (*GetTotalContractCountRequest) Reset

func (x *GetTotalContractCountRequest) Reset()

func (*GetTotalContractCountRequest) String

type GetTotalContractCountResponse

type GetTotalContractCountResponse struct {
	Count       int64        `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTotalContractCountResponse) Descriptor deprecated

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

Deprecated: Use GetTotalContractCountResponse.ProtoReflect.Descriptor instead.

func (*GetTotalContractCountResponse) GetCount

func (x *GetTotalContractCountResponse) GetCount() int64

func (*GetTotalContractCountResponse) GetSystemError

func (x *GetTotalContractCountResponse) GetSystemError() *SystemError

func (*GetTotalContractCountResponse) ProtoMessage

func (*GetTotalContractCountResponse) ProtoMessage()

func (*GetTotalContractCountResponse) ProtoReflect

func (*GetTotalContractCountResponse) Reset

func (x *GetTotalContractCountResponse) Reset()

func (*GetTotalContractCountResponse) String

type GetTransactionCountRequest

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

func (*GetTransactionCountRequest) Descriptor deprecated

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

Deprecated: Use GetTransactionCountRequest.ProtoReflect.Descriptor instead.

func (*GetTransactionCountRequest) GetEncryptedParams

func (x *GetTransactionCountRequest) GetEncryptedParams() []byte

func (*GetTransactionCountRequest) ProtoMessage

func (*GetTransactionCountRequest) ProtoMessage()

func (*GetTransactionCountRequest) ProtoReflect

func (*GetTransactionCountRequest) Reset

func (x *GetTransactionCountRequest) Reset()

func (*GetTransactionCountRequest) String

func (x *GetTransactionCountRequest) String() string

type GetTransactionCountResponse

type GetTransactionCountResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTransactionCountResponse) Descriptor deprecated

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

Deprecated: Use GetTransactionCountResponse.ProtoReflect.Descriptor instead.

func (*GetTransactionCountResponse) GetEncodedEnclaveResponse

func (x *GetTransactionCountResponse) GetEncodedEnclaveResponse() []byte

func (*GetTransactionCountResponse) GetSystemError

func (x *GetTransactionCountResponse) GetSystemError() *SystemError

func (*GetTransactionCountResponse) ProtoMessage

func (*GetTransactionCountResponse) ProtoMessage()

func (*GetTransactionCountResponse) ProtoReflect

func (*GetTransactionCountResponse) Reset

func (x *GetTransactionCountResponse) Reset()

func (*GetTransactionCountResponse) String

func (x *GetTransactionCountResponse) String() string

type GetTransactionReceiptRequest

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

func (*GetTransactionReceiptRequest) Descriptor deprecated

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

Deprecated: Use GetTransactionReceiptRequest.ProtoReflect.Descriptor instead.

func (*GetTransactionReceiptRequest) GetEncryptedParams

func (x *GetTransactionReceiptRequest) GetEncryptedParams() []byte

func (*GetTransactionReceiptRequest) ProtoMessage

func (*GetTransactionReceiptRequest) ProtoMessage()

func (*GetTransactionReceiptRequest) ProtoReflect

func (*GetTransactionReceiptRequest) Reset

func (x *GetTransactionReceiptRequest) Reset()

func (*GetTransactionReceiptRequest) String

type GetTransactionReceiptResponse

type GetTransactionReceiptResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTransactionReceiptResponse) Descriptor deprecated

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

Deprecated: Use GetTransactionReceiptResponse.ProtoReflect.Descriptor instead.

func (*GetTransactionReceiptResponse) GetEncodedEnclaveResponse

func (x *GetTransactionReceiptResponse) GetEncodedEnclaveResponse() []byte

func (*GetTransactionReceiptResponse) GetSystemError

func (x *GetTransactionReceiptResponse) GetSystemError() *SystemError

func (*GetTransactionReceiptResponse) ProtoMessage

func (*GetTransactionReceiptResponse) ProtoMessage()

func (*GetTransactionReceiptResponse) ProtoReflect

func (*GetTransactionReceiptResponse) Reset

func (x *GetTransactionReceiptResponse) Reset()

func (*GetTransactionReceiptResponse) String

type GetTransactionRequest

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

func (*GetTransactionRequest) Descriptor deprecated

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

Deprecated: Use GetTransactionRequest.ProtoReflect.Descriptor instead.

func (*GetTransactionRequest) GetEncryptedParams

func (x *GetTransactionRequest) GetEncryptedParams() []byte

func (*GetTransactionRequest) ProtoMessage

func (*GetTransactionRequest) ProtoMessage()

func (*GetTransactionRequest) ProtoReflect

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

func (*GetTransactionRequest) Reset

func (x *GetTransactionRequest) Reset()

func (*GetTransactionRequest) String

func (x *GetTransactionRequest) String() string

type GetTransactionResponse

type GetTransactionResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTransactionResponse) Descriptor deprecated

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

Deprecated: Use GetTransactionResponse.ProtoReflect.Descriptor instead.

func (*GetTransactionResponse) GetEncodedEnclaveResponse

func (x *GetTransactionResponse) GetEncodedEnclaveResponse() []byte

func (*GetTransactionResponse) GetSystemError

func (x *GetTransactionResponse) GetSystemError() *SystemError

func (*GetTransactionResponse) ProtoMessage

func (*GetTransactionResponse) ProtoMessage()

func (*GetTransactionResponse) ProtoReflect

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

func (*GetTransactionResponse) Reset

func (x *GetTransactionResponse) Reset()

func (*GetTransactionResponse) String

func (x *GetTransactionResponse) String() string

type HealthCheckResponse

type HealthCheckResponse struct {
	Status      bool         `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*HealthCheckResponse) Descriptor deprecated

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

Deprecated: Use HealthCheckResponse.ProtoReflect.Descriptor instead.

func (*HealthCheckResponse) GetStatus

func (x *HealthCheckResponse) GetStatus() bool

func (*HealthCheckResponse) GetSystemError

func (x *HealthCheckResponse) GetSystemError() *SystemError

func (*HealthCheckResponse) ProtoMessage

func (*HealthCheckResponse) ProtoMessage()

func (*HealthCheckResponse) ProtoReflect

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

func (*HealthCheckResponse) Reset

func (x *HealthCheckResponse) Reset()

func (*HealthCheckResponse) String

func (x *HealthCheckResponse) String() string

type InitEnclaveRequest

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

func (*InitEnclaveRequest) Descriptor deprecated

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

Deprecated: Use InitEnclaveRequest.ProtoReflect.Descriptor instead.

func (*InitEnclaveRequest) GetEncryptedSharedEnclaveSecret

func (x *InitEnclaveRequest) GetEncryptedSharedEnclaveSecret() []byte

func (*InitEnclaveRequest) ProtoMessage

func (*InitEnclaveRequest) ProtoMessage()

func (*InitEnclaveRequest) ProtoReflect

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

func (*InitEnclaveRequest) Reset

func (x *InitEnclaveRequest) Reset()

func (*InitEnclaveRequest) String

func (x *InitEnclaveRequest) String() string

type InitEnclaveResponse

type InitEnclaveResponse struct {
	SystemError *SystemError `protobuf:"bytes,1,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*InitEnclaveResponse) Descriptor deprecated

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

Deprecated: Use InitEnclaveResponse.ProtoReflect.Descriptor instead.

func (*InitEnclaveResponse) GetSystemError

func (x *InitEnclaveResponse) GetSystemError() *SystemError

func (*InitEnclaveResponse) ProtoMessage

func (*InitEnclaveResponse) ProtoMessage()

func (*InitEnclaveResponse) ProtoReflect

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

func (*InitEnclaveResponse) Reset

func (x *InitEnclaveResponse) Reset()

func (*InitEnclaveResponse) String

func (x *InitEnclaveResponse) String() string

type ObsCallRequest

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

func (*ObsCallRequest) Descriptor deprecated

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

Deprecated: Use ObsCallRequest.ProtoReflect.Descriptor instead.

func (*ObsCallRequest) GetEncryptedParams

func (x *ObsCallRequest) GetEncryptedParams() []byte

func (*ObsCallRequest) ProtoMessage

func (*ObsCallRequest) ProtoMessage()

func (*ObsCallRequest) ProtoReflect

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

func (*ObsCallRequest) Reset

func (x *ObsCallRequest) Reset()

func (*ObsCallRequest) String

func (x *ObsCallRequest) String() string

type ObsCallResponse

type ObsCallResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*ObsCallResponse) Descriptor deprecated

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

Deprecated: Use ObsCallResponse.ProtoReflect.Descriptor instead.

func (*ObsCallResponse) GetEncodedEnclaveResponse

func (x *ObsCallResponse) GetEncodedEnclaveResponse() []byte

func (*ObsCallResponse) GetSystemError

func (x *ObsCallResponse) GetSystemError() *SystemError

func (*ObsCallResponse) ProtoMessage

func (*ObsCallResponse) ProtoMessage()

func (*ObsCallResponse) ProtoReflect

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

func (*ObsCallResponse) Reset

func (x *ObsCallResponse) Reset()

func (*ObsCallResponse) String

func (x *ObsCallResponse) String() string

type Pagination

type Pagination struct {
	Offset int32 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
	Size   int32 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	// contains filtered or unexported fields
}

func (*Pagination) Descriptor deprecated

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

Deprecated: Use Pagination.ProtoReflect.Descriptor instead.

func (*Pagination) GetOffset

func (x *Pagination) GetOffset() int32

func (*Pagination) GetSize

func (x *Pagination) GetSize() int32

func (*Pagination) ProtoMessage

func (*Pagination) ProtoMessage()

func (*Pagination) ProtoReflect

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

func (*Pagination) Reset

func (x *Pagination) Reset()

func (*Pagination) String

func (x *Pagination) String() string

type PublicRollupDataMsg added in v0.24.0

type PublicRollupDataMsg struct {
	StartSeq  uint64 `protobuf:"varint,1,opt,name=startSeq,proto3" json:"startSeq,omitempty"`
	Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*PublicRollupDataMsg) Descriptor deprecated added in v0.24.0

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

Deprecated: Use PublicRollupDataMsg.ProtoReflect.Descriptor instead.

func (*PublicRollupDataMsg) GetStartSeq added in v0.24.0

func (x *PublicRollupDataMsg) GetStartSeq() uint64

func (*PublicRollupDataMsg) GetTimestamp added in v0.24.0

func (x *PublicRollupDataMsg) GetTimestamp() uint64

func (*PublicRollupDataMsg) ProtoMessage added in v0.24.0

func (*PublicRollupDataMsg) ProtoMessage()

func (*PublicRollupDataMsg) ProtoReflect added in v0.24.0

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

func (*PublicRollupDataMsg) Reset added in v0.24.0

func (x *PublicRollupDataMsg) Reset()

func (*PublicRollupDataMsg) String added in v0.24.0

func (x *PublicRollupDataMsg) String() string

type RollupHeaderMsg

type RollupHeaderMsg struct {
	ParentHash         []byte           `protobuf:"bytes,1,opt,name=ParentHash,proto3" json:"ParentHash,omitempty"`
	CompressionL1Head  []byte           `protobuf:"bytes,2,opt,name=CompressionL1Head,proto3" json:"CompressionL1Head,omitempty"`
	ProofNumber        uint64           `protobuf:"varint,3,opt,name=ProofNumber,proto3" json:"ProofNumber,omitempty"`
	Number             uint64           `protobuf:"varint,4,opt,name=Number,proto3" json:"Number,omitempty"`
	Time               uint64           `protobuf:"varint,5,opt,name=Time,proto3" json:"Time,omitempty"`
	EnclaveID          []byte           `protobuf:"bytes,6,opt,name=EnclaveID,proto3" json:"EnclaveID,omitempty"`
	CrossChainMessages []*CrossChainMsg `protobuf:"bytes,7,rep,name=CrossChainMessages,proto3" json:"CrossChainMessages,omitempty"`
	Signature          []byte           `protobuf:"bytes,8,opt,name=Signature,proto3" json:"Signature,omitempty"`
	LastBatchSeqNo     uint64           `protobuf:"varint,9,opt,name=LastBatchSeqNo,proto3" json:"LastBatchSeqNo,omitempty"`
	// contains filtered or unexported fields
}

func (*RollupHeaderMsg) Descriptor deprecated

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

Deprecated: Use RollupHeaderMsg.ProtoReflect.Descriptor instead.

func (*RollupHeaderMsg) GetCompressionL1Head

func (x *RollupHeaderMsg) GetCompressionL1Head() []byte

func (*RollupHeaderMsg) GetCrossChainMessages

func (x *RollupHeaderMsg) GetCrossChainMessages() []*CrossChainMsg

func (*RollupHeaderMsg) GetEnclaveID added in v0.24.0

func (x *RollupHeaderMsg) GetEnclaveID() []byte

func (*RollupHeaderMsg) GetLastBatchSeqNo

func (x *RollupHeaderMsg) GetLastBatchSeqNo() uint64

func (*RollupHeaderMsg) GetNumber

func (x *RollupHeaderMsg) GetNumber() uint64

func (*RollupHeaderMsg) GetParentHash

func (x *RollupHeaderMsg) GetParentHash() []byte

func (*RollupHeaderMsg) GetProofNumber

func (x *RollupHeaderMsg) GetProofNumber() uint64

func (*RollupHeaderMsg) GetSignature added in v0.24.0

func (x *RollupHeaderMsg) GetSignature() []byte

func (*RollupHeaderMsg) GetTime

func (x *RollupHeaderMsg) GetTime() uint64

func (*RollupHeaderMsg) ProtoMessage

func (*RollupHeaderMsg) ProtoMessage()

func (*RollupHeaderMsg) ProtoReflect

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

func (*RollupHeaderMsg) Reset

func (x *RollupHeaderMsg) Reset()

func (*RollupHeaderMsg) String

func (x *RollupHeaderMsg) String() string

type SecretResponseMsg

type SecretResponseMsg struct {
	Secret      []byte       `protobuf:"bytes,1,opt,name=Secret,proto3" json:"Secret,omitempty"`
	RequesterID []byte       `protobuf:"bytes,2,opt,name=RequesterID,proto3" json:"RequesterID,omitempty"`
	AttesterID  []byte       `protobuf:"bytes,3,opt,name=AttesterID,proto3" json:"AttesterID,omitempty"`
	HostAddress string       `protobuf:"bytes,4,opt,name=HostAddress,proto3" json:"HostAddress,omitempty"`
	SystemError *SystemError `protobuf:"bytes,5,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretResponseMsg) Descriptor deprecated

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

Deprecated: Use SecretResponseMsg.ProtoReflect.Descriptor instead.

func (*SecretResponseMsg) GetAttesterID added in v0.24.0

func (x *SecretResponseMsg) GetAttesterID() []byte

func (*SecretResponseMsg) GetHostAddress

func (x *SecretResponseMsg) GetHostAddress() string

func (*SecretResponseMsg) GetRequesterID

func (x *SecretResponseMsg) GetRequesterID() []byte

func (*SecretResponseMsg) GetSecret

func (x *SecretResponseMsg) GetSecret() []byte

func (*SecretResponseMsg) GetSystemError

func (x *SecretResponseMsg) GetSystemError() *SystemError

func (*SecretResponseMsg) ProtoMessage

func (*SecretResponseMsg) ProtoMessage()

func (*SecretResponseMsg) ProtoReflect

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

func (*SecretResponseMsg) Reset

func (x *SecretResponseMsg) Reset()

func (*SecretResponseMsg) String

func (x *SecretResponseMsg) String() string

type StartRequest

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

func (*StartRequest) Descriptor deprecated

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

Deprecated: Use StartRequest.ProtoReflect.Descriptor instead.

func (*StartRequest) GetEncodedBlock

func (x *StartRequest) GetEncodedBlock() []byte

func (*StartRequest) ProtoMessage

func (*StartRequest) ProtoMessage()

func (*StartRequest) ProtoReflect

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

func (*StartRequest) Reset

func (x *StartRequest) Reset()

func (*StartRequest) String

func (x *StartRequest) String() string

type StartResponse

type StartResponse struct {
	SystemError *SystemError `protobuf:"bytes,1,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*StartResponse) Descriptor deprecated

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

Deprecated: Use StartResponse.ProtoReflect.Descriptor instead.

func (*StartResponse) GetSystemError

func (x *StartResponse) GetSystemError() *SystemError

func (*StartResponse) ProtoMessage

func (*StartResponse) ProtoMessage()

func (*StartResponse) ProtoReflect

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

func (*StartResponse) Reset

func (x *StartResponse) Reset()

func (*StartResponse) String

func (x *StartResponse) String() string

type StatusRequest

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

func (*StatusRequest) Descriptor deprecated

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

Deprecated: Use StatusRequest.ProtoReflect.Descriptor instead.

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) ProtoReflect

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

func (*StatusRequest) Reset

func (x *StatusRequest) Reset()

func (*StatusRequest) String

func (x *StatusRequest) String() string

type StatusResponse

type StatusResponse struct {
	StatusCode  int32        `protobuf:"varint,1,opt,name=statusCode,proto3" json:"statusCode,omitempty"`
	L1Head      []byte       `protobuf:"bytes,2,opt,name=l1Head,proto3" json:"l1Head,omitempty"` // hash for the L1 head block in enclave's view of the canonical chain
	L2Head      []byte       `protobuf:"bytes,3,opt,name=l2Head,proto3" json:"l2Head,omitempty"` // seq number (big.Int) for the L2 head batch that the enclave has seen
	SystemError *SystemError `protobuf:"bytes,4,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse) Descriptor deprecated

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

Deprecated: Use StatusResponse.ProtoReflect.Descriptor instead.

func (*StatusResponse) GetL1Head

func (x *StatusResponse) GetL1Head() []byte

func (*StatusResponse) GetL2Head

func (x *StatusResponse) GetL2Head() []byte

func (*StatusResponse) GetStatusCode

func (x *StatusResponse) GetStatusCode() int32

func (*StatusResponse) GetSystemError

func (x *StatusResponse) GetSystemError() *SystemError

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) ProtoReflect

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

func (*StatusResponse) Reset

func (x *StatusResponse) Reset()

func (*StatusResponse) String

func (x *StatusResponse) String() string

type StopRequest

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

func (*StopRequest) Descriptor deprecated

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

Deprecated: Use StopRequest.ProtoReflect.Descriptor instead.

func (*StopRequest) ProtoMessage

func (*StopRequest) ProtoMessage()

func (*StopRequest) ProtoReflect

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

func (*StopRequest) Reset

func (x *StopRequest) Reset()

func (*StopRequest) String

func (x *StopRequest) String() string

type StopResponse

type StopResponse struct {
	SystemError *SystemError `protobuf:"bytes,1,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*StopResponse) Descriptor deprecated

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

Deprecated: Use StopResponse.ProtoReflect.Descriptor instead.

func (*StopResponse) GetSystemError

func (x *StopResponse) GetSystemError() *SystemError

func (*StopResponse) ProtoMessage

func (*StopResponse) ProtoMessage()

func (*StopResponse) ProtoReflect

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

func (*StopResponse) Reset

func (x *StopResponse) Reset()

func (*StopResponse) String

func (x *StopResponse) String() string

type StreamL2UpdatesRequest

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

func (*StreamL2UpdatesRequest) Descriptor deprecated

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

Deprecated: Use StreamL2UpdatesRequest.ProtoReflect.Descriptor instead.

func (*StreamL2UpdatesRequest) ProtoMessage

func (*StreamL2UpdatesRequest) ProtoMessage()

func (*StreamL2UpdatesRequest) ProtoReflect

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

func (*StreamL2UpdatesRequest) Reset

func (x *StreamL2UpdatesRequest) Reset()

func (*StreamL2UpdatesRequest) String

func (x *StreamL2UpdatesRequest) String() string

type SubmitBatchRequest

type SubmitBatchRequest struct {
	Batch *ExtBatchMsg `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitBatchRequest) Descriptor deprecated

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

Deprecated: Use SubmitBatchRequest.ProtoReflect.Descriptor instead.

func (*SubmitBatchRequest) GetBatch

func (x *SubmitBatchRequest) GetBatch() *ExtBatchMsg

func (*SubmitBatchRequest) ProtoMessage

func (*SubmitBatchRequest) ProtoMessage()

func (*SubmitBatchRequest) ProtoReflect

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

func (*SubmitBatchRequest) Reset

func (x *SubmitBatchRequest) Reset()

func (*SubmitBatchRequest) String

func (x *SubmitBatchRequest) String() string

type SubmitBatchResponse

type SubmitBatchResponse struct {
	SystemError *SystemError `protobuf:"bytes,1,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitBatchResponse) Descriptor deprecated

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

Deprecated: Use SubmitBatchResponse.ProtoReflect.Descriptor instead.

func (*SubmitBatchResponse) GetSystemError

func (x *SubmitBatchResponse) GetSystemError() *SystemError

func (*SubmitBatchResponse) ProtoMessage

func (*SubmitBatchResponse) ProtoMessage()

func (*SubmitBatchResponse) ProtoReflect

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

func (*SubmitBatchResponse) Reset

func (x *SubmitBatchResponse) Reset()

func (*SubmitBatchResponse) String

func (x *SubmitBatchResponse) String() string

type SubmitBlockRequest

type SubmitBlockRequest struct {
	EncodedBlock    []byte `protobuf:"bytes,1,opt,name=encodedBlock,proto3" json:"encodedBlock,omitempty"`
	EncodedReceipts []byte `protobuf:"bytes,2,opt,name=encodedReceipts,proto3" json:"encodedReceipts,omitempty"`
	IsLatest        bool   `protobuf:"varint,3,opt,name=isLatest,proto3" json:"isLatest,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitBlockRequest) Descriptor deprecated

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

Deprecated: Use SubmitBlockRequest.ProtoReflect.Descriptor instead.

func (*SubmitBlockRequest) GetEncodedBlock

func (x *SubmitBlockRequest) GetEncodedBlock() []byte

func (*SubmitBlockRequest) GetEncodedReceipts

func (x *SubmitBlockRequest) GetEncodedReceipts() []byte

func (*SubmitBlockRequest) GetIsLatest

func (x *SubmitBlockRequest) GetIsLatest() bool

func (*SubmitBlockRequest) ProtoMessage

func (*SubmitBlockRequest) ProtoMessage()

func (*SubmitBlockRequest) ProtoReflect

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

func (*SubmitBlockRequest) Reset

func (x *SubmitBlockRequest) Reset()

func (*SubmitBlockRequest) String

func (x *SubmitBlockRequest) String() string

type SubmitBlockResponse

type SubmitBlockResponse struct {
	BlockSubmissionResponse *BlockSubmissionResponseMsg `protobuf:"bytes,1,opt,name=blockSubmissionResponse,proto3" json:"blockSubmissionResponse,omitempty"`
	SystemError             *SystemError                `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitBlockResponse) Descriptor deprecated

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

Deprecated: Use SubmitBlockResponse.ProtoReflect.Descriptor instead.

func (*SubmitBlockResponse) GetBlockSubmissionResponse

func (x *SubmitBlockResponse) GetBlockSubmissionResponse() *BlockSubmissionResponseMsg

func (*SubmitBlockResponse) GetSystemError

func (x *SubmitBlockResponse) GetSystemError() *SystemError

func (*SubmitBlockResponse) ProtoMessage

func (*SubmitBlockResponse) ProtoMessage()

func (*SubmitBlockResponse) ProtoReflect

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

func (*SubmitBlockResponse) Reset

func (x *SubmitBlockResponse) Reset()

func (*SubmitBlockResponse) String

func (x *SubmitBlockResponse) String() string

type SubmitTxRequest

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

func (*SubmitTxRequest) Descriptor deprecated

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

Deprecated: Use SubmitTxRequest.ProtoReflect.Descriptor instead.

func (*SubmitTxRequest) GetEncryptedTx

func (x *SubmitTxRequest) GetEncryptedTx() []byte

func (*SubmitTxRequest) ProtoMessage

func (*SubmitTxRequest) ProtoMessage()

func (*SubmitTxRequest) ProtoReflect

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

func (*SubmitTxRequest) Reset

func (x *SubmitTxRequest) Reset()

func (*SubmitTxRequest) String

func (x *SubmitTxRequest) String() string

type SubmitTxResponse

type SubmitTxResponse struct {
	EncodedEnclaveResponse []byte       `protobuf:"bytes,1,opt,name=encodedEnclaveResponse,proto3" json:"encodedEnclaveResponse,omitempty"`
	SystemError            *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitTxResponse) Descriptor deprecated

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

Deprecated: Use SubmitTxResponse.ProtoReflect.Descriptor instead.

func (*SubmitTxResponse) GetEncodedEnclaveResponse

func (x *SubmitTxResponse) GetEncodedEnclaveResponse() []byte

func (*SubmitTxResponse) GetSystemError

func (x *SubmitTxResponse) GetSystemError() *SystemError

func (*SubmitTxResponse) ProtoMessage

func (*SubmitTxResponse) ProtoMessage()

func (*SubmitTxResponse) ProtoReflect

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

func (*SubmitTxResponse) Reset

func (x *SubmitTxResponse) Reset()

func (*SubmitTxResponse) String

func (x *SubmitTxResponse) String() string

type SubscribeRequest

type SubscribeRequest struct {
	Id                    []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	EncryptedSubscription []byte `protobuf:"bytes,2,opt,name=encryptedSubscription,proto3" json:"encryptedSubscription,omitempty"`
	// contains filtered or unexported fields
}

func (*SubscribeRequest) Descriptor deprecated

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

Deprecated: Use SubscribeRequest.ProtoReflect.Descriptor instead.

func (*SubscribeRequest) GetEncryptedSubscription

func (x *SubscribeRequest) GetEncryptedSubscription() []byte

func (*SubscribeRequest) GetId

func (x *SubscribeRequest) GetId() []byte

func (*SubscribeRequest) ProtoMessage

func (*SubscribeRequest) ProtoMessage()

func (*SubscribeRequest) ProtoReflect

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

func (*SubscribeRequest) Reset

func (x *SubscribeRequest) Reset()

func (*SubscribeRequest) String

func (x *SubscribeRequest) String() string

type SubscribeResponse

type SubscribeResponse struct {
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*SubscribeResponse) Descriptor deprecated

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

Deprecated: Use SubscribeResponse.ProtoReflect.Descriptor instead.

func (*SubscribeResponse) GetSystemError

func (x *SubscribeResponse) GetSystemError() *SystemError

func (*SubscribeResponse) ProtoMessage

func (*SubscribeResponse) ProtoMessage()

func (*SubscribeResponse) ProtoReflect

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

func (*SubscribeResponse) Reset

func (x *SubscribeResponse) Reset()

func (*SubscribeResponse) String

func (x *SubscribeResponse) String() string

type SystemError

type SystemError struct {
	ErrorCode   int32  `protobuf:"varint,1,opt,name=errorCode,proto3" json:"errorCode,omitempty"`
	ErrorString string `protobuf:"bytes,2,opt,name=errorString,proto3" json:"errorString,omitempty"`
	// contains filtered or unexported fields
}

func (*SystemError) Descriptor deprecated

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

Deprecated: Use SystemError.ProtoReflect.Descriptor instead.

func (*SystemError) GetErrorCode

func (x *SystemError) GetErrorCode() int32

func (*SystemError) GetErrorString

func (x *SystemError) GetErrorString() string

func (*SystemError) ProtoMessage

func (*SystemError) ProtoMessage()

func (*SystemError) ProtoReflect

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

func (*SystemError) Reset

func (x *SystemError) Reset()

func (*SystemError) String

func (x *SystemError) String() string

type UnimplementedEnclaveProtoServer

type UnimplementedEnclaveProtoServer struct {
}

UnimplementedEnclaveProtoServer must be embedded to have forward compatible implementations.

func (UnimplementedEnclaveProtoServer) Attestation

func (UnimplementedEnclaveProtoServer) CreateBatch

func (UnimplementedEnclaveProtoServer) CreateRollup

func (UnimplementedEnclaveProtoServer) EnclaveID added in v0.21.0

func (UnimplementedEnclaveProtoServer) EstimateGas

func (UnimplementedEnclaveProtoServer) GenerateSecret

func (UnimplementedEnclaveProtoServer) GetBalance

func (UnimplementedEnclaveProtoServer) GetBatch

func (UnimplementedEnclaveProtoServer) GetBatchBySeqNo

func (UnimplementedEnclaveProtoServer) GetCode

func (UnimplementedEnclaveProtoServer) GetLogs

func (UnimplementedEnclaveProtoServer) GetRollupData added in v0.24.0

func (UnimplementedEnclaveProtoServer) GetTransaction

func (UnimplementedEnclaveProtoServer) HealthCheck

func (UnimplementedEnclaveProtoServer) InitEnclave

func (UnimplementedEnclaveProtoServer) ObsCall

func (UnimplementedEnclaveProtoServer) Status

func (UnimplementedEnclaveProtoServer) Stop

func (UnimplementedEnclaveProtoServer) SubmitBatch

func (UnimplementedEnclaveProtoServer) SubmitL1Block

func (UnimplementedEnclaveProtoServer) SubmitTx

func (UnimplementedEnclaveProtoServer) Subscribe

func (UnimplementedEnclaveProtoServer) Unsubscribe

type UnsafeEnclaveProtoServer

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

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

type UnsubscribeRequest

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

func (*UnsubscribeRequest) Descriptor deprecated

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

Deprecated: Use UnsubscribeRequest.ProtoReflect.Descriptor instead.

func (*UnsubscribeRequest) GetId

func (x *UnsubscribeRequest) GetId() []byte

func (*UnsubscribeRequest) ProtoMessage

func (*UnsubscribeRequest) ProtoMessage()

func (*UnsubscribeRequest) ProtoReflect

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

func (*UnsubscribeRequest) Reset

func (x *UnsubscribeRequest) Reset()

func (*UnsubscribeRequest) String

func (x *UnsubscribeRequest) String() string

type UnsubscribeResponse

type UnsubscribeResponse struct {
	SystemError *SystemError `protobuf:"bytes,2,opt,name=systemError,proto3" json:"systemError,omitempty"`
	// contains filtered or unexported fields
}

func (*UnsubscribeResponse) Descriptor deprecated

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

Deprecated: Use UnsubscribeResponse.ProtoReflect.Descriptor instead.

func (*UnsubscribeResponse) GetSystemError

func (x *UnsubscribeResponse) GetSystemError() *SystemError

func (*UnsubscribeResponse) ProtoMessage

func (*UnsubscribeResponse) ProtoMessage()

func (*UnsubscribeResponse) ProtoReflect

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

func (*UnsubscribeResponse) Reset

func (x *UnsubscribeResponse) Reset()

func (*UnsubscribeResponse) String

func (x *UnsubscribeResponse) String() string

type WithdrawalMsg

type WithdrawalMsg struct {
	Amount    []byte `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount,omitempty"`
	Recipient []byte `protobuf:"bytes,2,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Contract  []byte `protobuf:"bytes,3,opt,name=contract,proto3" json:"contract,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalMsg) Descriptor deprecated

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

Deprecated: Use WithdrawalMsg.ProtoReflect.Descriptor instead.

func (*WithdrawalMsg) GetAmount

func (x *WithdrawalMsg) GetAmount() []byte

func (*WithdrawalMsg) GetContract

func (x *WithdrawalMsg) GetContract() []byte

func (*WithdrawalMsg) GetRecipient

func (x *WithdrawalMsg) GetRecipient() []byte

func (*WithdrawalMsg) ProtoMessage

func (*WithdrawalMsg) ProtoMessage()

func (*WithdrawalMsg) ProtoReflect

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

func (*WithdrawalMsg) Reset

func (x *WithdrawalMsg) Reset()

func (*WithdrawalMsg) String

func (x *WithdrawalMsg) String() string

Jump to

Keyboard shortcuts

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