pep

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Overview

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

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

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

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

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

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

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

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

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

Index

Constants

This section is empty.

Variables

View Source
var File_fairyring_pep_aggregated_key_share_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_encrypted_tx_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_genesis_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_packet_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_params_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_pep_nonce_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_pub_key_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_query_proto protoreflect.FileDescriptor
View Source
var File_fairyring_pep_tx_proto protoreflect.FileDescriptor
View Source
var Msg_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "fairyring.pep.Msg",
	HandlerType: (*MsgServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SubmitEncryptedTx",
			Handler:    _Msg_SubmitEncryptedTx_Handler,
		},
		{
			MethodName: "CreateAggregatedKeyShare",
			Handler:    _Msg_CreateAggregatedKeyShare_Handler,
		},
		{
			MethodName: "RequestGeneralKeyshare",
			Handler:    _Msg_RequestGeneralKeyshare_Handler,
		},
		{
			MethodName: "GetGeneralKeyshare",
			Handler:    _Msg_GetGeneralKeyshare_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "fairyring/pep/tx.proto",
}

Msg_ServiceDesc is the grpc.ServiceDesc for Msg 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 Query_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "fairyring.pep.Query",
	HandlerType: (*QueryServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Params",
			Handler:    _Query_Params_Handler,
		},
		{
			MethodName: "EncryptedTx",
			Handler:    _Query_EncryptedTx_Handler,
		},
		{
			MethodName: "EncryptedTxAll",
			Handler:    _Query_EncryptedTxAll_Handler,
		},
		{
			MethodName: "EncryptedTxAllFromHeight",
			Handler:    _Query_EncryptedTxAllFromHeight_Handler,
		},
		{
			MethodName: "LatestHeight",
			Handler:    _Query_LatestHeight_Handler,
		},
		{
			MethodName: "PepNonce",
			Handler:    _Query_PepNonce_Handler,
		},
		{
			MethodName: "PepNonceAll",
			Handler:    _Query_PepNonceAll_Handler,
		},
		{
			MethodName: "PubKey",
			Handler:    _Query_PubKey_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "fairyring/pep/query.proto",
}

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

Functions

func RegisterMsgServer

func RegisterMsgServer(s grpc.ServiceRegistrar, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc.ServiceRegistrar, srv QueryServer)

Types

type ActivePubKey

