types

package
v0.0.0-...-a1d3391 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// ModuleName defines the module name
	ModuleName = "filetree"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey is the message route for slashing
	RouterKey = ModuleName

	// QuerierRoute defines the module's query routing key
	QuerierRoute = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_filetree"
)
View Source
const (
	TrackerKey = "Tracker-value-"
)
View Source
const TypeMsgPostKey = "post_key"

Variables

View Source
var (
	Amino     = codec.NewLegacyAmino()
	ModuleCdc = codec.NewAminoCodec(Amino)
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)

Functions

func KeyPrefix

func KeyPrefix(p string) []byte

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

Types

type MsgAddEditors

type MsgAddEditors struct {
	Creator    string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	EditorIds  string `protobuf:"bytes,2,opt,name=editor_ids,json=editorIds,proto3" json:"editor_ids,omitempty"`
	EditorKeys string `protobuf:"bytes,3,opt,name=editor_keys,json=editorKeys,proto3" json:"editor_keys,omitempty"`
	Address    string `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner  string `protobuf:"bytes,5,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgAddEditors) Descriptor

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

func (*MsgAddEditors) GetAddress

func (m *MsgAddEditors) GetAddress() string

func (*MsgAddEditors) GetCreator

func (m *MsgAddEditors) GetCreator() string

func (*MsgAddEditors) GetEditorIds

func (m *MsgAddEditors) GetEditorIds() string

func (*MsgAddEditors) GetEditorKeys

func (m *MsgAddEditors) GetEditorKeys() string

func (*MsgAddEditors) GetFileOwner

func (m *MsgAddEditors) GetFileOwner() string

func (*MsgAddEditors) Marshal

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

func (*MsgAddEditors) MarshalTo

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

func (*MsgAddEditors) MarshalToSizedBuffer

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

func (*MsgAddEditors) ProtoMessage

func (*MsgAddEditors) ProtoMessage()

func (*MsgAddEditors) Reset

func (m *MsgAddEditors) Reset()

func (*MsgAddEditors) Size

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

func (*MsgAddEditors) String

func (m *MsgAddEditors) String() string

func (*MsgAddEditors) Unmarshal

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

func (*MsgAddEditors) XXX_DiscardUnknown

func (m *MsgAddEditors) XXX_DiscardUnknown()

func (*MsgAddEditors) XXX_Marshal

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

func (*MsgAddEditors) XXX_Merge

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

func (*MsgAddEditors) XXX_Size

func (m *MsgAddEditors) XXX_Size() int

func (*MsgAddEditors) XXX_Unmarshal

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

type MsgAddEditorsResponse

type MsgAddEditorsResponse struct {
}

func (*MsgAddEditorsResponse) Descriptor

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

func (*MsgAddEditorsResponse) Marshal

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

func (*MsgAddEditorsResponse) MarshalTo

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

func (*MsgAddEditorsResponse) MarshalToSizedBuffer

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

func (*MsgAddEditorsResponse) ProtoMessage

func (*MsgAddEditorsResponse) ProtoMessage()

func (*MsgAddEditorsResponse) Reset

func (m *MsgAddEditorsResponse) Reset()

func (*MsgAddEditorsResponse) Size

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

func (*MsgAddEditorsResponse) String

func (m *MsgAddEditorsResponse) String() string

func (*MsgAddEditorsResponse) Unmarshal

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

func (*MsgAddEditorsResponse) XXX_DiscardUnknown

func (m *MsgAddEditorsResponse) XXX_DiscardUnknown()

func (*MsgAddEditorsResponse) XXX_Marshal

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

func (*MsgAddEditorsResponse) XXX_Merge

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

func (*MsgAddEditorsResponse) XXX_Size

func (m *MsgAddEditorsResponse) XXX_Size() int

func (*MsgAddEditorsResponse) XXX_Unmarshal

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

type MsgAddViewers

type MsgAddViewers struct {
	Creator    string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ViewerIds  string `protobuf:"bytes,2,opt,name=viewer_ids,json=viewerIds,proto3" json:"viewer_ids,omitempty"`
	ViewerKeys string `protobuf:"bytes,3,opt,name=viewer_keys,json=viewerKeys,proto3" json:"viewer_keys,omitempty"`
	Address    string `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner  string `protobuf:"bytes,5,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgAddViewers) Descriptor

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

func (*MsgAddViewers) GetAddress

func (m *MsgAddViewers) GetAddress() string

func (*MsgAddViewers) GetCreator

func (m *MsgAddViewers) GetCreator() string

func (*MsgAddViewers) GetFileOwner

func (m *MsgAddViewers) GetFileOwner() string

func (*MsgAddViewers) GetViewerIds

func (m *MsgAddViewers) GetViewerIds() string

func (*MsgAddViewers) GetViewerKeys

func (m *MsgAddViewers) GetViewerKeys() string

func (*MsgAddViewers) Marshal

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

func (*MsgAddViewers) MarshalTo

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

func (*MsgAddViewers) MarshalToSizedBuffer

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

func (*MsgAddViewers) ProtoMessage

func (*MsgAddViewers) ProtoMessage()

func (*MsgAddViewers) Reset

func (m *MsgAddViewers) Reset()

func (*MsgAddViewers) Size

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

func (*MsgAddViewers) String

func (m *MsgAddViewers) String() string

func (*MsgAddViewers) Unmarshal

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

func (*MsgAddViewers) XXX_DiscardUnknown

func (m *MsgAddViewers) XXX_DiscardUnknown()

func (*MsgAddViewers) XXX_Marshal

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

func (*MsgAddViewers) XXX_Merge

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

func (*MsgAddViewers) XXX_Size

func (m *MsgAddViewers) XXX_Size() int

func (*MsgAddViewers) XXX_Unmarshal

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

type MsgAddViewersResponse

type MsgAddViewersResponse struct {
}

func (*MsgAddViewersResponse) Descriptor

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

func (*MsgAddViewersResponse) Marshal

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

func (*MsgAddViewersResponse) MarshalTo

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

func (*MsgAddViewersResponse) MarshalToSizedBuffer

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

func (*MsgAddViewersResponse) ProtoMessage

func (*MsgAddViewersResponse) ProtoMessage()

func (*MsgAddViewersResponse) Reset

func (m *MsgAddViewersResponse) Reset()

func (*MsgAddViewersResponse) Size

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

func (*MsgAddViewersResponse) String

func (m *MsgAddViewersResponse) String() string

func (*MsgAddViewersResponse) Unmarshal

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

func (*MsgAddViewersResponse) XXX_DiscardUnknown

func (m *MsgAddViewersResponse) XXX_DiscardUnknown()

func (*MsgAddViewersResponse) XXX_Marshal

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

func (*MsgAddViewersResponse) XXX_Merge

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

func (*MsgAddViewersResponse) XXX_Size

func (m *MsgAddViewersResponse) XXX_Size() int

func (*MsgAddViewersResponse) XXX_Unmarshal

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

type MsgChangeOwner

type MsgChangeOwner struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Address   string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner string `protobuf:"bytes,3,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
	NewOwner  string `protobuf:"bytes,4,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
}

func (*MsgChangeOwner) Descriptor

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

func (*MsgChangeOwner) GetAddress

func (m *MsgChangeOwner) GetAddress() string

func (*MsgChangeOwner) GetCreator

func (m *MsgChangeOwner) GetCreator() string

func (*MsgChangeOwner) GetFileOwner

func (m *MsgChangeOwner) GetFileOwner() string

func (*MsgChangeOwner) GetNewOwner

func (m *MsgChangeOwner) GetNewOwner() string

func (*MsgChangeOwner) Marshal

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

func (*MsgChangeOwner) MarshalTo

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

func (*MsgChangeOwner) MarshalToSizedBuffer

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

func (*MsgChangeOwner) ProtoMessage

func (*MsgChangeOwner) ProtoMessage()

func (*MsgChangeOwner) Reset

func (m *MsgChangeOwner) Reset()

func (*MsgChangeOwner) Size

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

func (*MsgChangeOwner) String

func (m *MsgChangeOwner) String() string

func (*MsgChangeOwner) Unmarshal

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

func (*MsgChangeOwner) XXX_DiscardUnknown

func (m *MsgChangeOwner) XXX_DiscardUnknown()

func (*MsgChangeOwner) XXX_Marshal

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

func (*MsgChangeOwner) XXX_Merge

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

func (*MsgChangeOwner) XXX_Size

func (m *MsgChangeOwner) XXX_Size() int

func (*MsgChangeOwner) XXX_Unmarshal

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

type MsgChangeOwnerResponse

type MsgChangeOwnerResponse struct {
}

func (*MsgChangeOwnerResponse) Descriptor

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

func (*MsgChangeOwnerResponse) Marshal

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

func (*MsgChangeOwnerResponse) MarshalTo

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

func (*MsgChangeOwnerResponse) MarshalToSizedBuffer

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

func (*MsgChangeOwnerResponse) ProtoMessage

func (*MsgChangeOwnerResponse) ProtoMessage()

func (*MsgChangeOwnerResponse) Reset

func (m *MsgChangeOwnerResponse) Reset()

func (*MsgChangeOwnerResponse) Size

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

func (*MsgChangeOwnerResponse) String

func (m *MsgChangeOwnerResponse) String() string

func (*MsgChangeOwnerResponse) Unmarshal

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

func (*MsgChangeOwnerResponse) XXX_DiscardUnknown

func (m *MsgChangeOwnerResponse) XXX_DiscardUnknown()

func (*MsgChangeOwnerResponse) XXX_Marshal

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

func (*MsgChangeOwnerResponse) XXX_Merge

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

func (*MsgChangeOwnerResponse) XXX_Size

func (m *MsgChangeOwnerResponse) XXX_Size() int

func (*MsgChangeOwnerResponse) XXX_Unmarshal

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

type MsgClient

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgDeleteFile

type MsgDeleteFile struct {
	Creator  string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	HashPath string `protobuf:"bytes,2,opt,name=hash_path,json=hashPath,proto3" json:"hash_path,omitempty"`
	Account  string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
}

func (*MsgDeleteFile) Descriptor

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

func (*MsgDeleteFile) GetAccount

func (m *MsgDeleteFile) GetAccount() string

func (*MsgDeleteFile) GetCreator

func (m *MsgDeleteFile) GetCreator() string

func (*MsgDeleteFile) GetHashPath

func (m *MsgDeleteFile) GetHashPath() string

func (*MsgDeleteFile) Marshal

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

func (*MsgDeleteFile) MarshalTo

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

func (*MsgDeleteFile) MarshalToSizedBuffer

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

func (*MsgDeleteFile) ProtoMessage

func (*MsgDeleteFile) ProtoMessage()

func (*MsgDeleteFile) Reset

func (m *MsgDeleteFile) Reset()

func (*MsgDeleteFile) Size

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

func (*MsgDeleteFile) String

func (m *MsgDeleteFile) String() string

func (*MsgDeleteFile) Unmarshal

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

func (*MsgDeleteFile) XXX_DiscardUnknown

func (m *MsgDeleteFile) XXX_DiscardUnknown()

func (*MsgDeleteFile) XXX_Marshal

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

func (*MsgDeleteFile) XXX_Merge

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

func (*MsgDeleteFile) XXX_Size

func (m *MsgDeleteFile) XXX_Size() int

func (*MsgDeleteFile) XXX_Unmarshal

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

type MsgDeleteFileResponse

type MsgDeleteFileResponse struct {
}

func (*MsgDeleteFileResponse) Descriptor

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

func (*MsgDeleteFileResponse) Marshal

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

func (*MsgDeleteFileResponse) MarshalTo

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

func (*MsgDeleteFileResponse) MarshalToSizedBuffer

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

func (*MsgDeleteFileResponse) ProtoMessage

func (*MsgDeleteFileResponse) ProtoMessage()

func (*MsgDeleteFileResponse) Reset

func (m *MsgDeleteFileResponse) Reset()

func (*MsgDeleteFileResponse) Size

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

func (*MsgDeleteFileResponse) String

func (m *MsgDeleteFileResponse) String() string

func (*MsgDeleteFileResponse) Unmarshal

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

func (*MsgDeleteFileResponse) XXX_DiscardUnknown

func (m *MsgDeleteFileResponse) XXX_DiscardUnknown()

func (*MsgDeleteFileResponse) XXX_Marshal

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

func (*MsgDeleteFileResponse) XXX_Merge

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

func (*MsgDeleteFileResponse) XXX_Size

func (m *MsgDeleteFileResponse) XXX_Size() int

func (*MsgDeleteFileResponse) XXX_Unmarshal

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

type MsgPostFile

type MsgPostFile struct {
	Creator        string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Account        string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	HashParent     string `protobuf:"bytes,3,opt,name=hash_parent,json=hashParent,proto3" json:"hash_parent,omitempty"`
	HashChild      string `protobuf:"bytes,4,opt,name=hash_child,json=hashChild,proto3" json:"hash_child,omitempty"`
	Contents       string `protobuf:"bytes,5,opt,name=contents,proto3" json:"contents,omitempty"`
	Viewers        string `protobuf:"bytes,6,opt,name=viewers,proto3" json:"viewers,omitempty"`
	Editors        string `protobuf:"bytes,7,opt,name=editors,proto3" json:"editors,omitempty"`
	TrackingNumber string `protobuf:"bytes,8,opt,name=tracking_number,json=trackingNumber,proto3" json:"tracking_number,omitempty"`
}

func (*MsgPostFile) Descriptor

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

func (*MsgPostFile) GetAccount

func (m *MsgPostFile) GetAccount() string

func (*MsgPostFile) GetContents

func (m *MsgPostFile) GetContents() string

func (*MsgPostFile) GetCreator

func (m *MsgPostFile) GetCreator() string

func (*MsgPostFile) GetEditors

func (m *MsgPostFile) GetEditors() string

func (*MsgPostFile) GetHashChild

func (m *MsgPostFile) GetHashChild() string

func (*MsgPostFile) GetHashParent

func (m *MsgPostFile) GetHashParent() string

func (*MsgPostFile) GetTrackingNumber

func (m *MsgPostFile) GetTrackingNumber() string

func (*MsgPostFile) GetViewers

func (m *MsgPostFile) GetViewers() string

func (*MsgPostFile) Marshal

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

func (*MsgPostFile) MarshalTo

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

func (*MsgPostFile) MarshalToSizedBuffer

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

func (*MsgPostFile) ProtoMessage

func (*MsgPostFile) ProtoMessage()

func (*MsgPostFile) Reset

func (m *MsgPostFile) Reset()

func (*MsgPostFile) Size

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

func (*MsgPostFile) String

func (m *MsgPostFile) String() string

func (*MsgPostFile) Unmarshal

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

func (*MsgPostFile) XXX_DiscardUnknown

func (m *MsgPostFile) XXX_DiscardUnknown()

func (*MsgPostFile) XXX_Marshal

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

func (*MsgPostFile) XXX_Merge

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

func (*MsgPostFile) XXX_Size

func (m *MsgPostFile) XXX_Size() int

func (*MsgPostFile) XXX_Unmarshal

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

type MsgPostFileResponse

type MsgPostFileResponse struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
}