type ActivePubKey struct {
	PublicKey string `protobuf:"bytes,1,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	Creator   string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
	Expiry    uint64 `protobuf:"varint,3,opt,name=expiry,proto3" json:"expiry,omitempty"`
	// contains filtered or unexported fields
}

func (*ActivePubKey) Descriptor deprecated

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

Deprecated: Use ActivePubKey.ProtoReflect.Descriptor instead.

func (*ActivePubKey) GetCreator

func (x *ActivePubKey) GetCreator() string

func (*ActivePubKey) GetExpiry

func (x *ActivePubKey) GetExpiry() uint64

func (*ActivePubKey) GetPublicKey

func (x *ActivePubKey) GetPublicKey() string

func (*ActivePubKey) ProtoMessage

func (*ActivePubKey) ProtoMessage()

func (*ActivePubKey) ProtoReflect

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

func (*ActivePubKey) Reset

func (x *ActivePubKey) Reset()

func (*ActivePubKey) String

func (x *ActivePubKey) String() string

type AggregatedKeyShare

type AggregatedKeyShare struct {
	Height  uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Data    string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Creator string `protobuf:"bytes,3,opt,name=creator,proto3" json:"creator,omitempty"`
	// contains filtered or unexported fields
}

func (*AggregatedKeyShare) Descriptor deprecated

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

Deprecated: Use AggregatedKeyShare.ProtoReflect.Descriptor instead.

func (*AggregatedKeyShare) GetCreator

func (x *AggregatedKeyShare) GetCreator() string

func (*AggregatedKeyShare) GetData

func (x *AggregatedKeyShare) GetData() string

func (*AggregatedKeyShare) GetHeight

func (x *AggregatedKeyShare) GetHeight() uint64

func (*AggregatedKeyShare) ProtoMessage

func (*AggregatedKeyShare) ProtoMessage()

func (*AggregatedKeyShare) ProtoReflect

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

func (*AggregatedKeyShare) Reset

func (x *AggregatedKeyShare) Reset()

func (*AggregatedKeyShare) String

func (x *AggregatedKeyShare) String() string

type CurrentKeysPacketAck

type CurrentKeysPacketAck struct {
	ActiveKey *ActivePubKey `protobuf:"bytes,1,opt,name=activeKey,proto3" json:"activeKey,omitempty"`
	QueuedKey *QueuedPubKey `protobuf:"bytes,2,opt,name=queuedKey,proto3" json:"queuedKey,omitempty"`
	// contains filtered or unexported fields
}

CurrentKeysPacketAck defines a struct for the packet acknowledgment

func (*CurrentKeysPacketAck) Descriptor deprecated

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

Deprecated: Use CurrentKeysPacketAck.ProtoReflect.Descriptor instead.

func (*CurrentKeysPacketAck) GetActiveKey

func (x *CurrentKeysPacketAck) GetActiveKey() *ActivePubKey

func (*CurrentKeysPacketAck) GetQueuedKey

func (x *CurrentKeysPacketAck) GetQueuedKey() *QueuedPubKey

func (*CurrentKeysPacketAck) ProtoMessage

func (*CurrentKeysPacketAck) ProtoMessage()

func (*CurrentKeysPacketAck) ProtoReflect

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

func (*CurrentKeysPacketAck) Reset

func (x *CurrentKeysPacketAck) Reset()

func (*CurrentKeysPacketAck) String

func (x *CurrentKeysPacketAck) String() string

type CurrentKeysPacketData

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

CurrentKeysPacketData defines a struct for the packet payload

func (*CurrentKeysPacketData) Descriptor deprecated

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

Deprecated: Use CurrentKeysPacketData.ProtoReflect.Descriptor instead.

func (*CurrentKeysPacketData) ProtoMessage

func (*CurrentKeysPacketData) ProtoMessage()

func (*CurrentKeysPacketData) ProtoReflect

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

func (*CurrentKeysPacketData) Reset

func (x *CurrentKeysPacketData) Reset()

func (*CurrentKeysPacketData) String

func (x *CurrentKeysPacketData) String() string

type EncryptedTx

type EncryptedTx struct {
	TargetHeight           uint64        `protobuf:"varint,1,opt,name=targetHeight,proto3" json:"targetHeight,omitempty"`
	Index                  uint64        `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	Data                   string        `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	Creator                string        `protobuf:"bytes,4,opt,name=creator,proto3" json:"creator,omitempty"`
	ChargedGas             *v1beta1.Coin `protobuf:"bytes,5,opt,name=chargedGas,proto3" json:"chargedGas,omitempty"`
	ProcessedAtChainHeight uint64        `protobuf:"varint,6,opt,name=processedAtChainHeight,proto3" json:"processedAtChainHeight,omitempty"`
	Expired                bool          `protobuf:"varint,7,opt,name=expired,proto3" json:"expired,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptedTx) Descriptor deprecated

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

Deprecated: Use EncryptedTx.ProtoReflect.Descriptor instead.

func (*EncryptedTx) GetChargedGas

func (x *EncryptedTx) GetChargedGas() *v1beta1.Coin

func (*EncryptedTx) GetCreator

func (x *EncryptedTx) GetCreator() string

func (*EncryptedTx) GetData

func (x *EncryptedTx) GetData() string

func (*EncryptedTx) GetExpired

func (x *EncryptedTx) GetExpired() bool

func (*EncryptedTx) GetIndex

func (x *EncryptedTx) GetIndex() uint64

func (*EncryptedTx) GetProcessedAtChainHeight

func (x *EncryptedTx) GetProcessedAtChainHeight() uint64

func (*EncryptedTx) GetTargetHeight

func (x *EncryptedTx) GetTargetHeight() uint64

func (*EncryptedTx) ProtoMessage

func (*EncryptedTx) ProtoMessage()

func (*EncryptedTx) ProtoReflect

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

func (*EncryptedTx) Reset

func (x *EncryptedTx) Reset()

func (*EncryptedTx) String

func (x *EncryptedTx) String() string

type EncryptedTxArray

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

func (*EncryptedTxArray) Descriptor deprecated

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

Deprecated: Use EncryptedTxArray.ProtoReflect.Descriptor instead.

func (*EncryptedTxArray) GetEncryptedTx

func (x *EncryptedTxArray) GetEncryptedTx() []*EncryptedTx

func (*EncryptedTxArray) ProtoMessage

func (*EncryptedTxArray) ProtoMessage()

func (*EncryptedTxArray) ProtoReflect

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

func (*EncryptedTxArray) Reset

func (x *EncryptedTxArray) Reset()

func (*EncryptedTxArray) String

func (x *EncryptedTxArray) String() string

type GenesisState

type GenesisState struct {
	Params           *Params             `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	PortId           string              `protobuf:"bytes,2,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	EncryptedTxArray []*EncryptedTxArray `protobuf:"bytes,3,rep,name=encryptedTxArray,proto3" json:"encryptedTxArray,omitempty"`
	PepNonceList     []*PepNonce         `protobuf:"bytes,4,rep,name=pepNonceList,proto3" json:"pepNonceList,omitempty"`
	// this line is used by starport scaffolding # genesis/proto/state
	AggregatedKeyShareList []*AggregatedKeyShare `protobuf:"bytes,6,rep,name=aggregatedKeyShareList,proto3" json:"aggregatedKeyShareList,omitempty"`
	ActivePubKey           *ActivePubKey         `protobuf:"bytes,7,opt,name=activePubKey,proto3" json:"activePubKey,omitempty"`
	QueuedPubKey           *QueuedPubKey         `protobuf:"bytes,8,opt,name=queuedPubKey,proto3" json:"queuedPubKey,omitempty"`
	// contains filtered or unexported fields
}

GenesisState defines the pep module's genesis state.

func (*GenesisState) Descriptor deprecated

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

Deprecated: Use GenesisState.ProtoReflect.Descriptor instead.

func (*GenesisState) GetActivePubKey

func (x *GenesisState) GetActivePubKey() *ActivePubKey

func (*GenesisState) GetAggregatedKeyShareList

func (x *GenesisState) GetAggregatedKeyShareList() []*AggregatedKeyShare

func (*GenesisState) GetEncryptedTxArray

func (x *GenesisState) GetEncryptedTxArray() []*EncryptedTxArray

func (*GenesisState) GetParams

func (x *GenesisState) GetParams() *Params

func (*GenesisState) GetPepNonceList

func (x *GenesisState) GetPepNonceList() []*PepNonce

func (*GenesisState) GetPortId

func (x *GenesisState) GetPortId() string

func (*GenesisState) GetQueuedPubKey

func (x *GenesisState) GetQueuedPubKey() *QueuedPubKey

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) ProtoReflect

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

func (*GenesisState) Reset

func (x *GenesisState) Reset()

func (*GenesisState) String

func (x *GenesisState) String() string

type MsgClient

type MsgClient interface {
	SubmitEncryptedTx(ctx context.Context, in *MsgSubmitEncryptedTx, opts ...grpc.CallOption) (*MsgSubmitEncryptedTxResponse, error)
	// this line is used by starport scaffolding # proto/tx/rpc
	CreateAggregatedKeyShare(ctx context.Context, in *MsgCreateAggregatedKeyShare, opts ...grpc.CallOption) (*MsgCreateAggregatedKeyShareResponse, error)
	RequestGeneralKeyshare(ctx context.Context, in *MsgRequestGeneralKeyshare, opts ...grpc.CallOption) (*MsgRequestGeneralKeyshareResponse, error)
	GetGeneralKeyshare(ctx context.Context, in *MsgGetGeneralKeyshare, opts ...grpc.CallOption) (*MsgGetGeneralKeyshareResponse, error)
}

MsgClient is the client API for Msg 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.

func NewMsgClient

func NewMsgClient(cc grpc.ClientConnInterface) MsgClient

type MsgCreateAggregatedKeyShare

type MsgCreateAggregatedKeyShare struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Height  uint64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
	Data    string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

this line is used by starport scaffolding # proto/tx/message

func (*MsgCreateAggregatedKeyShare) Descriptor deprecated

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

Deprecated: Use MsgCreateAggregatedKeyShare.ProtoReflect.Descriptor instead.

func (*MsgCreateAggregatedKeyShare) GetCreator

func (x *MsgCreateAggregatedKeyShare) GetCreator() string

func (*MsgCreateAggregatedKeyShare) GetData

func (x *MsgCreateAggregatedKeyShare) GetData() string

func (*MsgCreateAggregatedKeyShare) GetHeight

func (x *MsgCreateAggregatedKeyShare) GetHeight() uint64

func (*MsgCreateAggregatedKeyShare) ProtoMessage

func (*MsgCreateAggregatedKeyShare) ProtoMessage()

func (*MsgCreateAggregatedKeyShare) ProtoReflect

func (*MsgCreateAggregatedKeyShare) Reset

func (x *MsgCreateAggregatedKeyShare) Reset()

func (*MsgCreateAggregatedKeyShare) String

func (x *MsgCreateAggregatedKeyShare) String() string

type MsgCreateAggregatedKeyShareResponse

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

func (*MsgCreateAggregatedKeyShareResponse) Descriptor deprecated

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

Deprecated: Use MsgCreateAggregatedKeyShareResponse.ProtoReflect.Descriptor instead.

func (*MsgCreateAggregatedKeyShareResponse) ProtoMessage

func (*MsgCreateAggregatedKeyShareResponse) ProtoMessage()

func (*MsgCreateAggregatedKeyShareResponse) ProtoReflect

func (*MsgCreateAggregatedKeyShareResponse) Reset

func (*MsgCreateAggregatedKeyShareResponse) String

type MsgGetGeneralKeyshare