func (*MsgPostFileResponse) Descriptor

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

func (*MsgPostFileResponse) GetPath

func (m *MsgPostFileResponse) GetPath() string

func (*MsgPostFileResponse) Marshal

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

func (*MsgPostFileResponse) MarshalTo

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

func (*MsgPostFileResponse) MarshalToSizedBuffer

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

func (*MsgPostFileResponse) ProtoMessage

func (*MsgPostFileResponse) ProtoMessage()

func (*MsgPostFileResponse) Reset

func (m *MsgPostFileResponse) Reset()

func (*MsgPostFileResponse) Size

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

func (*MsgPostFileResponse) String

func (m *MsgPostFileResponse) String() string

func (*MsgPostFileResponse) Unmarshal

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

func (*MsgPostFileResponse) XXX_DiscardUnknown

func (m *MsgPostFileResponse) XXX_DiscardUnknown()

func (*MsgPostFileResponse) XXX_Marshal

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

func (*MsgPostFileResponse) XXX_Merge

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

func (*MsgPostFileResponse) XXX_Size

func (m *MsgPostFileResponse) XXX_Size() int

func (*MsgPostFileResponse) XXX_Unmarshal

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

type MsgPostKey

type MsgPostKey struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Key     string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
}

func NewMsgPostKey

func NewMsgPostKey(creator string, key string) *MsgPostKey

func (*MsgPostKey) Descriptor

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

func (*MsgPostKey) GetCreator

func (m *MsgPostKey) GetCreator() string

func (*MsgPostKey) GetKey

func (m *MsgPostKey) GetKey() string

func (*MsgPostKey) GetSignBytes

func (msg *MsgPostKey) GetSignBytes() []byte

func (*MsgPostKey) GetSigners

func (msg *MsgPostKey) GetSigners() []sdk.AccAddress

func (*MsgPostKey) Marshal

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

func (*MsgPostKey) MarshalTo

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

func (*MsgPostKey) MarshalToSizedBuffer

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

func (*MsgPostKey) ProtoMessage

func (*MsgPostKey) ProtoMessage()

func (*MsgPostKey) Reset

func (m *MsgPostKey) Reset()

func (*MsgPostKey) Route

func (msg *MsgPostKey) Route() string

func (*MsgPostKey) Size

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

func (*MsgPostKey) String

func (m *MsgPostKey) String() string

func (*MsgPostKey) Type

func (msg *MsgPostKey) Type() string

func (*MsgPostKey) Unmarshal

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

func (*MsgPostKey) ValidateBasic

func (msg *MsgPostKey) ValidateBasic() error