type MsgGetGeneralKeyshare struct {
	Creator  string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Identity string `protobuf:"bytes,2,opt,name=identity,proto3" json:"identity,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgGetGeneralKeyshare) Descriptor deprecated

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

Deprecated: Use MsgGetGeneralKeyshare.ProtoReflect.Descriptor instead.

func (*MsgGetGeneralKeyshare) GetCreator

func (x *MsgGetGeneralKeyshare) GetCreator() string

func (*MsgGetGeneralKeyshare) GetIdentity

func (x *MsgGetGeneralKeyshare) GetIdentity() string

func (*MsgGetGeneralKeyshare) ProtoMessage

func (*MsgGetGeneralKeyshare) ProtoMessage()

func (*MsgGetGeneralKeyshare) ProtoReflect

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

func (*MsgGetGeneralKeyshare) Reset

func (x *MsgGetGeneralKeyshare) Reset()

func (*MsgGetGeneralKeyshare) String

func (x *MsgGetGeneralKeyshare) String() string

type MsgGetGeneralKeyshareResponse

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

func (*MsgGetGeneralKeyshareResponse) Descriptor deprecated

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

Deprecated: Use MsgGetGeneralKeyshareResponse.ProtoReflect.Descriptor instead.

func (*MsgGetGeneralKeyshareResponse) ProtoMessage

func (*MsgGetGeneralKeyshareResponse) ProtoMessage()

func (*MsgGetGeneralKeyshareResponse) ProtoReflect

func (*MsgGetGeneralKeyshareResponse) Reset

func (x *MsgGetGeneralKeyshareResponse) Reset()

func (*MsgGetGeneralKeyshareResponse) String

type MsgRequestGeneralKeyshare

type MsgRequestGeneralKeyshare struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	RequestId string `protobuf:"bytes,2,opt,name=requestId,proto3" json:"requestId,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgRequestGeneralKeyshare) Descriptor deprecated

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

Deprecated: Use MsgRequestGeneralKeyshare.ProtoReflect.Descriptor instead.

func (*MsgRequestGeneralKeyshare) GetCreator

func (x *MsgRequestGeneralKeyshare) GetCreator() string

func (*MsgRequestGeneralKeyshare) GetRequestId

func (x *MsgRequestGeneralKeyshare) GetRequestId() string

func (*MsgRequestGeneralKeyshare) ProtoMessage

func (*MsgRequestGeneralKeyshare) ProtoMessage()

func (*MsgRequestGeneralKeyshare) ProtoReflect

func (*MsgRequestGeneralKeyshare) Reset

func (x *MsgRequestGeneralKeyshare) Reset()

func (*MsgRequestGeneralKeyshare) String

func (x *MsgRequestGeneralKeyshare) String() string

type MsgRequestGeneralKeyshareResponse

type MsgRequestGeneralKeyshareResponse struct {
	Identity string `protobuf:"bytes,1,opt,name=identity,proto3" json:"identity,omitempty"`
	Pubkey   string `protobuf:"bytes,2,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgRequestGeneralKeyshareResponse) Descriptor deprecated

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

Deprecated: Use MsgRequestGeneralKeyshareResponse.ProtoReflect.Descriptor instead.

func (*MsgRequestGeneralKeyshareResponse) GetIdentity

func (x *MsgRequestGeneralKeyshareResponse) GetIdentity() string

func (*MsgRequestGeneralKeyshareResponse) GetPubkey

func (*MsgRequestGeneralKeyshareResponse) ProtoMessage

func (*MsgRequestGeneralKeyshareResponse) ProtoMessage()

func (*MsgRequestGeneralKeyshareResponse) ProtoReflect

func (*MsgRequestGeneralKeyshareResponse) Reset

func (*MsgRequestGeneralKeyshareResponse) String

type MsgServer

type MsgServer interface {
	SubmitEncryptedTx(context.Context, *MsgSubmitEncryptedTx) (*MsgSubmitEncryptedTxResponse, error)
	// this line is used by starport scaffolding # proto/tx/rpc
	CreateAggregatedKeyShare(context.Context, *MsgCreateAggregatedKeyShare) (*MsgCreateAggregatedKeyShareResponse, error)
	RequestGeneralKeyshare(context.Context, *MsgRequestGeneralKeyshare) (*MsgRequestGeneralKeyshareResponse, error)
	GetGeneralKeyshare(context.Context, *MsgGetGeneralKeyshare) (*MsgGetGeneralKeyshareResponse, error)
	// contains filtered or unexported methods
}

MsgServer is the server API for Msg service. All implementations must embed UnimplementedMsgServer for forward compatibility

type MsgSubmitEncryptedTx

type MsgSubmitEncryptedTx struct {
	Creator           string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Data              string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	TargetBlockHeight uint64 `protobuf:"varint,3,opt,name=targetBlockHeight,proto3" json:"targetBlockHeight,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSubmitEncryptedTx) Descriptor deprecated

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

Deprecated: Use MsgSubmitEncryptedTx.ProtoReflect.Descriptor instead.

func (*MsgSubmitEncryptedTx) GetCreator

func (x *MsgSubmitEncryptedTx) GetCreator() string

func (*MsgSubmitEncryptedTx) GetData

func (x *MsgSubmitEncryptedTx) GetData() string

func (*MsgSubmitEncryptedTx) GetTargetBlockHeight

func (x *MsgSubmitEncryptedTx) GetTargetBlockHeight() uint64

func (*MsgSubmitEncryptedTx) ProtoMessage

func (*MsgSubmitEncryptedTx) ProtoMessage()

func (*MsgSubmitEncryptedTx) ProtoReflect

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

func (*MsgSubmitEncryptedTx) Reset

func (x *MsgSubmitEncryptedTx) Reset()

func (*MsgSubmitEncryptedTx) String

func (x *MsgSubmitEncryptedTx) String() string

type MsgSubmitEncryptedTxResponse

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

func (*MsgSubmitEncryptedTxResponse) Descriptor deprecated

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

Deprecated: Use MsgSubmitEncryptedTxResponse.ProtoReflect.Descriptor instead.

func (*MsgSubmitEncryptedTxResponse) ProtoMessage

func (*MsgSubmitEncryptedTxResponse) ProtoMessage()

func (*MsgSubmitEncryptedTxResponse) ProtoReflect

func (*MsgSubmitEncryptedTxResponse) Reset

func (x *MsgSubmitEncryptedTxResponse) Reset()

func (*MsgSubmitEncryptedTxResponse) String

type NoData

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

func (*NoData) Descriptor deprecated

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

Deprecated: Use NoData.ProtoReflect.Descriptor instead.

func (*NoData) ProtoMessage

func (*NoData) ProtoMessage()

func (*NoData) ProtoReflect

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

func (*NoData) Reset

func (x *NoData) Reset()

func (*NoData) String

func (x *NoData) String() string

type Params

type Params struct {
	TrustedCounterParties []*TrustedCounterParty `` /* 126-byte string literal not displayed */
	TrustedAddresses      []string               `protobuf:"bytes,2,rep,name=trusted_addresses,json=trustedAddresses,proto3" json:"trusted_addresses,omitempty"`
	PepChannelId          string                 `protobuf:"bytes,3,opt,name=pep_channel_id,json=pepChannelId,proto3" json:"pep_channel_id,omitempty"`
	KeyshareChannelId     string                 `protobuf:"bytes,4,opt,name=keyshare_channel_id,json=keyshareChannelId,proto3" json:"keyshare_channel_id,omitempty"`
	MinGasPrice           *v1beta1.Coin          `protobuf:"bytes,5,opt,name=min_gas_price,json=minGasPrice,proto3" json:"min_gas_price,omitempty"`
	IsSourceChain         bool                   `protobuf:"varint,6,opt,name=is_source_chain,json=isSourceChain,proto3" json:"is_source_chain,omitempty"`
	// contains filtered or unexported fields
}

Params defines the parameters for the module.

func (*Params) Descriptor deprecated

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

Deprecated: Use Params.ProtoReflect.Descriptor instead.

func (*Params) GetIsSourceChain

func (x *Params) GetIsSourceChain() bool

func (*Params) GetKeyshareChannelId

func (x *Params) GetKeyshareChannelId() string

func (*Params) GetMinGasPrice

func (x *Params) GetMinGasPrice() *v1beta1.Coin

func (*Params) GetPepChannelId

func (x *Params) GetPepChannelId() string

func (*Params) GetTrustedAddresses

func (x *Params) GetTrustedAddresses() []string

func (*Params) GetTrustedCounterParties

func (x *Params) GetTrustedCounterParties() []*TrustedCounterParty

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) ProtoReflect

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

func (*Params) Reset

func (x *Params) Reset()

func (*Params) String

func (x *Params) String() string

type PepNonce

type PepNonce struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Nonce   uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*PepNonce) Descriptor deprecated

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

Deprecated: Use PepNonce.ProtoReflect.Descriptor instead.

func (*PepNonce) GetAddress

func (x *PepNonce) GetAddress() string

func (*PepNonce) GetNonce

func (x *PepNonce) GetNonce() uint64

func (*PepNonce) ProtoMessage

func (*PepNonce) ProtoMessage()

func (*PepNonce) ProtoReflect

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

func (*PepNonce) Reset

func (x *PepNonce) Reset()

func (*PepNonce) String

func (x *PepNonce) String() string

type PepPacketData

type PepPacketData struct {

	// Types that are assignable to Packet:
	//
	//	*PepPacketData_NoData
	//	*PepPacketData_CurrentKeysPacket
	Packet isPepPacketData_Packet `protobuf_oneof:"packet"`
	// contains filtered or unexported fields
}

func (*PepPacketData) Descriptor deprecated

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

Deprecated: Use PepPacketData.ProtoReflect.Descriptor instead.

func (*PepPacketData) GetCurrentKeysPacket

func (x *PepPacketData) GetCurrentKeysPacket() *CurrentKeysPacketData

func (*PepPacketData) GetNoData

func (x *PepPacketData) GetNoData() *NoData

func (*PepPacketData) GetPacket

func (x *PepPacketData) GetPacket() isPepPacketData_Packet

func (*PepPacketData) ProtoMessage

func (*PepPacketData) ProtoMessage()

func (*PepPacketData) ProtoReflect

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

func (*PepPacketData) Reset

func (x *PepPacketData) Reset()

func (*PepPacketData) String

func (x *PepPacketData) String() string

type PepPacketData_CurrentKeysPacket

type PepPacketData_CurrentKeysPacket struct {
	CurrentKeysPacket *CurrentKeysPacketData `protobuf:"bytes,2,opt,name=currentKeysPacket,proto3,oneof"`
}

type PepPacketData_NoData

type PepPacketData_NoData struct {
	NoData *NoData `protobuf:"bytes,1,opt,name=noData,proto3,oneof"`
}

type QueryAllEncryptedTxFromHeightRequest

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

func (*QueryAllEncryptedTxFromHeightRequest) Descriptor deprecated

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

Deprecated: Use QueryAllEncryptedTxFromHeightRequest.ProtoReflect.Descriptor instead.

func (*QueryAllEncryptedTxFromHeightRequest) GetTargetHeight

func (x *QueryAllEncryptedTxFromHeightRequest) GetTargetHeight() uint64

func (*QueryAllEncryptedTxFromHeightRequest) ProtoMessage

func (*QueryAllEncryptedTxFromHeightRequest) ProtoMessage()

func (*QueryAllEncryptedTxFromHeightRequest) ProtoReflect

func (*QueryAllEncryptedTxFromHeightRequest) Reset

func (*QueryAllEncryptedTxFromHeightRequest) String

type QueryAllEncryptedTxFromHeightResponse

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

func (*QueryAllEncryptedTxFromHeightResponse) Descriptor deprecated

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

Deprecated: Use QueryAllEncryptedTxFromHeightResponse.ProtoReflect.Descriptor instead.

func (*QueryAllEncryptedTxFromHeightResponse) GetEncryptedTxArray

func (x *QueryAllEncryptedTxFromHeightResponse) GetEncryptedTxArray() *EncryptedTxArray

func (*QueryAllEncryptedTxFromHeightResponse) ProtoMessage

func (*QueryAllEncryptedTxFromHeightResponse) ProtoMessage()

func (*QueryAllEncryptedTxFromHeightResponse) ProtoReflect

func (*QueryAllEncryptedTxFromHeightResponse) Reset

func (*QueryAllEncryptedTxFromHeightResponse) String

type QueryAllEncryptedTxRequest

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

func (*QueryAllEncryptedTxRequest) Descriptor deprecated

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

Deprecated: Use QueryAllEncryptedTxRequest.ProtoReflect.Descriptor instead.

func (*QueryAllEncryptedTxRequest) GetPagination

func (x *QueryAllEncryptedTxRequest) GetPagination() *v1beta1.PageRequest