func (*MsgPostKey) XXX_DiscardUnknown

func (m *MsgPostKey) XXX_DiscardUnknown()

func (*MsgPostKey) XXX_Marshal

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

func (*MsgPostKey) XXX_Merge

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

func (*MsgPostKey) XXX_Size

func (m *MsgPostKey) XXX_Size() int

func (*MsgPostKey) XXX_Unmarshal

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

type MsgPostKeyResponse

type MsgPostKeyResponse struct {
}

func (*MsgPostKeyResponse) Descriptor

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

func (*MsgPostKeyResponse) Marshal

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

func (*MsgPostKeyResponse) MarshalTo

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

func (*MsgPostKeyResponse) MarshalToSizedBuffer

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

func (*MsgPostKeyResponse) ProtoMessage

func (*MsgPostKeyResponse) ProtoMessage()

func (*MsgPostKeyResponse) Reset

func (m *MsgPostKeyResponse) Reset()

func (*MsgPostKeyResponse) Size

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

func (*MsgPostKeyResponse) String

func (m *MsgPostKeyResponse) String() string

func (*MsgPostKeyResponse) Unmarshal

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

func (*MsgPostKeyResponse) XXX_DiscardUnknown

func (m *MsgPostKeyResponse) XXX_DiscardUnknown()