func (*QueryAllEncryptedTxRequest) ProtoMessage

func (*QueryAllEncryptedTxRequest) ProtoMessage()

func (*QueryAllEncryptedTxRequest) ProtoReflect

func (*QueryAllEncryptedTxRequest) Reset

func (x *QueryAllEncryptedTxRequest) Reset()

func (*QueryAllEncryptedTxRequest) String

func (x *QueryAllEncryptedTxRequest) String() string

type QueryAllEncryptedTxResponse

type QueryAllEncryptedTxResponse struct {
	EncryptedTxArray []*EncryptedTxArray   `protobuf:"bytes,1,rep,name=encryptedTxArray,proto3" json:"encryptedTxArray,omitempty"`
	Pagination       *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAllEncryptedTxResponse) Descriptor deprecated

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

Deprecated: Use QueryAllEncryptedTxResponse.ProtoReflect.Descriptor instead.

func (*QueryAllEncryptedTxResponse) GetEncryptedTxArray

func (x *QueryAllEncryptedTxResponse) GetEncryptedTxArray() []*EncryptedTxArray

func (*QueryAllEncryptedTxResponse) GetPagination

func (x *QueryAllEncryptedTxResponse) GetPagination() *v1beta1.PageResponse

func (*QueryAllEncryptedTxResponse) ProtoMessage

func (*QueryAllEncryptedTxResponse) ProtoMessage()

func (*QueryAllEncryptedTxResponse) ProtoReflect

func (*QueryAllEncryptedTxResponse) Reset

func (x *QueryAllEncryptedTxResponse) Reset()

func (*QueryAllEncryptedTxResponse) String

func (x *QueryAllEncryptedTxResponse) String() string

type QueryAllPepNonceRequest

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

func (*QueryAllPepNonceRequest) Descriptor deprecated

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

Deprecated: Use QueryAllPepNonceRequest.ProtoReflect.Descriptor instead.

func (*QueryAllPepNonceRequest) GetPagination

func (x *QueryAllPepNonceRequest) GetPagination() *v1beta1.PageRequest

func (*QueryAllPepNonceRequest) ProtoMessage

func (*QueryAllPepNonceRequest) ProtoMessage()

func (*QueryAllPepNonceRequest) ProtoReflect

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

func (*QueryAllPepNonceRequest) Reset

func (x *QueryAllPepNonceRequest) Reset()

func (*QueryAllPepNonceRequest) String

func (x *QueryAllPepNonceRequest) String() string

type QueryAllPepNonceResponse

type QueryAllPepNonceResponse struct {
	PepNonce   []*PepNonce           `protobuf:"bytes,1,rep,name=pepNonce,proto3" json:"pepNonce,omitempty"`
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAllPepNonceResponse) Descriptor deprecated

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

Deprecated: Use QueryAllPepNonceResponse.ProtoReflect.Descriptor instead.

func (*QueryAllPepNonceResponse) GetPagination

func (x *QueryAllPepNonceResponse) GetPagination() *v1beta1.PageResponse

func (*QueryAllPepNonceResponse) GetPepNonce

func (x *QueryAllPepNonceResponse) GetPepNonce() []*PepNonce

func (*QueryAllPepNonceResponse) ProtoMessage

func (*QueryAllPepNonceResponse) ProtoMessage()

func (*QueryAllPepNonceResponse) ProtoReflect

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

func (*QueryAllPepNonceResponse) Reset

func (x *QueryAllPepNonceResponse) Reset()

func (*QueryAllPepNonceResponse) String

func (x *QueryAllPepNonceResponse) String() string

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a EncryptedTx by index.
	EncryptedTx(ctx context.Context, in *QueryGetEncryptedTxRequest, opts ...grpc.CallOption) (*QueryGetEncryptedTxResponse, error)
	// Queries a list of EncryptedTx items.
	EncryptedTxAll(ctx context.Context, in *QueryAllEncryptedTxRequest, opts ...grpc.CallOption) (*QueryAllEncryptedTxResponse, error)
	// Queries a list of EncryptedTx items.
	EncryptedTxAllFromHeight(ctx context.Context, in *QueryAllEncryptedTxFromHeightRequest, opts ...grpc.CallOption) (*QueryAllEncryptedTxFromHeightResponse, error)
	// Queries a list of LatestHeight items.
	LatestHeight(ctx context.Context, in *QueryLatestHeightRequest, opts ...grpc.CallOption) (*QueryLatestHeightResponse, error)
	// Queries a PepNonce by index.
	PepNonce(ctx context.Context, in *QueryGetPepNonceRequest, opts ...grpc.CallOption) (*QueryGetPepNonceResponse, error)
	// Queries a list of PepNonce items.
	PepNonceAll(ctx context.Context, in *QueryAllPepNonceRequest, opts ...grpc.CallOption) (*QueryAllPepNonceResponse, error)
	// Queries the public keys
	PubKey(ctx context.Context, in *QueryPubKeyRequest, opts ...grpc.CallOption) (*QueryPubKeyResponse, error)
}

QueryClient is the client API for Query 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.

func NewQueryClient

func NewQueryClient(cc grpc.ClientConnInterface) QueryClient

type QueryGetEncryptedTxRequest

type QueryGetEncryptedTxRequest struct {
	TargetHeight uint64 `protobuf:"varint,1,opt,name=targetHeight,proto3" json:"targetHeight,omitempty"`
	Index        uint64 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryGetEncryptedTxRequest) Descriptor deprecated

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