func (*MsgPostKeyResponse) XXX_Marshal

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

func (*MsgPostKeyResponse) XXX_Merge

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

func (*MsgPostKeyResponse) XXX_Size

func (m *MsgPostKeyResponse) XXX_Size() int

func (*MsgPostKeyResponse) XXX_Unmarshal

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

type MsgProvisionFileTree

type MsgProvisionFileTree struct {
	Creator        string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Editors        string `protobuf:"bytes,2,opt,name=editors,proto3" json:"editors,omitempty"`
	Viewers        string `protobuf:"bytes,3,opt,name=viewers,proto3" json:"viewers,omitempty"`
	TrackingNumber string `protobuf:"bytes,4,opt,name=tracking_number,json=trackingNumber,proto3" json:"tracking_number,omitempty"`
}

func (*MsgProvisionFileTree) Descriptor

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

func (*MsgProvisionFileTree) GetCreator

func (m *MsgProvisionFileTree) GetCreator() string

func (*MsgProvisionFileTree) GetEditors

func (m *MsgProvisionFileTree) GetEditors() string

func (*MsgProvisionFileTree) GetTrackingNumber

func (m *MsgProvisionFileTree) GetTrackingNumber() string

func (*MsgProvisionFileTree) GetViewers

func (m *MsgProvisionFileTree) GetViewers() string

func (*MsgProvisionFileTree) Marshal

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

func (*MsgProvisionFileTree) MarshalTo

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

func (*MsgProvisionFileTree) MarshalToSizedBuffer

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

func (*MsgProvisionFileTree) ProtoMessage

func (*MsgProvisionFileTree) ProtoMessage()

func (*MsgProvisionFileTree) Reset

func (m *MsgProvisionFileTree) Reset()

func (*MsgProvisionFileTree) Size

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

func (*MsgProvisionFileTree) String

func (m *MsgProvisionFileTree) String() string

func (*MsgProvisionFileTree) Unmarshal

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

func (*MsgProvisionFileTree) XXX_DiscardUnknown

func (m *MsgProvisionFileTree) XXX_DiscardUnknown()

func (*MsgProvisionFileTree) XXX_Marshal

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

func (*MsgProvisionFileTree) XXX_Merge

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

func (*MsgProvisionFileTree) XXX_Size

func (m *MsgProvisionFileTree) XXX_Size() int

func (*MsgProvisionFileTree) XXX_Unmarshal

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

type MsgProvisionFileTreeResponse

type MsgProvisionFileTreeResponse struct {
}

func (*MsgProvisionFileTreeResponse) Descriptor

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

func (*MsgProvisionFileTreeResponse) Marshal

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

func (*MsgProvisionFileTreeResponse) MarshalTo

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