Deprecated: Use QueryGetEncryptedTxRequest.ProtoReflect.Descriptor instead.

func (*QueryGetEncryptedTxRequest) GetIndex

func (x *QueryGetEncryptedTxRequest) GetIndex() uint64

func (*QueryGetEncryptedTxRequest) GetTargetHeight

func (x *QueryGetEncryptedTxRequest) GetTargetHeight() uint64

func (*QueryGetEncryptedTxRequest) ProtoMessage

func (*QueryGetEncryptedTxRequest) ProtoMessage()

func (*QueryGetEncryptedTxRequest) ProtoReflect

func (*QueryGetEncryptedTxRequest) Reset

func (x *QueryGetEncryptedTxRequest) Reset()

func (*QueryGetEncryptedTxRequest) String

func (x *QueryGetEncryptedTxRequest) String() string

type QueryGetEncryptedTxResponse

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

func (*QueryGetEncryptedTxResponse) Descriptor deprecated

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

Deprecated: Use QueryGetEncryptedTxResponse.ProtoReflect.Descriptor instead.

func (*QueryGetEncryptedTxResponse) GetEncryptedTx

func (x *QueryGetEncryptedTxResponse) GetEncryptedTx() *EncryptedTx

func (*QueryGetEncryptedTxResponse) ProtoMessage

func (*QueryGetEncryptedTxResponse) ProtoMessage()

func (*QueryGetEncryptedTxResponse) ProtoReflect

func (*QueryGetEncryptedTxResponse) Reset

func (x *QueryGetEncryptedTxResponse) Reset()

func (*QueryGetEncryptedTxResponse) String

func (x *QueryGetEncryptedTxResponse) String() string

type QueryGetPepNonceRequest

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

func (*QueryGetPepNonceRequest) Descriptor deprecated

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

Deprecated: Use QueryGetPepNonceRequest.ProtoReflect.Descriptor instead.

func (*QueryGetPepNonceRequest) GetAddress

func (x *QueryGetPepNonceRequest) GetAddress() string

func (*QueryGetPepNonceRequest) ProtoMessage

func (*QueryGetPepNonceRequest) ProtoMessage()

func (*QueryGetPepNonceRequest) ProtoReflect

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

func (*QueryGetPepNonceRequest) Reset

func (x *QueryGetPepNonceRequest) Reset()

func (*QueryGetPepNonceRequest) String

func (x *QueryGetPepNonceRequest) String() string

type QueryGetPepNonceResponse

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

func (*QueryGetPepNonceResponse) Descriptor deprecated

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

Deprecated: Use QueryGetPepNonceResponse.ProtoReflect.Descriptor instead.

func (*QueryGetPepNonceResponse) GetPepNonce

func (x *QueryGetPepNonceResponse) GetPepNonce() *PepNonce

func (*QueryGetPepNonceResponse) ProtoMessage

func (*QueryGetPepNonceResponse) ProtoMessage()

func (*QueryGetPepNonceResponse) ProtoReflect

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

func (*QueryGetPepNonceResponse) Reset

func (x *QueryGetPepNonceResponse) Reset()

func (*QueryGetPepNonceResponse) String

func (x *QueryGetPepNonceResponse) String() string

type QueryLatestHeightRequest

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

func (*QueryLatestHeightRequest) Descriptor deprecated

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

Deprecated: Use QueryLatestHeightRequest.ProtoReflect.Descriptor instead.

func (*QueryLatestHeightRequest) ProtoMessage

func (*QueryLatestHeightRequest) ProtoMessage()

func (*QueryLatestHeightRequest) ProtoReflect

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

func (*QueryLatestHeightRequest) Reset

func (x *QueryLatestHeightRequest) Reset()

func (*QueryLatestHeightRequest) String

func (x *QueryLatestHeightRequest) String() string

type QueryLatestHeightResponse

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

func (*QueryLatestHeightResponse) Descriptor deprecated

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

Deprecated: Use QueryLatestHeightResponse.ProtoReflect.Descriptor instead.

func (*QueryLatestHeightResponse) GetHeight

func (x *QueryLatestHeightResponse) GetHeight() uint64

func (*QueryLatestHeightResponse) ProtoMessage

func (*QueryLatestHeightResponse) ProtoMessage()

func (*QueryLatestHeightResponse) ProtoReflect

func (*QueryLatestHeightResponse) Reset

func (x *QueryLatestHeightResponse) Reset()

func (*QueryLatestHeightResponse) String

func (x *QueryLatestHeightResponse) String() string

type QueryParamsRequest

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

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor deprecated

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

Deprecated: Use QueryParamsRequest.ProtoReflect.Descriptor instead.

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) ProtoReflect

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

func (*QueryParamsRequest) Reset

func (x *QueryParamsRequest) Reset()

func (*QueryParamsRequest) String

func (x *QueryParamsRequest) String() string

type QueryParamsResponse

type QueryParamsResponse struct {

	// params holds all the parameters of this module.
	Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor deprecated

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

Deprecated: Use QueryParamsResponse.ProtoReflect.Descriptor instead.

func (*QueryParamsResponse) GetParams

func (x *QueryParamsResponse) GetParams() *Params

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) ProtoReflect

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

func (*QueryParamsResponse) Reset

func (x *QueryParamsResponse) Reset()

func (*QueryParamsResponse) String