func (*MsgProvisionFileTreeResponse) MarshalToSizedBuffer

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

func (*MsgProvisionFileTreeResponse) ProtoMessage

func (*MsgProvisionFileTreeResponse) ProtoMessage()

func (*MsgProvisionFileTreeResponse) Reset

func (m *MsgProvisionFileTreeResponse) Reset()

func (*MsgProvisionFileTreeResponse) Size

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

func (*MsgProvisionFileTreeResponse) String

func (*MsgProvisionFileTreeResponse) Unmarshal

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

func (*MsgProvisionFileTreeResponse) XXX_DiscardUnknown

func (m *MsgProvisionFileTreeResponse) XXX_DiscardUnknown()

func (*MsgProvisionFileTreeResponse) XXX_Marshal

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

func (*MsgProvisionFileTreeResponse) XXX_Merge

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

func (*MsgProvisionFileTreeResponse) XXX_Size

func (m *MsgProvisionFileTreeResponse) XXX_Size() int

func (*MsgProvisionFileTreeResponse) XXX_Unmarshal

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

type MsgRemoveEditors

type MsgRemoveEditors struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	EditorIds string `protobuf:"bytes,2,opt,name=editor_ids,json=editorIds,proto3" json:"editor_ids,omitempty"`
	Address   string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner string `protobuf:"bytes,4,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgRemoveEditors) Descriptor

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

func (*MsgRemoveEditors) GetAddress

func (m *MsgRemoveEditors) GetAddress() string

func (*MsgRemoveEditors) GetCreator

func (m *MsgRemoveEditors) GetCreator() string

func (*MsgRemoveEditors) GetEditorIds

func (m *MsgRemoveEditors) GetEditorIds() string

func (*MsgRemoveEditors) GetFileOwner

func (m *MsgRemoveEditors) GetFileOwner() string

func (*MsgRemoveEditors) Marshal

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

func (*MsgRemoveEditors) MarshalTo

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

func (*MsgRemoveEditors) MarshalToSizedBuffer

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

func (*MsgRemoveEditors) ProtoMessage

func (*MsgRemoveEditors) ProtoMessage()

func (*MsgRemoveEditors) Reset

func (m *MsgRemoveEditors) Reset()

func (*MsgRemoveEditors) Size

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

func (*MsgRemoveEditors) String

func (m *MsgRemoveEditors) String() string

func (*MsgRemoveEditors) Unmarshal

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

func (*MsgRemoveEditors) XXX_DiscardUnknown

func (m *MsgRemoveEditors) XXX_DiscardUnknown()

func (*MsgRemoveEditors) XXX_Marshal

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

func (*MsgRemoveEditors) XXX_Merge

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

func (*MsgRemoveEditors) XXX_Size

func (m *MsgRemoveEditors) XXX_Size() int

func (*MsgRemoveEditors) XXX_Unmarshal

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

type MsgRemoveEditorsResponse

type MsgRemoveEditorsResponse struct {
}

func (*MsgRemoveEditorsResponse) Descriptor

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

func (*MsgRemoveEditorsResponse) Marshal

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

func (*MsgRemoveEditorsResponse) MarshalTo

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

func (*MsgRemoveEditorsResponse) MarshalToSizedBuffer

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

func (*MsgRemoveEditorsResponse) ProtoMessage

func (*MsgRemoveEditorsResponse) ProtoMessage()

func (*MsgRemoveEditorsResponse) Reset

func (m *MsgRemoveEditorsResponse) Reset()

func (*MsgRemoveEditorsResponse) Size

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

func (*MsgRemoveEditorsResponse) String

func (m *MsgRemoveEditorsResponse) String() string

func (*MsgRemoveEditorsResponse) Unmarshal

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

func (*MsgRemoveEditorsResponse) XXX_DiscardUnknown

func (m *MsgRemoveEditorsResponse) XXX_DiscardUnknown()

func (*MsgRemoveEditorsResponse) XXX_Marshal

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

func (*MsgRemoveEditorsResponse) XXX_Merge

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

func (*MsgRemoveEditorsResponse) XXX_Size

func (m *MsgRemoveEditorsResponse) XXX_Size() int

func (*MsgRemoveEditorsResponse) XXX_Unmarshal

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

type MsgRemoveViewers

type MsgRemoveViewers struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ViewerIds string `protobuf:"bytes,2,opt,name=viewer_ids,json=viewerIds,proto3" json:"viewer_ids,omitempty"`
	Address   string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner string `protobuf:"bytes,4,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgRemoveViewers) Descriptor

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