func (x *QueryParamsResponse) String() string

type QueryPubKeyRequest

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

func (*QueryPubKeyRequest) Descriptor deprecated

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

Deprecated: Use QueryPubKeyRequest.ProtoReflect.Descriptor instead.

func (*QueryPubKeyRequest) ProtoMessage

func (*QueryPubKeyRequest) ProtoMessage()

func (*QueryPubKeyRequest) ProtoReflect

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

func (*QueryPubKeyRequest) Reset

func (x *QueryPubKeyRequest) Reset()

func (*QueryPubKeyRequest) String

func (x *QueryPubKeyRequest) String() string

type QueryPubKeyResponse

type QueryPubKeyResponse struct {
	ActivePubKey *ActivePubKey `protobuf:"bytes,1,opt,name=activePubKey,proto3" json:"activePubKey,omitempty"`
	QueuedPubKey *QueuedPubKey `protobuf:"bytes,2,opt,name=queuedPubKey,proto3" json:"queuedPubKey,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryPubKeyResponse) Descriptor deprecated

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

Deprecated: Use QueryPubKeyResponse.ProtoReflect.Descriptor instead.

func (*QueryPubKeyResponse) GetActivePubKey

func (x *QueryPubKeyResponse) GetActivePubKey() *ActivePubKey

func (*QueryPubKeyResponse) GetQueuedPubKey

func (x *QueryPubKeyResponse) GetQueuedPubKey() *QueuedPubKey

func (*QueryPubKeyResponse) ProtoMessage

func (*QueryPubKeyResponse) ProtoMessage()

func (*QueryPubKeyResponse) ProtoReflect

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

func (*QueryPubKeyResponse) Reset

func (x *QueryPubKeyResponse) Reset()

func (*QueryPubKeyResponse) String

func (x *QueryPubKeyResponse) String() string

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a EncryptedTx by index.
	EncryptedTx(context.Context, *QueryGetEncryptedTxRequest) (*QueryGetEncryptedTxResponse, error)
	// Queries a list of EncryptedTx items.
	EncryptedTxAll(context.Context, *QueryAllEncryptedTxRequest) (*QueryAllEncryptedTxResponse, error)
	// Queries a list of EncryptedTx items.
	EncryptedTxAllFromHeight(context.Context, *QueryAllEncryptedTxFromHeightRequest) (*QueryAllEncryptedTxFromHeightResponse, error)
	// Queries a list of LatestHeight items.
	LatestHeight(context.Context, *QueryLatestHeightRequest) (*QueryLatestHeightResponse, error)
	// Queries a PepNonce by index.
	PepNonce(context.Context, *QueryGetPepNonceRequest) (*QueryGetPepNonceResponse, error)
	// Queries a list of PepNonce items.
	PepNonceAll(context.Context, *QueryAllPepNonceRequest) (*QueryAllPepNonceResponse, error)
	// Queries the public keys
	PubKey(context.Context, *QueryPubKeyRequest) (*QueryPubKeyResponse, error)
	// contains filtered or unexported methods
}

QueryServer is the server API for Query service. All implementations must embed UnimplementedQueryServer for forward compatibility

type QueuedPubKey

type QueuedPubKey struct {
	PublicKey string `protobuf:"bytes,1,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	Creator   string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
	Expiry    uint64 `protobuf:"varint,3,opt,name=expiry,proto3" json:"expiry,omitempty"`
	// contains filtered or unexported fields
}

func (*QueuedPubKey) Descriptor deprecated

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

Deprecated: Use QueuedPubKey.ProtoReflect.Descriptor instead.

func (*QueuedPubKey) GetCreator

func (x *QueuedPubKey) GetCreator() string

func (*QueuedPubKey) GetExpiry

func (x *QueuedPubKey) GetExpiry() uint64

func (*QueuedPubKey) GetPublicKey

func (x *QueuedPubKey) GetPublicKey() string

func (*QueuedPubKey) ProtoMessage

func (*QueuedPubKey) ProtoMessage()

func (*QueuedPubKey) ProtoReflect

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

func (*QueuedPubKey) Reset

func (x *QueuedPubKey) Reset()

func (*QueuedPubKey) String

func (x *QueuedPubKey) String() string

type TrustedCounterParty

type TrustedCounterParty struct {
	ClientId     string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	ChannelId    string `protobuf:"bytes,3,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TrustedCounterParty) Descriptor deprecated

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

Deprecated: Use TrustedCounterParty.ProtoReflect.Descriptor instead.

func (*TrustedCounterParty) GetChannelId

func (x *TrustedCounterParty) GetChannelId() string

func (*TrustedCounterParty) GetClientId

func (x *TrustedCounterParty) GetClientId() string

func (*TrustedCounterParty) GetConnectionId

func (x *TrustedCounterParty) GetConnectionId() string

func (*TrustedCounterParty) ProtoMessage

func (*TrustedCounterParty) ProtoMessage()

func (*TrustedCounterParty) ProtoReflect

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

func (*TrustedCounterParty) Reset

func (x *TrustedCounterParty) Reset()

func (*TrustedCounterParty) String

func (x *TrustedCounterParty) String() string

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer must be embedded to have forward compatible implementations.

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer must be embedded to have forward compatible implementations.

func (UnimplementedQueryServer) Params

func (UnimplementedQueryServer) PubKey

type UnsafeMsgServer

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

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

type UnsafeQueryServer

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

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

Jump to

Keyboard shortcuts

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