func (*MsgRemoveViewers) GetAddress

func (m *MsgRemoveViewers) GetAddress() string

func (*MsgRemoveViewers) GetCreator

func (m *MsgRemoveViewers) GetCreator() string

func (*MsgRemoveViewers) GetFileOwner

func (m *MsgRemoveViewers) GetFileOwner() string

func (*MsgRemoveViewers) GetViewerIds

func (m *MsgRemoveViewers) GetViewerIds() string

func (*MsgRemoveViewers) Marshal

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

func (*MsgRemoveViewers) MarshalTo

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

func (*MsgRemoveViewers) MarshalToSizedBuffer

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

func (*MsgRemoveViewers) ProtoMessage

func (*MsgRemoveViewers) ProtoMessage()

func (*MsgRemoveViewers) Reset

func (m *MsgRemoveViewers) Reset()

func (*MsgRemoveViewers) Size

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

func (*MsgRemoveViewers) String

func (m *MsgRemoveViewers) String() string

func (*MsgRemoveViewers) Unmarshal

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

func (*MsgRemoveViewers) XXX_DiscardUnknown

func (m *MsgRemoveViewers) XXX_DiscardUnknown()

func (*MsgRemoveViewers) XXX_Marshal

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

func (*MsgRemoveViewers) XXX_Merge

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

func (*MsgRemoveViewers) XXX_Size

func (m *MsgRemoveViewers) XXX_Size() int

func (*MsgRemoveViewers) XXX_Unmarshal

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

type MsgRemoveViewersResponse

type MsgRemoveViewersResponse struct {
}

func (*MsgRemoveViewersResponse) Descriptor

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

func (*MsgRemoveViewersResponse) Marshal

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

func (*MsgRemoveViewersResponse) MarshalTo

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

func (*MsgRemoveViewersResponse) MarshalToSizedBuffer

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

func (*MsgRemoveViewersResponse) ProtoMessage

func (*MsgRemoveViewersResponse) ProtoMessage()

func (*MsgRemoveViewersResponse) Reset

func (m *MsgRemoveViewersResponse) Reset()

func (*MsgRemoveViewersResponse) Size

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

func (*MsgRemoveViewersResponse) String

func (m *MsgRemoveViewersResponse) String() string

func (*MsgRemoveViewersResponse) Unmarshal

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

func (*MsgRemoveViewersResponse) XXX_DiscardUnknown

func (m *MsgRemoveViewersResponse) XXX_DiscardUnknown()

func (*MsgRemoveViewersResponse) XXX_Marshal

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

func (*MsgRemoveViewersResponse) XXX_Merge

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

func (*MsgRemoveViewersResponse) XXX_Size

func (m *MsgRemoveViewersResponse) XXX_Size() int

func (*MsgRemoveViewersResponse) XXX_Unmarshal

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

type MsgResetEditors

type MsgResetEditors struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Address   string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner string `protobuf:"bytes,3,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgResetEditors) Descriptor

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

func (*MsgResetEditors) GetAddress

func (m *MsgResetEditors) GetAddress() string

func (*MsgResetEditors) GetCreator

func (m *MsgResetEditors) GetCreator() string

func (*MsgResetEditors) GetFileOwner

func (m *MsgResetEditors) GetFileOwner() string

func (*MsgResetEditors) Marshal

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

func (*MsgResetEditors) MarshalTo

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

func (*MsgResetEditors) MarshalToSizedBuffer

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

func (*MsgResetEditors) ProtoMessage

func (*MsgResetEditors) ProtoMessage()

func (*MsgResetEditors) Reset

func (m *MsgResetEditors) Reset()

func (*MsgResetEditors) Size

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

func (*MsgResetEditors) String

func (m *MsgResetEditors) String() string

func (*MsgResetEditors) Unmarshal

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

func (*MsgResetEditors) XXX_DiscardUnknown

func (m *MsgResetEditors) XXX_DiscardUnknown()

func (*MsgResetEditors) XXX_Marshal

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

func (*MsgResetEditors) XXX_Merge

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

func (*MsgResetEditors) XXX_Size

func (m *MsgResetEditors) XXX_Size() int

func (*MsgResetEditors) XXX_Unmarshal

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

type MsgResetEditorsResponse

type MsgResetEditorsResponse struct {
}

func (*MsgResetEditorsResponse) Descriptor

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

func (*MsgResetEditorsResponse) Marshal

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

func (*MsgResetEditorsResponse) MarshalTo

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

func (*MsgResetEditorsResponse) MarshalToSizedBuffer

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

func (*MsgResetEditorsResponse) ProtoMessage

func (*MsgResetEditorsResponse) ProtoMessage()

func (*MsgResetEditorsResponse) Reset

func (m *MsgResetEditorsResponse) Reset()

func (*MsgResetEditorsResponse) Size

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

func (*MsgResetEditorsResponse) String

func (m *MsgResetEditorsResponse) String() string

func (*MsgResetEditorsResponse) Unmarshal

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

func (*MsgResetEditorsResponse) XXX_DiscardUnknown

func (m *MsgResetEditorsResponse) XXX_DiscardUnknown()

func (*MsgResetEditorsResponse) XXX_Marshal

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

func (*MsgResetEditorsResponse) XXX_Merge

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

func (*MsgResetEditorsResponse) XXX_Size

func (m *MsgResetEditorsResponse) XXX_Size() int

func (*MsgResetEditorsResponse) XXX_Unmarshal

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

type MsgResetViewers

type MsgResetViewers struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Address   string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	FileOwner string `protobuf:"bytes,3,opt,name=file_owner,json=fileOwner,proto3" json:"file_owner,omitempty"`
}

func (*MsgResetViewers) Descriptor

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

func (*MsgResetViewers) GetAddress

func (m *MsgResetViewers) GetAddress() string

func (*MsgResetViewers) GetCreator

func (m *MsgResetViewers) GetCreator() string

func (*MsgResetViewers) GetFileOwner

func (m *MsgResetViewers) GetFileOwner() string

func (*MsgResetViewers) Marshal

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

func (*MsgResetViewers) MarshalTo

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

func (*MsgResetViewers) MarshalToSizedBuffer

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

func (*MsgResetViewers) ProtoMessage

func (*MsgResetViewers) ProtoMessage()

func (*MsgResetViewers) Reset

func (m *MsgResetViewers) Reset()

func (*MsgResetViewers) Size

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

func (*MsgResetViewers) String

func (m *MsgResetViewers) String() string

func (*MsgResetViewers) Unmarshal

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

func (*MsgResetViewers) XXX_DiscardUnknown

func (m *MsgResetViewers) XXX_DiscardUnknown()

func (*MsgResetViewers) XXX_Marshal

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

func (*MsgResetViewers) XXX_Merge

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

func (*MsgResetViewers) XXX_Size

func (m *MsgResetViewers) XXX_Size() int

func (*MsgResetViewers) XXX_Unmarshal

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

type MsgResetViewersResponse

type MsgResetViewersResponse struct {
}

func (*MsgResetViewersResponse) Descriptor

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

func (*MsgResetViewersResponse) Marshal

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

func (*MsgResetViewersResponse) MarshalTo

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

func (*MsgResetViewersResponse) MarshalToSizedBuffer

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

func (*MsgResetViewersResponse) ProtoMessage

func (*MsgResetViewersResponse) ProtoMessage()

func (*MsgResetViewersResponse) Reset

func (m *MsgResetViewersResponse) Reset()

func (*MsgResetViewersResponse) Size

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

func (*MsgResetViewersResponse) String

func (m *MsgResetViewersResponse) String() string

func (*MsgResetViewersResponse) Unmarshal

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

func (*MsgResetViewersResponse) XXX_DiscardUnknown

func (m *MsgResetViewersResponse) XXX_DiscardUnknown()

func (*MsgResetViewersResponse) XXX_Marshal

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

func (*MsgResetViewersResponse) XXX_Merge

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

func (*MsgResetViewersResponse) XXX_Size

func (m *MsgResetViewersResponse) XXX_Size() int

func (*MsgResetViewersResponse) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AddEditors

func (*UnimplementedMsgServer) AddViewers

func (*UnimplementedMsgServer) ChangeOwner

func (*UnimplementedMsgServer) DeleteFile

func (*UnimplementedMsgServer) PostFile

func (*UnimplementedMsgServer) PostKey

func (*UnimplementedMsgServer) ProvisionFileTree

func (*UnimplementedMsgServer) RemoveEditors

func (*UnimplementedMsgServer) RemoveViewers

func (*UnimplementedMsgServer) ResetEditors

func (*UnimplementedMsgServer) ResetViewers

Jump to

Keyboard shortcuts

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