types

package
v0.1.5 Latest Latest
Warning

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

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

Documentation

Index

Constants

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

	// 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_ewm"
)
View Source
const (
	// Proof session constants
	DefaultSessionDuration     = time.Duration((float64(1) / 12) * 3_600 * 1000_000_000) // 5 mins
	TimestampLayout            = "2006-01-02 15:04:05.999999999 +0000 UTC"
	DefaultProofSubmissionsReq = 2
	DefaultSessionQuorumReq    = 66
	DefaultSyncLag             = 1000
	DefaultBridgeTxDayFreq     = 2

	// Fifo proof session index
	NoFifoIndex = "-1"

	// Proof session event types
	ProofSessionEventCreated      = "proof-session-created"
	ProofSessionEventParticipated = "proof-session-participated"
	ProofSessionEventExpired      = "proof-session-expired"
	ProofSessionEventConcluded    = "proof-session-concluded"
	ProofSessionEventStored       = "proof-session-stored"

	// Proof session event vars
	ProofSessionEventCreator          = "creator"
	ProofSessionEventIndex            = "proof-session-index"
	ProofSessionEventFinalized        = "finalized"
	ProofSessionEventSubmissions      = "submissions"
	ProofSessionEventExpiredIndex     = "proof-session-index" //maybe redundant
	ProofSessionEventExpiredProofHash = "hash"
	ProofSessionEventExpiredCount     = "count"
	ProofSessionEventStoredCount      = "stored"

	// Chain role event types
	ChainRoleEventInit                  = "chain-role-initialized"
	ChainRoleEventAssign                = "chain-role-assigned"
	ChainRoleEventAssignOpVal           = "chain-role-assign-operator-validator"
	ChainRoleEventRemove                = "chain-role-removed"
	ChainRoleEventEnableProofValidator  = "chain-role-enable-proof-validator"
	ChainRoleEventDisableProofValidator = "chain-role-disable-proof-validator"

	// Chain role event vars
	ChainRoleEventProofType      = "proof-type"
	ChainRoleEventCreator        = "creator"
	ChainRoleEventIndex          = "chain-role-index"
	ChainRoleEventSequencer      = "sequencer"
	ChainRoleEventSequencerIndex = "sequencer-index"
	ChainRoleEventOperator       = "operator"
	ChainRoleEventOperatorIndex  = "operator-index"
	ChainRoleEventValidator      = "validator"
	ChainRoleEventValidatorIndex = "validator-index"

	// Chain config event types
	ChainConfigEventInit   = "chain-config-initialized"
	ChainConfigEventUpdate = "chain-config-updated"

	// Chain config event vars
	ChainConfigEventCreator    = "creator"
	ChainConfigEventIndex      = "chain-config-index"
	ChainConfigEventProofType  = "proof-type"
	ChainConfigEventTimestamp  = "timestamp"
	ChainConfigUpdateEventType = "config-update-type"
)
View Source
const (
	SystemInfoKey = "SystemInfo-value-"
)
View Source
const TypeMsgCreateProof = "create_proof"

Variables

View Source
var (
	ErrSample                        = errorsmod.Register(ModuleName, 1100, "sample error")
	ErrInvalidSourceChainId          = errorsmod.Register(ModuleName, 1101, "submitted source chain-id is invalid, accepts only unsigned integers")
	ErrInvalidProofType              = errorsmod.Register(ModuleName, 1102, "submitted proof-type is invalid, accepts only 'specimen', 'result'")
	ErrInvalidBlockHeight            = errorsmod.Register(ModuleName, 1103, "submitted block-height is invalid, accepts only unsigned integers")
	ErrInvalidBlockHash              = errorsmod.Register(ModuleName, 1104, "submitted block-hash is invalid, accepts only hash string")
	ErrInvalidProofHash              = errorsmod.Register(ModuleName, 1105, "submitted proof-hash is invalid, accepts only string")
	ErrInvalidStoreAddress           = errorsmod.Register(ModuleName, 1106, "submitted store-address is invalid, accepts only string")
	ErrInvalidDeadline               = errorsmod.Register(ModuleName, 1107, "deadline cannot be parsed, accepts only utc unix string time")
	ErrInvalidProofCount             = errorsmod.Register(ModuleName, 1108, "submitted proof-count is invalid, accepts only unsigned integers")
	ErrInvalidProofSessionId         = errorsmod.Register(ModuleName, 1109, "submitted proof-session-id is invalid")
	ErrAlreadySubmitted              = errorsmod.Register(ModuleName, 1110, "submitted tx creator is already session member")
	ErrChainRoleExists               = errorsmod.Register(ModuleName, 1111, "submitted chain role exists for chain id")
	ErrEmptyAddress                  = errorsmod.Register(ModuleName, 1112, "submitted address cannot be empty")
	ErrInvalidOperatorAddress        = errorsmod.Register(ModuleName, 1113, "submitted operator address is an invalid Cosmos address")
	ErrInvalidSequencerAddress       = errorsmod.Register(ModuleName, 1114, "submitted Sequencer address is invalid")
	ErrInvalidValidatorAddress       = errorsmod.Register(ModuleName, 1115, "submitted Validator address is an invalid Ethereum address")
	ErrChainRoleDoesNotExist         = errorsmod.Register(ModuleName, 1116, "provided chain role does not exist")
	ErrProofSessionValidation        = errorsmod.Register(ModuleName, 1117, "proof session transaction validation failed")
	ErrCannotFindExpiredProofSession = errorsmod.Register(ModuleName, 1118, "expired proof session cannot be found")
	ErrProofOperatorNotFound         = errorsmod.Register(ModuleName, 1119, "proof operator not found in chain roles")
	ErrProofValidatorNotFound        = errorsmod.Register(ModuleName, 1120, "proof validator not found in chain roles")
	ErrProofSequencerNotFound        = errorsmod.Register(ModuleName, 1121, "proof sequencer not found in chain roles")
	ErrChainIdNotSupported           = errorsmod.Register(ModuleName, 1122, "submitted chain id not supported with chain roles")
	ErrChainConfigExists             = errorsmod.Register(ModuleName, 1123, "submitted chain config already exists for chain id")
	ErrChainConfigDoesNotExist       = errorsmod.Register(ModuleName, 1124, "provided chain config does not exist")
	ErrInvalidQuorumReq              = errorsmod.Register(ModuleName, 1125, "provided quorum is not usable")
	ErrInvalidSrcBlockTimeSec        = errorsmod.Register(ModuleName, 1126, "provided source block time is not usable")
	ErrInvalidSnkBlockTimeSec        = errorsmod.Register(ModuleName, 1127, "provided sink block time is not usable")
	ErrInvalidRewardAlloc            = errorsmod.Register(ModuleName, 1128, "provided reward allocation per session is not usable")
	ErrInvalidMinStakeReq            = errorsmod.Register(ModuleName, 1129, "provided min stake required is not usable")
	ErrInvalidMinSubmissionReq       = errorsmod.Register(ModuleName, 1130, "provided min proof submissions required is not usable")
	ErrInvalidSessionTimeSec         = errorsmod.Register(ModuleName, 1131, "provided session duration is not usable")
	ErrInvalidSecondTimeSuffix       = errorsmod.Register(ModuleName, 1132, "provided duration is not usable without `s` suffix")
	ErrBigIntString                  = errorsmod.Register(ModuleName, 1133, "provided big int string is not usable")
	ErrSubRoleCannotBeEmpty          = errorsmod.Register(ModuleName, 1134, "cannot remove all the sub-roles for this chain-id")
	ErrIncorrectChainConfig          = errorsmod.Register(ModuleName, 1135, "invalid chain configuration for proof creation")
	ErrInvalidBoolean                = errorsmod.Register(ModuleName, 1136, "provided value is an invalid boolean")
	ErrStructFieldIsEmpty            = errorsmod.Register(ModuleName, 1137, "provided value(s) to the struct cannot be empty")
	ErrProofOutOfBounds              = errorsmod.Register(ModuleName, 1138, "proof session submitted out of acceptable live bounds")
	ErrChainProofTypeNotSupported    = errorsmod.Register(ModuleName, 1139, "provided proof type value is not supported")
	ErrValidatorNotEnabled           = errorsmod.Register(ModuleName, 1140, "provided proof validator is not enabled")

	ErrInt32OverFlow = errorsmod.Register(ModuleName, 0001, "submitted int32 is invalid, should be between 0 and 2147483647")
	ErrInt64OverFlow = errorsmod.Register(ModuleName, 0002, "submitted int64 is invalid, should be between 0 and 18446744073709551615")
	ErrStringNotUrl  = errorsmod.Register(ModuleName, 0003, "submitted string is invalid url, should contain a hostname and path to resource")
)

x/covenet module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthLiveProofSession        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowLiveProofSession          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupLiveProofSession = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthStoredChainConfig        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowStoredChainConfig          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupStoredChainConfig = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthStoredChainRole        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowStoredChainRole          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupStoredChainRole = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthStoredProofSession        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowStoredProofSession          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupStoredProofSession = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthSystemInfo        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowSystemInfo          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupSystemInfo = fmt.Errorf("proto: unexpected end of group")
)
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 AssertBigInt added in v0.1.3

func AssertBigInt(val string) error

func AssertBool added in v0.1.3

func AssertBool(val interface{}) error

func AssertHashLength added in v0.1.3

func AssertHashLength(val string) error

func AssertInt32 added in v0.1.3

func AssertInt32(val int32) error

func AssertInt64 added in v0.1.3

func AssertInt64(val uint64) error

func AssertProofType added in v0.1.3

func AssertProofType(val string) error

func AssertSessionMembers added in v0.1.3

func AssertSessionMembers(val string) error

func AssertStructFieldsNotEmpty added in v0.1.3

func AssertStructFieldsNotEmpty(obj interface{}) error

func AssertTimeSecond added in v0.1.3

func AssertTimeSecond(val string) error

func AssertUrl added in v0.1.3

func AssertUrl(val string) error

func CovenetAccAddressFromBech32 added in v0.1.3

func CovenetAccAddressFromBech32(address string) (addr sdk.AccAddress, err error)

CovenetAccAddressFromBech32 creates an AccAddress with "cxtmos" prefix from a Bech32 string.

func JoinErrors added in v0.1.3

func JoinErrors(errs ...error) error

func KeyPrefix

func KeyPrefix(p string) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccAddress added in v0.1.3

type AccAddress []byte

AccAddress a wrapper around bytes meant to represent an account address. When marshaled to a string or JSON, it uses Bech32.

type GenesisState

type GenesisState struct {
	Params                 Params               `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	SystemInfo             SystemInfo           `protobuf:"bytes,2,opt,name=systemInfo,proto3" json:"systemInfo"`
	LiveProofSessionList   []LiveProofSession   `protobuf:"bytes,3,rep,name=liveProofSessionList,proto3" json:"liveProofSessionList"`
	StoredChainRoleList    []StoredChainRole    `protobuf:"bytes,4,rep,name=storedChainRoleList,proto3" json:"storedChainRoleList"`
	StoredChainConfigList  []StoredChainConfig  `protobuf:"bytes,5,rep,name=storedChainConfigList,proto3" json:"storedChainConfigList"`
	StoredProofSessionList []StoredProofSession `protobuf:"bytes,6,rep,name=storedProofSessionList,proto3" json:"storedProofSessionList"`
}

GenesisState defines the covenet module's genesis state.

func (*GenesisState) Descriptor

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

func (*GenesisState) GetLiveProofSessionList

func (m *GenesisState) GetLiveProofSessionList() []LiveProofSession

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetStoredChainConfigList

func (m *GenesisState) GetStoredChainConfigList() []StoredChainConfig

func (*GenesisState) GetStoredChainRoleList

func (m *GenesisState) GetStoredChainRoleList() []StoredChainRole

func (*GenesisState) GetStoredProofSessionList

func (m *GenesisState) GetStoredProofSessionList() []StoredProofSession

func (*GenesisState) GetSystemInfo

func (m *GenesisState) GetSystemInfo() SystemInfo

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type LiveProofSession

type LiveProofSession struct {
	Index           string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	ChainId         int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType       string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	BlockHeight     uint64 `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	BlockHash       string `protobuf:"bytes,5,opt,name=blockHash,proto3" json:"blockHash,omitempty"`
	ProofHash       string `protobuf:"bytes,6,opt,name=proofHash,proto3" json:"proofHash,omitempty"`
	StoreAddress    string `protobuf:"bytes,7,opt,name=storeAddress,proto3" json:"storeAddress,omitempty"`
	ProofCount      int32  `protobuf:"varint,8,opt,name=proofCount,proto3" json:"proofCount,omitempty"`
	SessionMembers  string `protobuf:"bytes,9,opt,name=sessionMembers,proto3" json:"sessionMembers,omitempty"`
	SessionDeadline string `protobuf:"bytes,10,opt,name=sessionDeadline,proto3" json:"sessionDeadline,omitempty"`
	Finalized       bool   `protobuf:"varint,11,opt,name=finalized,proto3" json:"finalized,omitempty"`
	Expired         bool   `protobuf:"varint,12,opt,name=expired,proto3" json:"expired,omitempty"`
	Creator         string `protobuf:"bytes,13,opt,name=creator,proto3" json:"creator,omitempty"`
	BeforeIndex     string `protobuf:"bytes,14,opt,name=beforeIndex,proto3" json:"beforeIndex,omitempty"`
	AfterIndex      string `protobuf:"bytes,15,opt,name=afterIndex,proto3" json:"afterIndex,omitempty"`
}

func (*LiveProofSession) Descriptor

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

func (*LiveProofSession) GetAfterIndex

func (m *LiveProofSession) GetAfterIndex() string

func (*LiveProofSession) GetBeforeIndex

func (m *LiveProofSession) GetBeforeIndex() string

func (*LiveProofSession) GetBlockHash

func (m *LiveProofSession) GetBlockHash() string

func (*LiveProofSession) GetBlockHeight

func (m *LiveProofSession) GetBlockHeight() uint64

func (*LiveProofSession) GetChainId

func (m *LiveProofSession) GetChainId() int32

func (*LiveProofSession) GetCreator

func (m *LiveProofSession) GetCreator() string

func (*LiveProofSession) GetExpired

func (m *LiveProofSession) GetExpired() bool

func (*LiveProofSession) GetFinalized

func (m *LiveProofSession) GetFinalized() bool

func (*LiveProofSession) GetIndex

func (m *LiveProofSession) GetIndex() string

func (*LiveProofSession) GetProofCount

func (m *LiveProofSession) GetProofCount() int32

func (*LiveProofSession) GetProofHash

func (m *LiveProofSession) GetProofHash() string

func (*LiveProofSession) GetProofType

func (m *LiveProofSession) GetProofType() string

func (*LiveProofSession) GetSessionDeadline

func (m *LiveProofSession) GetSessionDeadline() string

func (*LiveProofSession) GetSessionMembers

func (m *LiveProofSession) GetSessionMembers() string

func (*LiveProofSession) GetStoreAddress

func (m *LiveProofSession) GetStoreAddress() string

func (*LiveProofSession) Marshal

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

func (*LiveProofSession) MarshalTo

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

func (*LiveProofSession) MarshalToSizedBuffer

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

func (*LiveProofSession) ProtoMessage

func (*LiveProofSession) ProtoMessage()

func (*LiveProofSession) Reset

func (m *LiveProofSession) Reset()

func (*LiveProofSession) Size

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

func (*LiveProofSession) String

func (m *LiveProofSession) String() string

func (*LiveProofSession) Unmarshal

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

func (*LiveProofSession) XXX_DiscardUnknown

func (m *LiveProofSession) XXX_DiscardUnknown()

func (*LiveProofSession) XXX_Marshal

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

func (*LiveProofSession) XXX_Merge

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

func (*LiveProofSession) XXX_Size

func (m *LiveProofSession) XXX_Size() int

func (*LiveProofSession) XXX_Unmarshal

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

type MsgAssignOperatorValidator

type MsgAssignOperatorValidator struct {
	Creator          string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId          int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType        string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	ValidatorAddress string `protobuf:"bytes,4,opt,name=validatorAddress,proto3" json:"validatorAddress,omitempty"`
	OperatorAddress  string `protobuf:"bytes,5,opt,name=operatorAddress,proto3" json:"operatorAddress,omitempty"`
}

func (*MsgAssignOperatorValidator) Descriptor

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

func (*MsgAssignOperatorValidator) GetChainId

func (m *MsgAssignOperatorValidator) GetChainId() int32

func (*MsgAssignOperatorValidator) GetCreator

func (m *MsgAssignOperatorValidator) GetCreator() string

func (*MsgAssignOperatorValidator) GetOperatorAddress

func (m *MsgAssignOperatorValidator) GetOperatorAddress() string

func (*MsgAssignOperatorValidator) GetProofType

func (m *MsgAssignOperatorValidator) GetProofType() string

func (*MsgAssignOperatorValidator) GetValidatorAddress

func (m *MsgAssignOperatorValidator) GetValidatorAddress() string

func (*MsgAssignOperatorValidator) Marshal

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

func (*MsgAssignOperatorValidator) MarshalTo

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

func (*MsgAssignOperatorValidator) MarshalToSizedBuffer

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

func (*MsgAssignOperatorValidator) ProtoMessage

func (*MsgAssignOperatorValidator) ProtoMessage()

func (*MsgAssignOperatorValidator) Reset

func (m *MsgAssignOperatorValidator) Reset()

func (*MsgAssignOperatorValidator) Size

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

func (*MsgAssignOperatorValidator) String

func (m *MsgAssignOperatorValidator) String() string

func (*MsgAssignOperatorValidator) Unmarshal

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

func (*MsgAssignOperatorValidator) XXX_DiscardUnknown

func (m *MsgAssignOperatorValidator) XXX_DiscardUnknown()

func (*MsgAssignOperatorValidator) XXX_Marshal

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

func (*MsgAssignOperatorValidator) XXX_Merge

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

func (*MsgAssignOperatorValidator) XXX_Size

func (m *MsgAssignOperatorValidator) XXX_Size() int

func (*MsgAssignOperatorValidator) XXX_Unmarshal

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

type MsgAssignOperatorValidatorResponse

type MsgAssignOperatorValidatorResponse struct {
	ValidatorIndex int32 `protobuf:"varint,1,opt,name=validatorIndex,proto3" json:"validatorIndex,omitempty"`
	OperatorIndex  int32 `protobuf:"varint,2,opt,name=operatorIndex,proto3" json:"operatorIndex,omitempty"`
}

func (*MsgAssignOperatorValidatorResponse) Descriptor

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

func (*MsgAssignOperatorValidatorResponse) GetOperatorIndex

func (m *MsgAssignOperatorValidatorResponse) GetOperatorIndex() int32

func (*MsgAssignOperatorValidatorResponse) GetValidatorIndex

func (m *MsgAssignOperatorValidatorResponse) GetValidatorIndex() int32

func (*MsgAssignOperatorValidatorResponse) Marshal

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

func (*MsgAssignOperatorValidatorResponse) MarshalTo

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

func (*MsgAssignOperatorValidatorResponse) MarshalToSizedBuffer

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

func (*MsgAssignOperatorValidatorResponse) ProtoMessage

func (*MsgAssignOperatorValidatorResponse) ProtoMessage()

func (*MsgAssignOperatorValidatorResponse) Reset

func (*MsgAssignOperatorValidatorResponse) Size

func (*MsgAssignOperatorValidatorResponse) String

func (*MsgAssignOperatorValidatorResponse) Unmarshal

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

func (*MsgAssignOperatorValidatorResponse) XXX_DiscardUnknown

func (m *MsgAssignOperatorValidatorResponse) XXX_DiscardUnknown()

func (*MsgAssignOperatorValidatorResponse) XXX_Marshal

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

func (*MsgAssignOperatorValidatorResponse) XXX_Merge

func (*MsgAssignOperatorValidatorResponse) XXX_Size

func (*MsgAssignOperatorValidatorResponse) XXX_Unmarshal

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

type MsgAssignProofOperator

type MsgAssignProofOperator struct {
	Creator         string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId         int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	OperatorAddress string `protobuf:"bytes,3,opt,name=operatorAddress,proto3" json:"operatorAddress,omitempty"`
	ProofType       string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgAssignProofOperator) Descriptor

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

func (*MsgAssignProofOperator) GetChainId

func (m *MsgAssignProofOperator) GetChainId() int32

func (*MsgAssignProofOperator) GetCreator

func (m *MsgAssignProofOperator) GetCreator() string

func (*MsgAssignProofOperator) GetOperatorAddress

func (m *MsgAssignProofOperator) GetOperatorAddress() string

func (*MsgAssignProofOperator) GetProofType

func (m *MsgAssignProofOperator) GetProofType() string

func (*MsgAssignProofOperator) Marshal

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

func (*MsgAssignProofOperator) MarshalTo

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

func (*MsgAssignProofOperator) MarshalToSizedBuffer

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

func (*MsgAssignProofOperator) ProtoMessage

func (*MsgAssignProofOperator) ProtoMessage()

func (*MsgAssignProofOperator) Reset

func (m *MsgAssignProofOperator) Reset()

func (*MsgAssignProofOperator) Size

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

func (*MsgAssignProofOperator) String

func (m *MsgAssignProofOperator) String() string

func (*MsgAssignProofOperator) Unmarshal

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

func (*MsgAssignProofOperator) XXX_DiscardUnknown

func (m *MsgAssignProofOperator) XXX_DiscardUnknown()

func (*MsgAssignProofOperator) XXX_Marshal

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

func (*MsgAssignProofOperator) XXX_Merge

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

func (*MsgAssignProofOperator) XXX_Size

func (m *MsgAssignProofOperator) XXX_Size() int

func (*MsgAssignProofOperator) XXX_Unmarshal

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

type MsgAssignProofOperatorResponse

type MsgAssignProofOperatorResponse struct {
	OperatorIndex string `protobuf:"bytes,1,opt,name=operatorIndex,proto3" json:"operatorIndex,omitempty"`
}

func (*MsgAssignProofOperatorResponse) Descriptor

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

func (*MsgAssignProofOperatorResponse) GetOperatorIndex

func (m *MsgAssignProofOperatorResponse) GetOperatorIndex() string

func (*MsgAssignProofOperatorResponse) Marshal

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

func (*MsgAssignProofOperatorResponse) MarshalTo

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

func (*MsgAssignProofOperatorResponse) MarshalToSizedBuffer

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

func (*MsgAssignProofOperatorResponse) ProtoMessage

func (*MsgAssignProofOperatorResponse) ProtoMessage()

func (*MsgAssignProofOperatorResponse) Reset

func (m *MsgAssignProofOperatorResponse) Reset()

func (*MsgAssignProofOperatorResponse) Size

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

func (*MsgAssignProofOperatorResponse) String

func (*MsgAssignProofOperatorResponse) Unmarshal

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

func (*MsgAssignProofOperatorResponse) XXX_DiscardUnknown

func (m *MsgAssignProofOperatorResponse) XXX_DiscardUnknown()

func (*MsgAssignProofOperatorResponse) XXX_Marshal

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

func (*MsgAssignProofOperatorResponse) XXX_Merge

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

func (*MsgAssignProofOperatorResponse) XXX_Size

func (m *MsgAssignProofOperatorResponse) XXX_Size() int

func (*MsgAssignProofOperatorResponse) XXX_Unmarshal

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

type MsgAssignProofSequencer

type MsgAssignProofSequencer struct {
	Creator          string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId          int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	SequencerAddress string `protobuf:"bytes,3,opt,name=sequencerAddress,proto3" json:"sequencerAddress,omitempty"`
	ProofType        string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgAssignProofSequencer) Descriptor

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

func (*MsgAssignProofSequencer) GetChainId

func (m *MsgAssignProofSequencer) GetChainId() int32

func (*MsgAssignProofSequencer) GetCreator

func (m *MsgAssignProofSequencer) GetCreator() string

func (*MsgAssignProofSequencer) GetProofType

func (m *MsgAssignProofSequencer) GetProofType() string

func (*MsgAssignProofSequencer) GetSequencerAddress

func (m *MsgAssignProofSequencer) GetSequencerAddress() string

func (*MsgAssignProofSequencer) Marshal

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

func (*MsgAssignProofSequencer) MarshalTo

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

func (*MsgAssignProofSequencer) MarshalToSizedBuffer

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

func (*MsgAssignProofSequencer) ProtoMessage

func (*MsgAssignProofSequencer) ProtoMessage()

func (*MsgAssignProofSequencer) Reset

func (m *MsgAssignProofSequencer) Reset()

func (*MsgAssignProofSequencer) Size

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

func (*MsgAssignProofSequencer) String

func (m *MsgAssignProofSequencer) String() string

func (*MsgAssignProofSequencer) Unmarshal

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

func (*MsgAssignProofSequencer) XXX_DiscardUnknown

func (m *MsgAssignProofSequencer) XXX_DiscardUnknown()

func (*MsgAssignProofSequencer) XXX_Marshal

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

func (*MsgAssignProofSequencer) XXX_Merge

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

func (*MsgAssignProofSequencer) XXX_Size

func (m *MsgAssignProofSequencer) XXX_Size() int

func (*MsgAssignProofSequencer) XXX_Unmarshal

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

type MsgAssignProofSequencerResponse

type MsgAssignProofSequencerResponse struct {
	SequencerIndex string `protobuf:"bytes,1,opt,name=sequencerIndex,proto3" json:"sequencerIndex,omitempty"`
}

func (*MsgAssignProofSequencerResponse) Descriptor

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

func (*MsgAssignProofSequencerResponse) GetSequencerIndex

func (m *MsgAssignProofSequencerResponse) GetSequencerIndex() string

func (*MsgAssignProofSequencerResponse) Marshal

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

func (*MsgAssignProofSequencerResponse) MarshalTo

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

func (*MsgAssignProofSequencerResponse) MarshalToSizedBuffer

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

func (*MsgAssignProofSequencerResponse) ProtoMessage

func (*MsgAssignProofSequencerResponse) ProtoMessage()

func (*MsgAssignProofSequencerResponse) Reset

func (*MsgAssignProofSequencerResponse) Size

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

func (*MsgAssignProofSequencerResponse) String

func (*MsgAssignProofSequencerResponse) Unmarshal

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

func (*MsgAssignProofSequencerResponse) XXX_DiscardUnknown

func (m *MsgAssignProofSequencerResponse) XXX_DiscardUnknown()

func (*MsgAssignProofSequencerResponse) XXX_Marshal

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

func (*MsgAssignProofSequencerResponse) XXX_Merge

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

func (*MsgAssignProofSequencerResponse) XXX_Size

func (m *MsgAssignProofSequencerResponse) XXX_Size() int

func (*MsgAssignProofSequencerResponse) XXX_Unmarshal

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

type MsgAssignProofValidator

type MsgAssignProofValidator struct {
	Creator          string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId          int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ValidatorAddress string `protobuf:"bytes,3,opt,name=validatorAddress,proto3" json:"validatorAddress,omitempty"`
	ProofType        string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgAssignProofValidator) Descriptor

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

func (*MsgAssignProofValidator) GetChainId

func (m *MsgAssignProofValidator) GetChainId() int32

func (*MsgAssignProofValidator) GetCreator

func (m *MsgAssignProofValidator) GetCreator() string

func (*MsgAssignProofValidator) GetProofType

func (m *MsgAssignProofValidator) GetProofType() string

func (*MsgAssignProofValidator) GetValidatorAddress

func (m *MsgAssignProofValidator) GetValidatorAddress() string

func (*MsgAssignProofValidator) Marshal

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

func (*MsgAssignProofValidator) MarshalTo

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

func (*MsgAssignProofValidator) MarshalToSizedBuffer

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

func (*MsgAssignProofValidator) ProtoMessage

func (*MsgAssignProofValidator) ProtoMessage()

func (*MsgAssignProofValidator) Reset

func (m *MsgAssignProofValidator) Reset()

func (*MsgAssignProofValidator) Size

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

func (*MsgAssignProofValidator) String

func (m *MsgAssignProofValidator) String() string

func (*MsgAssignProofValidator) Unmarshal

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

func (*MsgAssignProofValidator) XXX_DiscardUnknown

func (m *MsgAssignProofValidator) XXX_DiscardUnknown()

func (*MsgAssignProofValidator) XXX_Marshal

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

func (*MsgAssignProofValidator) XXX_Merge

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

func (*MsgAssignProofValidator) XXX_Size

func (m *MsgAssignProofValidator) XXX_Size() int

func (*MsgAssignProofValidator) XXX_Unmarshal

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

type MsgAssignProofValidatorResponse

type MsgAssignProofValidatorResponse struct {
	ValidatorIndex string `protobuf:"bytes,1,opt,name=validatorIndex,proto3" json:"validatorIndex,omitempty"`
}

func (*MsgAssignProofValidatorResponse) Descriptor

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

func (*MsgAssignProofValidatorResponse) GetValidatorIndex

func (m *MsgAssignProofValidatorResponse) GetValidatorIndex() string

func (*MsgAssignProofValidatorResponse) Marshal

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

func (*MsgAssignProofValidatorResponse) MarshalTo

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

func (*MsgAssignProofValidatorResponse) MarshalToSizedBuffer

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

func (*MsgAssignProofValidatorResponse) ProtoMessage

func (*MsgAssignProofValidatorResponse) ProtoMessage()

func (*MsgAssignProofValidatorResponse) Reset

func (*MsgAssignProofValidatorResponse) Size

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

func (*MsgAssignProofValidatorResponse) String

func (*MsgAssignProofValidatorResponse) Unmarshal

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

func (*MsgAssignProofValidatorResponse) XXX_DiscardUnknown

func (m *MsgAssignProofValidatorResponse) XXX_DiscardUnknown()

func (*MsgAssignProofValidatorResponse) XXX_Marshal

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

func (*MsgAssignProofValidatorResponse) XXX_Merge

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

func (*MsgAssignProofValidatorResponse) XXX_Size

func (m *MsgAssignProofValidatorResponse) XXX_Size() int

func (*MsgAssignProofValidatorResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	CreateProof(ctx context.Context, in *MsgCreateProof, opts ...grpc.CallOption) (*MsgCreateProofResponse, error)
	AssignProofOperator(ctx context.Context, in *MsgAssignProofOperator, opts ...grpc.CallOption) (*MsgAssignProofOperatorResponse, error)
	AssignProofValidator(ctx context.Context, in *MsgAssignProofValidator, opts ...grpc.CallOption) (*MsgAssignProofValidatorResponse, error)
	AssignProofSequencer(ctx context.Context, in *MsgAssignProofSequencer, opts ...grpc.CallOption) (*MsgAssignProofSequencerResponse, error)
	InitChainRole(ctx context.Context, in *MsgInitChainRole, opts ...grpc.CallOption) (*MsgInitChainRoleResponse, error)
	InitChainConfig(ctx context.Context, in *MsgInitChainConfig, opts ...grpc.CallOption) (*MsgInitChainConfigResponse, error)
	RemoveProofOperator(ctx context.Context, in *MsgRemoveProofOperator, opts ...grpc.CallOption) (*MsgRemoveProofOperatorResponse, error)
	RemoveProofSequencer(ctx context.Context, in *MsgRemoveProofSequencer, opts ...grpc.CallOption) (*MsgRemoveProofSequencerResponse, error)
	RemoveProofValidator(ctx context.Context, in *MsgRemoveProofValidator, opts ...grpc.CallOption) (*MsgRemoveProofValidatorResponse, error)
	UpdateChainProofConfig(ctx context.Context, in *MsgUpdateChainProofConfig, opts ...grpc.CallOption) (*MsgUpdateChainProofConfigResponse, error)
	UpdateChainSyncConfig(ctx context.Context, in *MsgUpdateChainSyncConfig, opts ...grpc.CallOption) (*MsgUpdateChainSyncConfigResponse, error)
	EnableProofValidator(ctx context.Context, in *MsgEnableProofValidator, opts ...grpc.CallOption) (*MsgEnableProofValidatorResponse, error)
	DisableProofValidator(ctx context.Context, in *MsgDisableProofValidator, opts ...grpc.CallOption) (*MsgDisableProofValidatorResponse, error)
	AssignOperatorValidator(ctx context.Context, in *MsgAssignOperatorValidator, opts ...grpc.CallOption) (*MsgAssignOperatorValidatorResponse, error)
}

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 MsgCreateProof

type MsgCreateProof struct {
	Creator      string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId      int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType    string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	BlockHeight  uint64 `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	BlockHash    string `protobuf:"bytes,5,opt,name=blockHash,proto3" json:"blockHash,omitempty"`
	ProofHash    string `protobuf:"bytes,6,opt,name=proofHash,proto3" json:"proofHash,omitempty"`
	StoreAddress string `protobuf:"bytes,7,opt,name=storeAddress,proto3" json:"storeAddress,omitempty"`
}

func NewMsgCreateProof

func NewMsgCreateProof(creator string, chainId int32, proofType string, blockHeight uint64, blockHash string, proofHash string, storeAddress string) *MsgCreateProof

func (*MsgCreateProof) Descriptor

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

func (*MsgCreateProof) GetBlockHash

func (m *MsgCreateProof) GetBlockHash() string

func (*MsgCreateProof) GetBlockHeight

func (m *MsgCreateProof) GetBlockHeight() uint64

func (*MsgCreateProof) GetChainId

func (m *MsgCreateProof) GetChainId() int32

func (*MsgCreateProof) GetCreator

func (m *MsgCreateProof) GetCreator() string

func (*MsgCreateProof) GetProofHash

func (m *MsgCreateProof) GetProofHash() string

func (*MsgCreateProof) GetProofType

func (m *MsgCreateProof) GetProofType() string

func (*MsgCreateProof) GetSigners

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

func (*MsgCreateProof) GetStoreAddress

func (m *MsgCreateProof) GetStoreAddress() string

func (*MsgCreateProof) Marshal

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

func (*MsgCreateProof) MarshalTo

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

func (*MsgCreateProof) MarshalToSizedBuffer

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

func (*MsgCreateProof) ProtoMessage

func (*MsgCreateProof) ProtoMessage()

func (*MsgCreateProof) Reset

func (m *MsgCreateProof) Reset()

func (*MsgCreateProof) Size

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

func (*MsgCreateProof) String

func (m *MsgCreateProof) String() string

func (*MsgCreateProof) Type

func (msg *MsgCreateProof) Type() string

func (*MsgCreateProof) Unmarshal

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

func (*MsgCreateProof) ValidateBasic

func (msg *MsgCreateProof) ValidateBasic() error

func (*MsgCreateProof) XXX_DiscardUnknown

func (m *MsgCreateProof) XXX_DiscardUnknown()

func (*MsgCreateProof) XXX_Marshal

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

func (*MsgCreateProof) XXX_Merge

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

func (*MsgCreateProof) XXX_Size

func (m *MsgCreateProof) XXX_Size() int

func (*MsgCreateProof) XXX_Unmarshal

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

type MsgCreateProofResponse

type MsgCreateProofResponse struct {
	ProofIndex string `protobuf:"bytes,1,opt,name=proofIndex,proto3" json:"proofIndex,omitempty"`
}

func (*MsgCreateProofResponse) Descriptor

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

func (*MsgCreateProofResponse) GetProofIndex

func (m *MsgCreateProofResponse) GetProofIndex() string

func (*MsgCreateProofResponse) Marshal

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

func (*MsgCreateProofResponse) MarshalTo

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

func (*MsgCreateProofResponse) MarshalToSizedBuffer

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

func (*MsgCreateProofResponse) ProtoMessage

func (*MsgCreateProofResponse) ProtoMessage()

func (*MsgCreateProofResponse) Reset

func (m *MsgCreateProofResponse) Reset()

func (*MsgCreateProofResponse) Size

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

func (*MsgCreateProofResponse) String

func (m *MsgCreateProofResponse) String() string

func (*MsgCreateProofResponse) Unmarshal

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

func (*MsgCreateProofResponse) XXX_DiscardUnknown

func (m *MsgCreateProofResponse) XXX_DiscardUnknown()

func (*MsgCreateProofResponse) XXX_Marshal

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

func (*MsgCreateProofResponse) XXX_Merge

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

func (*MsgCreateProofResponse) XXX_Size

func (m *MsgCreateProofResponse) XXX_Size() int

func (*MsgCreateProofResponse) XXX_Unmarshal

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

type MsgDisableProofValidator

type MsgDisableProofValidator struct {
	Creator     string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId     int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType   string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	ValidatorId int32  `protobuf:"varint,4,opt,name=validatorId,proto3" json:"validatorId,omitempty"`
}

func (*MsgDisableProofValidator) Descriptor

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

func (*MsgDisableProofValidator) GetChainId

func (m *MsgDisableProofValidator) GetChainId() int32

func (*MsgDisableProofValidator) GetCreator

func (m *MsgDisableProofValidator) GetCreator() string

func (*MsgDisableProofValidator) GetProofType

func (m *MsgDisableProofValidator) GetProofType() string

func (*MsgDisableProofValidator) GetValidatorId

func (m *MsgDisableProofValidator) GetValidatorId() int32

func (*MsgDisableProofValidator) Marshal

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

func (*MsgDisableProofValidator) MarshalTo

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

func (*MsgDisableProofValidator) MarshalToSizedBuffer

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

func (*MsgDisableProofValidator) ProtoMessage

func (*MsgDisableProofValidator) ProtoMessage()

func (*MsgDisableProofValidator) Reset

func (m *MsgDisableProofValidator) Reset()

func (*MsgDisableProofValidator) Size

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

func (*MsgDisableProofValidator) String

func (m *MsgDisableProofValidator) String() string

func (*MsgDisableProofValidator) Unmarshal

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

func (*MsgDisableProofValidator) XXX_DiscardUnknown

func (m *MsgDisableProofValidator) XXX_DiscardUnknown()

func (*MsgDisableProofValidator) XXX_Marshal

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

func (*MsgDisableProofValidator) XXX_Merge

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

func (*MsgDisableProofValidator) XXX_Size

func (m *MsgDisableProofValidator) XXX_Size() int

func (*MsgDisableProofValidator) XXX_Unmarshal

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

type MsgDisableProofValidatorResponse

type MsgDisableProofValidatorResponse struct {
	ValidatorIndex    int32 `protobuf:"varint,1,opt,name=validatorIndex,proto3" json:"validatorIndex,omitempty"`
	ValidatorDisabled bool  `protobuf:"varint,2,opt,name=validatorDisabled,proto3" json:"validatorDisabled,omitempty"`
}

func (*MsgDisableProofValidatorResponse) Descriptor

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

func (*MsgDisableProofValidatorResponse) GetValidatorDisabled

func (m *MsgDisableProofValidatorResponse) GetValidatorDisabled() bool

func (*MsgDisableProofValidatorResponse) GetValidatorIndex

func (m *MsgDisableProofValidatorResponse) GetValidatorIndex() int32

func (*MsgDisableProofValidatorResponse) Marshal

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

func (*MsgDisableProofValidatorResponse) MarshalTo

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

func (*MsgDisableProofValidatorResponse) MarshalToSizedBuffer

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

func (*MsgDisableProofValidatorResponse) ProtoMessage

func (*MsgDisableProofValidatorResponse) ProtoMessage()

func (*MsgDisableProofValidatorResponse) Reset

func (*MsgDisableProofValidatorResponse) Size

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

func (*MsgDisableProofValidatorResponse) String

func (*MsgDisableProofValidatorResponse) Unmarshal

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

func (*MsgDisableProofValidatorResponse) XXX_DiscardUnknown

func (m *MsgDisableProofValidatorResponse) XXX_DiscardUnknown()

func (*MsgDisableProofValidatorResponse) XXX_Marshal

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

func (*MsgDisableProofValidatorResponse) XXX_Merge

func (*MsgDisableProofValidatorResponse) XXX_Size

func (m *MsgDisableProofValidatorResponse) XXX_Size() int

func (*MsgDisableProofValidatorResponse) XXX_Unmarshal

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

type MsgEnableProofValidator

type MsgEnableProofValidator struct {
	Creator     string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId     int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType   string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	ValidatorId int32  `protobuf:"varint,4,opt,name=validatorId,proto3" json:"validatorId,omitempty"`
}

func (*MsgEnableProofValidator) Descriptor

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

func (*MsgEnableProofValidator) GetChainId

func (m *MsgEnableProofValidator) GetChainId() int32

func (*MsgEnableProofValidator) GetCreator

func (m *MsgEnableProofValidator) GetCreator() string

func (*MsgEnableProofValidator) GetProofType

func (m *MsgEnableProofValidator) GetProofType() string

func (*MsgEnableProofValidator) GetValidatorId

func (m *MsgEnableProofValidator) GetValidatorId() int32

func (*MsgEnableProofValidator) Marshal

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

func (*MsgEnableProofValidator) MarshalTo

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

func (*MsgEnableProofValidator) MarshalToSizedBuffer

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

func (*MsgEnableProofValidator) ProtoMessage

func (*MsgEnableProofValidator) ProtoMessage()

func (*MsgEnableProofValidator) Reset

func (m *MsgEnableProofValidator) Reset()

func (*MsgEnableProofValidator) Size

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

func (*MsgEnableProofValidator) String

func (m *MsgEnableProofValidator) String() string

func (*MsgEnableProofValidator) Unmarshal

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

func (*MsgEnableProofValidator) XXX_DiscardUnknown

func (m *MsgEnableProofValidator) XXX_DiscardUnknown()

func (*MsgEnableProofValidator) XXX_Marshal

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

func (*MsgEnableProofValidator) XXX_Merge

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

func (*MsgEnableProofValidator) XXX_Size

func (m *MsgEnableProofValidator) XXX_Size() int

func (*MsgEnableProofValidator) XXX_Unmarshal

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

type MsgEnableProofValidatorResponse

type MsgEnableProofValidatorResponse struct {
	ValidatorIndex   string `protobuf:"bytes,1,opt,name=validatorIndex,proto3" json:"validatorIndex,omitempty"`
	ValidatorEnabled bool   `protobuf:"varint,2,opt,name=validatorEnabled,proto3" json:"validatorEnabled,omitempty"`
}

func (*MsgEnableProofValidatorResponse) Descriptor

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

func (*MsgEnableProofValidatorResponse) GetValidatorEnabled

func (m *MsgEnableProofValidatorResponse) GetValidatorEnabled() bool

func (*MsgEnableProofValidatorResponse) GetValidatorIndex

func (m *MsgEnableProofValidatorResponse) GetValidatorIndex() string

func (*MsgEnableProofValidatorResponse) Marshal

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

func (*MsgEnableProofValidatorResponse) MarshalTo

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

func (*MsgEnableProofValidatorResponse) MarshalToSizedBuffer

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

func (*MsgEnableProofValidatorResponse) ProtoMessage

func (*MsgEnableProofValidatorResponse) ProtoMessage()

func (*MsgEnableProofValidatorResponse) Reset

func (*MsgEnableProofValidatorResponse) Size

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

func (*MsgEnableProofValidatorResponse) String

func (*MsgEnableProofValidatorResponse) Unmarshal

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

func (*MsgEnableProofValidatorResponse) XXX_DiscardUnknown

func (m *MsgEnableProofValidatorResponse) XXX_DiscardUnknown()

func (*MsgEnableProofValidatorResponse) XXX_Marshal

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

func (*MsgEnableProofValidatorResponse) XXX_Merge

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

func (*MsgEnableProofValidatorResponse) XXX_Size

func (m *MsgEnableProofValidatorResponse) XXX_Size() int

func (*MsgEnableProofValidatorResponse) XXX_Unmarshal

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

type MsgInitChainConfig

type MsgInitChainConfig struct {
	Creator           string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId           int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType         string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	SrcBlockTimeSec   string `protobuf:"bytes,4,opt,name=srcBlockTimeSec,proto3" json:"srcBlockTimeSec,omitempty"`
	SnkBlockTimeSec   string `protobuf:"bytes,5,opt,name=snkBlockTimeSec,proto3" json:"snkBlockTimeSec,omitempty"`
	QuorumReq         int32  `protobuf:"varint,6,opt,name=quorumReq,proto3" json:"quorumReq,omitempty"`
	RewardAlloc       string `protobuf:"bytes,7,opt,name=rewardAlloc,proto3" json:"rewardAlloc,omitempty"`
	MinStakeReq       string `protobuf:"bytes,8,opt,name=minStakeReq,proto3" json:"minStakeReq,omitempty"`
	MinSubmissionsReq int32  `protobuf:"varint,9,opt,name=minSubmissionsReq,proto3" json:"minSubmissionsReq,omitempty"`
	SessionTimeSec    string `protobuf:"bytes,10,opt,name=sessionTimeSec,proto3" json:"sessionTimeSec,omitempty"`
	LiveMode          bool   `protobuf:"varint,11,opt,name=liveMode,proto3" json:"liveMode,omitempty"`
	SyncBlockLimit    uint64 `protobuf:"varint,12,opt,name=syncBlockLimit,proto3" json:"syncBlockLimit,omitempty"`
}

func (*MsgInitChainConfig) Descriptor

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

func (*MsgInitChainConfig) GetChainId

func (m *MsgInitChainConfig) GetChainId() int32

func (*MsgInitChainConfig) GetCreator

func (m *MsgInitChainConfig) GetCreator() string

func (*MsgInitChainConfig) GetLiveMode

func (m *MsgInitChainConfig) GetLiveMode() bool

func (*MsgInitChainConfig) GetMinStakeReq

func (m *MsgInitChainConfig) GetMinStakeReq() string

func (*MsgInitChainConfig) GetMinSubmissionsReq

func (m *MsgInitChainConfig) GetMinSubmissionsReq() int32

func (*MsgInitChainConfig) GetProofType

func (m *MsgInitChainConfig) GetProofType() string

func (*MsgInitChainConfig) GetQuorumReq

func (m *MsgInitChainConfig) GetQuorumReq() int32

func (*MsgInitChainConfig) GetRewardAlloc

func (m *MsgInitChainConfig) GetRewardAlloc() string

func (*MsgInitChainConfig) GetSessionTimeSec

func (m *MsgInitChainConfig) GetSessionTimeSec() string

func (*MsgInitChainConfig) GetSnkBlockTimeSec

func (m *MsgInitChainConfig) GetSnkBlockTimeSec() string

func (*MsgInitChainConfig) GetSrcBlockTimeSec

func (m *MsgInitChainConfig) GetSrcBlockTimeSec() string

func (*MsgInitChainConfig) GetSyncBlockLimit

func (m *MsgInitChainConfig) GetSyncBlockLimit() uint64

func (*MsgInitChainConfig) Marshal

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

func (*MsgInitChainConfig) MarshalTo

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

func (*MsgInitChainConfig) MarshalToSizedBuffer

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

func (*MsgInitChainConfig) ProtoMessage

func (*MsgInitChainConfig) ProtoMessage()

func (*MsgInitChainConfig) Reset

func (m *MsgInitChainConfig) Reset()

func (*MsgInitChainConfig) Size

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

func (*MsgInitChainConfig) String

func (m *MsgInitChainConfig) String() string

func (*MsgInitChainConfig) Unmarshal

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

func (*MsgInitChainConfig) XXX_DiscardUnknown

func (m *MsgInitChainConfig) XXX_DiscardUnknown()

func (*MsgInitChainConfig) XXX_Marshal

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

func (*MsgInitChainConfig) XXX_Merge

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

func (*MsgInitChainConfig) XXX_Size

func (m *MsgInitChainConfig) XXX_Size() int

func (*MsgInitChainConfig) XXX_Unmarshal

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

type MsgInitChainConfigResponse

type MsgInitChainConfigResponse struct {
	ChainConfigIndex string `protobuf:"bytes,1,opt,name=chainConfigIndex,proto3" json:"chainConfigIndex,omitempty"`
}

func (*MsgInitChainConfigResponse) Descriptor

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

func (*MsgInitChainConfigResponse) GetChainConfigIndex

func (m *MsgInitChainConfigResponse) GetChainConfigIndex() string

func (*MsgInitChainConfigResponse) Marshal

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

func (*MsgInitChainConfigResponse) MarshalTo

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

func (*MsgInitChainConfigResponse) MarshalToSizedBuffer

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

func (*MsgInitChainConfigResponse) ProtoMessage

func (*MsgInitChainConfigResponse) ProtoMessage()

func (*MsgInitChainConfigResponse) Reset

func (m *MsgInitChainConfigResponse) Reset()

func (*MsgInitChainConfigResponse) Size

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

func (*MsgInitChainConfigResponse) String

func (m *MsgInitChainConfigResponse) String() string

func (*MsgInitChainConfigResponse) Unmarshal

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

func (*MsgInitChainConfigResponse) XXX_DiscardUnknown

func (m *MsgInitChainConfigResponse) XXX_DiscardUnknown()

func (*MsgInitChainConfigResponse) XXX_Marshal

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

func (*MsgInitChainConfigResponse) XXX_Merge

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

func (*MsgInitChainConfigResponse) XXX_Size

func (m *MsgInitChainConfigResponse) XXX_Size() int

func (*MsgInitChainConfigResponse) XXX_Unmarshal

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

type MsgInitChainRole

type MsgInitChainRole struct {
	Creator        string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId        int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofSequencer string `protobuf:"bytes,3,opt,name=proofSequencer,proto3" json:"proofSequencer,omitempty"`
	ProofOperator  string `protobuf:"bytes,4,opt,name=proofOperator,proto3" json:"proofOperator,omitempty"`
	ProofValidator string `protobuf:"bytes,5,opt,name=proofValidator,proto3" json:"proofValidator,omitempty"`
	ProofType      string `protobuf:"bytes,6,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgInitChainRole) Descriptor

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

func (*MsgInitChainRole) GetChainId

func (m *MsgInitChainRole) GetChainId() int32

func (*MsgInitChainRole) GetCreator

func (m *MsgInitChainRole) GetCreator() string

func (*MsgInitChainRole) GetProofOperator

func (m *MsgInitChainRole) GetProofOperator() string

func (*MsgInitChainRole) GetProofSequencer

func (m *MsgInitChainRole) GetProofSequencer() string

func (*MsgInitChainRole) GetProofType

func (m *MsgInitChainRole) GetProofType() string

func (*MsgInitChainRole) GetProofValidator

func (m *MsgInitChainRole) GetProofValidator() string

func (*MsgInitChainRole) Marshal

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

func (*MsgInitChainRole) MarshalTo

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

func (*MsgInitChainRole) MarshalToSizedBuffer

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

func (*MsgInitChainRole) ProtoMessage

func (*MsgInitChainRole) ProtoMessage()

func (*MsgInitChainRole) Reset

func (m *MsgInitChainRole) Reset()

func (*MsgInitChainRole) Size

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

func (*MsgInitChainRole) String

func (m *MsgInitChainRole) String() string

func (*MsgInitChainRole) Unmarshal

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

func (*MsgInitChainRole) XXX_DiscardUnknown

func (m *MsgInitChainRole) XXX_DiscardUnknown()

func (*MsgInitChainRole) XXX_Marshal

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

func (*MsgInitChainRole) XXX_Merge

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

func (*MsgInitChainRole) XXX_Size

func (m *MsgInitChainRole) XXX_Size() int

func (*MsgInitChainRole) XXX_Unmarshal

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

type MsgInitChainRoleResponse

type MsgInitChainRoleResponse struct {
	ChainRoleIndex string `protobuf:"bytes,1,opt,name=chainRoleIndex,proto3" json:"chainRoleIndex,omitempty"`
}

func (*MsgInitChainRoleResponse) Descriptor

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

func (*MsgInitChainRoleResponse) GetChainRoleIndex

func (m *MsgInitChainRoleResponse) GetChainRoleIndex() string

func (*MsgInitChainRoleResponse) Marshal

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

func (*MsgInitChainRoleResponse) MarshalTo

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

func (*MsgInitChainRoleResponse) MarshalToSizedBuffer

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

func (*MsgInitChainRoleResponse) ProtoMessage

func (*MsgInitChainRoleResponse) ProtoMessage()

func (*MsgInitChainRoleResponse) Reset

func (m *MsgInitChainRoleResponse) Reset()

func (*MsgInitChainRoleResponse) Size

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

func (*MsgInitChainRoleResponse) String

func (m *MsgInitChainRoleResponse) String() string

func (*MsgInitChainRoleResponse) Unmarshal

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

func (*MsgInitChainRoleResponse) XXX_DiscardUnknown

func (m *MsgInitChainRoleResponse) XXX_DiscardUnknown()

func (*MsgInitChainRoleResponse) XXX_Marshal

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

func (*MsgInitChainRoleResponse) XXX_Merge

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

func (*MsgInitChainRoleResponse) XXX_Size

func (m *MsgInitChainRoleResponse) XXX_Size() int

func (*MsgInitChainRoleResponse) XXX_Unmarshal

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

type MsgRemoveProofOperator

type MsgRemoveProofOperator struct {
	Creator         string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId         int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	OperatorAddress string `protobuf:"bytes,3,opt,name=operatorAddress,proto3" json:"operatorAddress,omitempty"`
	ProofType       string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgRemoveProofOperator) Descriptor

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

func (*MsgRemoveProofOperator) GetChainId

func (m *MsgRemoveProofOperator) GetChainId() int32

func (*MsgRemoveProofOperator) GetCreator

func (m *MsgRemoveProofOperator) GetCreator() string

func (*MsgRemoveProofOperator) GetOperatorAddress

func (m *MsgRemoveProofOperator) GetOperatorAddress() string

func (*MsgRemoveProofOperator) GetProofType

func (m *MsgRemoveProofOperator) GetProofType() string

func (*MsgRemoveProofOperator) Marshal

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

func (*MsgRemoveProofOperator) MarshalTo

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

func (*MsgRemoveProofOperator) MarshalToSizedBuffer

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

func (*MsgRemoveProofOperator) ProtoMessage

func (*MsgRemoveProofOperator) ProtoMessage()

func (*MsgRemoveProofOperator) Reset

func (m *MsgRemoveProofOperator) Reset()

func (*MsgRemoveProofOperator) Size

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

func (*MsgRemoveProofOperator) String

func (m *MsgRemoveProofOperator) String() string

func (*MsgRemoveProofOperator) Unmarshal

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

func (*MsgRemoveProofOperator) XXX_DiscardUnknown

func (m *MsgRemoveProofOperator) XXX_DiscardUnknown()

func (*MsgRemoveProofOperator) XXX_Marshal

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

func (*MsgRemoveProofOperator) XXX_Merge

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

func (*MsgRemoveProofOperator) XXX_Size

func (m *MsgRemoveProofOperator) XXX_Size() int

func (*MsgRemoveProofOperator) XXX_Unmarshal

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

type MsgRemoveProofOperatorResponse

type MsgRemoveProofOperatorResponse struct {
	OperatorIndex string `protobuf:"bytes,1,opt,name=operatorIndex,proto3" json:"operatorIndex,omitempty"`
}

func (*MsgRemoveProofOperatorResponse) Descriptor

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

func (*MsgRemoveProofOperatorResponse) GetOperatorIndex

func (m *MsgRemoveProofOperatorResponse) GetOperatorIndex() string

func (*MsgRemoveProofOperatorResponse) Marshal

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

func (*MsgRemoveProofOperatorResponse) MarshalTo

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

func (*MsgRemoveProofOperatorResponse) MarshalToSizedBuffer

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

func (*MsgRemoveProofOperatorResponse) ProtoMessage

func (*MsgRemoveProofOperatorResponse) ProtoMessage()

func (*MsgRemoveProofOperatorResponse) Reset

func (m *MsgRemoveProofOperatorResponse) Reset()

func (*MsgRemoveProofOperatorResponse) Size

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

func (*MsgRemoveProofOperatorResponse) String

func (*MsgRemoveProofOperatorResponse) Unmarshal

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

func (*MsgRemoveProofOperatorResponse) XXX_DiscardUnknown

func (m *MsgRemoveProofOperatorResponse) XXX_DiscardUnknown()

func (*MsgRemoveProofOperatorResponse) XXX_Marshal

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

func (*MsgRemoveProofOperatorResponse) XXX_Merge

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

func (*MsgRemoveProofOperatorResponse) XXX_Size

func (m *MsgRemoveProofOperatorResponse) XXX_Size() int

func (*MsgRemoveProofOperatorResponse) XXX_Unmarshal

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

type MsgRemoveProofSequencer

type MsgRemoveProofSequencer struct {
	Creator          string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId          int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	SequencerAddress string `protobuf:"bytes,3,opt,name=sequencerAddress,proto3" json:"sequencerAddress,omitempty"`
	ProofType        string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgRemoveProofSequencer) Descriptor

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

func (*MsgRemoveProofSequencer) GetChainId

func (m *MsgRemoveProofSequencer) GetChainId() int32

func (*MsgRemoveProofSequencer) GetCreator

func (m *MsgRemoveProofSequencer) GetCreator() string

func (*MsgRemoveProofSequencer) GetProofType

func (m *MsgRemoveProofSequencer) GetProofType() string

func (*MsgRemoveProofSequencer) GetSequencerAddress

func (m *MsgRemoveProofSequencer) GetSequencerAddress() string

func (*MsgRemoveProofSequencer) Marshal

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

func (*MsgRemoveProofSequencer) MarshalTo

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

func (*MsgRemoveProofSequencer) MarshalToSizedBuffer

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

func (*MsgRemoveProofSequencer) ProtoMessage

func (*MsgRemoveProofSequencer) ProtoMessage()

func (*MsgRemoveProofSequencer) Reset

func (m *MsgRemoveProofSequencer) Reset()

func (*MsgRemoveProofSequencer) Size

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

func (*MsgRemoveProofSequencer) String

func (m *MsgRemoveProofSequencer) String() string

func (*MsgRemoveProofSequencer) Unmarshal

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

func (*MsgRemoveProofSequencer) XXX_DiscardUnknown

func (m *MsgRemoveProofSequencer) XXX_DiscardUnknown()

func (*MsgRemoveProofSequencer) XXX_Marshal

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

func (*MsgRemoveProofSequencer) XXX_Merge

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

func (*MsgRemoveProofSequencer) XXX_Size

func (m *MsgRemoveProofSequencer) XXX_Size() int

func (*MsgRemoveProofSequencer) XXX_Unmarshal

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

type MsgRemoveProofSequencerResponse

type MsgRemoveProofSequencerResponse struct {
	SequencerIndex string `protobuf:"bytes,1,opt,name=sequencerIndex,proto3" json:"sequencerIndex,omitempty"`
}

func (*MsgRemoveProofSequencerResponse) Descriptor

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

func (*MsgRemoveProofSequencerResponse) GetSequencerIndex

func (m *MsgRemoveProofSequencerResponse) GetSequencerIndex() string

func (*MsgRemoveProofSequencerResponse) Marshal

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

func (*MsgRemoveProofSequencerResponse) MarshalTo

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

func (*MsgRemoveProofSequencerResponse) MarshalToSizedBuffer

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

func (*MsgRemoveProofSequencerResponse) ProtoMessage

func (*MsgRemoveProofSequencerResponse) ProtoMessage()

func (*MsgRemoveProofSequencerResponse) Reset

func (*MsgRemoveProofSequencerResponse) Size

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

func (*MsgRemoveProofSequencerResponse) String

func (*MsgRemoveProofSequencerResponse) Unmarshal

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

func (*MsgRemoveProofSequencerResponse) XXX_DiscardUnknown

func (m *MsgRemoveProofSequencerResponse) XXX_DiscardUnknown()

func (*MsgRemoveProofSequencerResponse) XXX_Marshal

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

func (*MsgRemoveProofSequencerResponse) XXX_Merge

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

func (*MsgRemoveProofSequencerResponse) XXX_Size

func (m *MsgRemoveProofSequencerResponse) XXX_Size() int

func (*MsgRemoveProofSequencerResponse) XXX_Unmarshal

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

type MsgRemoveProofValidator

type MsgRemoveProofValidator struct {
	Creator          string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId          int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ValidatorAddress string `protobuf:"bytes,3,opt,name=validatorAddress,proto3" json:"validatorAddress,omitempty"`
	ProofType        string `protobuf:"bytes,4,opt,name=proofType,proto3" json:"proofType,omitempty"`
}

func (*MsgRemoveProofValidator) Descriptor

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

func (*MsgRemoveProofValidator) GetChainId

func (m *MsgRemoveProofValidator) GetChainId() int32

func (*MsgRemoveProofValidator) GetCreator

func (m *MsgRemoveProofValidator) GetCreator() string

func (*MsgRemoveProofValidator) GetProofType

func (m *MsgRemoveProofValidator) GetProofType() string

func (*MsgRemoveProofValidator) GetValidatorAddress

func (m *MsgRemoveProofValidator) GetValidatorAddress() string

func (*MsgRemoveProofValidator) Marshal

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

func (*MsgRemoveProofValidator) MarshalTo

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

func (*MsgRemoveProofValidator) MarshalToSizedBuffer

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

func (*MsgRemoveProofValidator) ProtoMessage

func (*MsgRemoveProofValidator) ProtoMessage()

func (*MsgRemoveProofValidator) Reset

func (m *MsgRemoveProofValidator) Reset()

func (*MsgRemoveProofValidator) Size

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

func (*MsgRemoveProofValidator) String

func (m *MsgRemoveProofValidator) String() string

func (*MsgRemoveProofValidator) Unmarshal

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

func (*MsgRemoveProofValidator) XXX_DiscardUnknown

func (m *MsgRemoveProofValidator) XXX_DiscardUnknown()

func (*MsgRemoveProofValidator) XXX_Marshal

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

func (*MsgRemoveProofValidator) XXX_Merge

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

func (*MsgRemoveProofValidator) XXX_Size

func (m *MsgRemoveProofValidator) XXX_Size() int

func (*MsgRemoveProofValidator) XXX_Unmarshal

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

type MsgRemoveProofValidatorResponse

type MsgRemoveProofValidatorResponse struct {
	ValidatorIndex string `protobuf:"bytes,1,opt,name=validatorIndex,proto3" json:"validatorIndex,omitempty"`
}

func (*MsgRemoveProofValidatorResponse) Descriptor

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

func (*MsgRemoveProofValidatorResponse) GetValidatorIndex

func (m *MsgRemoveProofValidatorResponse) GetValidatorIndex() string

func (*MsgRemoveProofValidatorResponse) Marshal

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

func (*MsgRemoveProofValidatorResponse) MarshalTo

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

func (*MsgRemoveProofValidatorResponse) MarshalToSizedBuffer

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

func (*MsgRemoveProofValidatorResponse) ProtoMessage

func (*MsgRemoveProofValidatorResponse) ProtoMessage()

func (*MsgRemoveProofValidatorResponse) Reset

func (*MsgRemoveProofValidatorResponse) Size

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

func (*MsgRemoveProofValidatorResponse) String

func (*MsgRemoveProofValidatorResponse) Unmarshal

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

func (*MsgRemoveProofValidatorResponse) XXX_DiscardUnknown

func (m *MsgRemoveProofValidatorResponse) XXX_DiscardUnknown()

func (*MsgRemoveProofValidatorResponse) XXX_Marshal

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

func (*MsgRemoveProofValidatorResponse) XXX_Merge

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

func (*MsgRemoveProofValidatorResponse) XXX_Size

func (m *MsgRemoveProofValidatorResponse) XXX_Size() int

func (*MsgRemoveProofValidatorResponse) XXX_Unmarshal

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

type MsgServer

MsgServer is the server API for Msg service.

type MsgUpdateChainProofConfig

type MsgUpdateChainProofConfig struct {
	Creator           string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId           int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType         string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	QuorumReq         int32  `protobuf:"varint,4,opt,name=quorumReq,proto3" json:"quorumReq,omitempty"`
	RewardAlloc       string `protobuf:"bytes,5,opt,name=rewardAlloc,proto3" json:"rewardAlloc,omitempty"`
	MinStakeReq       string `protobuf:"bytes,6,opt,name=minStakeReq,proto3" json:"minStakeReq,omitempty"`
	MinSubmissionsReq int32  `protobuf:"varint,7,opt,name=minSubmissionsReq,proto3" json:"minSubmissionsReq,omitempty"`
	SessionTimeSec    string `protobuf:"bytes,8,opt,name=sessionTimeSec,proto3" json:"sessionTimeSec,omitempty"`
	LiveMode          bool   `protobuf:"varint,9,opt,name=liveMode,proto3" json:"liveMode,omitempty"`
}

func (*MsgUpdateChainProofConfig) Descriptor

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

func (*MsgUpdateChainProofConfig) GetChainId

func (m *MsgUpdateChainProofConfig) GetChainId() int32

func (*MsgUpdateChainProofConfig) GetCreator

func (m *MsgUpdateChainProofConfig) GetCreator() string

func (*MsgUpdateChainProofConfig) GetLiveMode

func (m *MsgUpdateChainProofConfig) GetLiveMode() bool

func (*MsgUpdateChainProofConfig) GetMinStakeReq

func (m *MsgUpdateChainProofConfig) GetMinStakeReq() string

func (*MsgUpdateChainProofConfig) GetMinSubmissionsReq

func (m *MsgUpdateChainProofConfig) GetMinSubmissionsReq() int32

func (*MsgUpdateChainProofConfig) GetProofType

func (m *MsgUpdateChainProofConfig) GetProofType() string

func (*MsgUpdateChainProofConfig) GetQuorumReq

func (m *MsgUpdateChainProofConfig) GetQuorumReq() int32

func (*MsgUpdateChainProofConfig) GetRewardAlloc

func (m *MsgUpdateChainProofConfig) GetRewardAlloc() string

func (*MsgUpdateChainProofConfig) GetSessionTimeSec

func (m *MsgUpdateChainProofConfig) GetSessionTimeSec() string

func (*MsgUpdateChainProofConfig) Marshal

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

func (*MsgUpdateChainProofConfig) MarshalTo

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

func (*MsgUpdateChainProofConfig) MarshalToSizedBuffer

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

func (*MsgUpdateChainProofConfig) ProtoMessage

func (*MsgUpdateChainProofConfig) ProtoMessage()

func (*MsgUpdateChainProofConfig) Reset

func (m *MsgUpdateChainProofConfig) Reset()

func (*MsgUpdateChainProofConfig) Size

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

func (*MsgUpdateChainProofConfig) String

func (m *MsgUpdateChainProofConfig) String() string

func (*MsgUpdateChainProofConfig) Unmarshal

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

func (*MsgUpdateChainProofConfig) XXX_DiscardUnknown

func (m *MsgUpdateChainProofConfig) XXX_DiscardUnknown()

func (*MsgUpdateChainProofConfig) XXX_Marshal

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

func (*MsgUpdateChainProofConfig) XXX_Merge

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

func (*MsgUpdateChainProofConfig) XXX_Size

func (m *MsgUpdateChainProofConfig) XXX_Size() int

func (*MsgUpdateChainProofConfig) XXX_Unmarshal

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

type MsgUpdateChainProofConfigResponse

type MsgUpdateChainProofConfigResponse struct {
	ChainConfigIndex string `protobuf:"bytes,1,opt,name=chainConfigIndex,proto3" json:"chainConfigIndex,omitempty"`
}

func (*MsgUpdateChainProofConfigResponse) Descriptor

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

func (*MsgUpdateChainProofConfigResponse) GetChainConfigIndex

func (m *MsgUpdateChainProofConfigResponse) GetChainConfigIndex() string

func (*MsgUpdateChainProofConfigResponse) Marshal

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

func (*MsgUpdateChainProofConfigResponse) MarshalTo

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

func (*MsgUpdateChainProofConfigResponse) MarshalToSizedBuffer

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

func (*MsgUpdateChainProofConfigResponse) ProtoMessage

func (*MsgUpdateChainProofConfigResponse) ProtoMessage()

func (*MsgUpdateChainProofConfigResponse) Reset

func (*MsgUpdateChainProofConfigResponse) Size

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

func (*MsgUpdateChainProofConfigResponse) String

func (*MsgUpdateChainProofConfigResponse) Unmarshal

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

func (*MsgUpdateChainProofConfigResponse) XXX_DiscardUnknown

func (m *MsgUpdateChainProofConfigResponse) XXX_DiscardUnknown()

func (*MsgUpdateChainProofConfigResponse) XXX_Marshal

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

func (*MsgUpdateChainProofConfigResponse) XXX_Merge

func (*MsgUpdateChainProofConfigResponse) XXX_Size

func (m *MsgUpdateChainProofConfigResponse) XXX_Size() int

func (*MsgUpdateChainProofConfigResponse) XXX_Unmarshal

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

type MsgUpdateChainSyncConfig

type MsgUpdateChainSyncConfig struct {
	Creator         string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId         int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType       string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	SrcBlockTimeSec string `protobuf:"bytes,4,opt,name=srcBlockTimeSec,proto3" json:"srcBlockTimeSec,omitempty"`
	SnkBlockTimeSec string `protobuf:"bytes,5,opt,name=snkBlockTimeSec,proto3" json:"snkBlockTimeSec,omitempty"`
	SyncBlockLimit  uint64 `protobuf:"varint,6,opt,name=syncBlockLimit,proto3" json:"syncBlockLimit,omitempty"`
	SyncLagLimit    uint64 `protobuf:"varint,7,opt,name=syncLagLimit,proto3" json:"syncLagLimit,omitempty"`
	BridgeTxDayFreq int32  `protobuf:"varint,8,opt,name=bridgeTxDayFreq,proto3" json:"bridgeTxDayFreq,omitempty"`
}

func (*MsgUpdateChainSyncConfig) Descriptor

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

func (*MsgUpdateChainSyncConfig) GetBridgeTxDayFreq

func (m *MsgUpdateChainSyncConfig) GetBridgeTxDayFreq() int32

func (*MsgUpdateChainSyncConfig) GetChainId

func (m *MsgUpdateChainSyncConfig) GetChainId() int32

func (*MsgUpdateChainSyncConfig) GetCreator

func (m *MsgUpdateChainSyncConfig) GetCreator() string

func (*MsgUpdateChainSyncConfig) GetProofType

func (m *MsgUpdateChainSyncConfig) GetProofType() string

func (*MsgUpdateChainSyncConfig) GetSnkBlockTimeSec

func (m *MsgUpdateChainSyncConfig) GetSnkBlockTimeSec() string

func (*MsgUpdateChainSyncConfig) GetSrcBlockTimeSec

func (m *MsgUpdateChainSyncConfig) GetSrcBlockTimeSec() string

func (*MsgUpdateChainSyncConfig) GetSyncBlockLimit

func (m *MsgUpdateChainSyncConfig) GetSyncBlockLimit() uint64

func (*MsgUpdateChainSyncConfig) GetSyncLagLimit

func (m *MsgUpdateChainSyncConfig) GetSyncLagLimit() uint64

func (*MsgUpdateChainSyncConfig) Marshal

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

func (*MsgUpdateChainSyncConfig) MarshalTo

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

func (*MsgUpdateChainSyncConfig) MarshalToSizedBuffer

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

func (*MsgUpdateChainSyncConfig) ProtoMessage

func (*MsgUpdateChainSyncConfig) ProtoMessage()

func (*MsgUpdateChainSyncConfig) Reset

func (m *MsgUpdateChainSyncConfig) Reset()

func (*MsgUpdateChainSyncConfig) Size

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

func (*MsgUpdateChainSyncConfig) String

func (m *MsgUpdateChainSyncConfig) String() string

func (*MsgUpdateChainSyncConfig) Unmarshal

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

func (*MsgUpdateChainSyncConfig) XXX_DiscardUnknown

func (m *MsgUpdateChainSyncConfig) XXX_DiscardUnknown()

func (*MsgUpdateChainSyncConfig) XXX_Marshal

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

func (*MsgUpdateChainSyncConfig) XXX_Merge

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

func (*MsgUpdateChainSyncConfig) XXX_Size

func (m *MsgUpdateChainSyncConfig) XXX_Size() int

func (*MsgUpdateChainSyncConfig) XXX_Unmarshal

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

type MsgUpdateChainSyncConfigResponse

type MsgUpdateChainSyncConfigResponse struct {
	ChainConfigIndex string `protobuf:"bytes,1,opt,name=chainConfigIndex,proto3" json:"chainConfigIndex,omitempty"`
}

func (*MsgUpdateChainSyncConfigResponse) Descriptor

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

func (*MsgUpdateChainSyncConfigResponse) GetChainConfigIndex

func (m *MsgUpdateChainSyncConfigResponse) GetChainConfigIndex() string

func (*MsgUpdateChainSyncConfigResponse) Marshal

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

func (*MsgUpdateChainSyncConfigResponse) MarshalTo

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

func (*MsgUpdateChainSyncConfigResponse) MarshalToSizedBuffer

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

func (*MsgUpdateChainSyncConfigResponse) ProtoMessage

func (*MsgUpdateChainSyncConfigResponse) ProtoMessage()

func (*MsgUpdateChainSyncConfigResponse) Reset

func (*MsgUpdateChainSyncConfigResponse) Size

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

func (*MsgUpdateChainSyncConfigResponse) String

func (*MsgUpdateChainSyncConfigResponse) Unmarshal

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

func (*MsgUpdateChainSyncConfigResponse) XXX_DiscardUnknown

func (m *MsgUpdateChainSyncConfigResponse) XXX_DiscardUnknown()

func (*MsgUpdateChainSyncConfigResponse) XXX_Marshal

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

func (*MsgUpdateChainSyncConfigResponse) XXX_Merge

func (*MsgUpdateChainSyncConfigResponse) XXX_Size

func (m *MsgUpdateChainSyncConfigResponse) XXX_Size() int

func (*MsgUpdateChainSyncConfigResponse) XXX_Unmarshal

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

type Params

type Params struct {
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryAllLiveProofSessionRequest

type QueryAllLiveProofSessionRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllLiveProofSessionRequest) Descriptor

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

func (*QueryAllLiveProofSessionRequest) GetPagination

func (*QueryAllLiveProofSessionRequest) Marshal

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

func (*QueryAllLiveProofSessionRequest) MarshalTo

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

func (*QueryAllLiveProofSessionRequest) MarshalToSizedBuffer

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

func (*QueryAllLiveProofSessionRequest) ProtoMessage

func (*QueryAllLiveProofSessionRequest) ProtoMessage()

func (*QueryAllLiveProofSessionRequest) Reset

func (*QueryAllLiveProofSessionRequest) Size

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

func (*QueryAllLiveProofSessionRequest) String

func (*QueryAllLiveProofSessionRequest) Unmarshal

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

func (*QueryAllLiveProofSessionRequest) XXX_DiscardUnknown

func (m *QueryAllLiveProofSessionRequest) XXX_DiscardUnknown()

func (*QueryAllLiveProofSessionRequest) XXX_Marshal

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

func (*QueryAllLiveProofSessionRequest) XXX_Merge

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

func (*QueryAllLiveProofSessionRequest) XXX_Size

func (m *QueryAllLiveProofSessionRequest) XXX_Size() int

func (*QueryAllLiveProofSessionRequest) XXX_Unmarshal

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

type QueryAllLiveProofSessionResponse

type QueryAllLiveProofSessionResponse struct {
	LiveProofSession []LiveProofSession  `protobuf:"bytes,1,rep,name=liveProofSession,proto3" json:"liveProofSession"`
	Pagination       *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllLiveProofSessionResponse) Descriptor

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

func (*QueryAllLiveProofSessionResponse) GetLiveProofSession

func (m *QueryAllLiveProofSessionResponse) GetLiveProofSession() []LiveProofSession

func (*QueryAllLiveProofSessionResponse) GetPagination

func (*QueryAllLiveProofSessionResponse) Marshal

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

func (*QueryAllLiveProofSessionResponse) MarshalTo

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

func (*QueryAllLiveProofSessionResponse) MarshalToSizedBuffer

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

func (*QueryAllLiveProofSessionResponse) ProtoMessage

func (*QueryAllLiveProofSessionResponse) ProtoMessage()

func (*QueryAllLiveProofSessionResponse) Reset

func (*QueryAllLiveProofSessionResponse) Size

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

func (*QueryAllLiveProofSessionResponse) String

func (*QueryAllLiveProofSessionResponse) Unmarshal

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

func (*QueryAllLiveProofSessionResponse) XXX_DiscardUnknown

func (m *QueryAllLiveProofSessionResponse) XXX_DiscardUnknown()

func (*QueryAllLiveProofSessionResponse) XXX_Marshal

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

func (*QueryAllLiveProofSessionResponse) XXX_Merge

func (*QueryAllLiveProofSessionResponse) XXX_Size

func (m *QueryAllLiveProofSessionResponse) XXX_Size() int

func (*QueryAllLiveProofSessionResponse) XXX_Unmarshal

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

type QueryAllStoredChainConfigRequest

type QueryAllStoredChainConfigRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredChainConfigRequest) Descriptor

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

func (*QueryAllStoredChainConfigRequest) GetPagination

func (*QueryAllStoredChainConfigRequest) Marshal

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

func (*QueryAllStoredChainConfigRequest) MarshalTo

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

func (*QueryAllStoredChainConfigRequest) MarshalToSizedBuffer

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

func (*QueryAllStoredChainConfigRequest) ProtoMessage

func (*QueryAllStoredChainConfigRequest) ProtoMessage()

func (*QueryAllStoredChainConfigRequest) Reset

func (*QueryAllStoredChainConfigRequest) Size

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

func (*QueryAllStoredChainConfigRequest) String

func (*QueryAllStoredChainConfigRequest) Unmarshal

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

func (*QueryAllStoredChainConfigRequest) XXX_DiscardUnknown

func (m *QueryAllStoredChainConfigRequest) XXX_DiscardUnknown()

func (*QueryAllStoredChainConfigRequest) XXX_Marshal

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

func (*QueryAllStoredChainConfigRequest) XXX_Merge

func (*QueryAllStoredChainConfigRequest) XXX_Size

func (m *QueryAllStoredChainConfigRequest) XXX_Size() int

func (*QueryAllStoredChainConfigRequest) XXX_Unmarshal

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

type QueryAllStoredChainConfigResponse

type QueryAllStoredChainConfigResponse struct {
	StoredChainConfig []StoredChainConfig `protobuf:"bytes,1,rep,name=storedChainConfig,proto3" json:"storedChainConfig"`
	Pagination        *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredChainConfigResponse) Descriptor

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

func (*QueryAllStoredChainConfigResponse) GetPagination

func (*QueryAllStoredChainConfigResponse) GetStoredChainConfig

func (m *QueryAllStoredChainConfigResponse) GetStoredChainConfig() []StoredChainConfig

func (*QueryAllStoredChainConfigResponse) Marshal

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

func (*QueryAllStoredChainConfigResponse) MarshalTo

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

func (*QueryAllStoredChainConfigResponse) MarshalToSizedBuffer

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

func (*QueryAllStoredChainConfigResponse) ProtoMessage

func (*QueryAllStoredChainConfigResponse) ProtoMessage()

func (*QueryAllStoredChainConfigResponse) Reset

func (*QueryAllStoredChainConfigResponse) Size

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

func (*QueryAllStoredChainConfigResponse) String

func (*QueryAllStoredChainConfigResponse) Unmarshal

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

func (*QueryAllStoredChainConfigResponse) XXX_DiscardUnknown

func (m *QueryAllStoredChainConfigResponse) XXX_DiscardUnknown()

func (*QueryAllStoredChainConfigResponse) XXX_Marshal

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

func (*QueryAllStoredChainConfigResponse) XXX_Merge

func (*QueryAllStoredChainConfigResponse) XXX_Size

func (m *QueryAllStoredChainConfigResponse) XXX_Size() int

func (*QueryAllStoredChainConfigResponse) XXX_Unmarshal

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

type QueryAllStoredChainRoleRequest

type QueryAllStoredChainRoleRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredChainRoleRequest) Descriptor

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

func (*QueryAllStoredChainRoleRequest) GetPagination

func (m *QueryAllStoredChainRoleRequest) GetPagination() *query.PageRequest

func (*QueryAllStoredChainRoleRequest) Marshal

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

func (*QueryAllStoredChainRoleRequest) MarshalTo

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

func (*QueryAllStoredChainRoleRequest) MarshalToSizedBuffer

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

func (*QueryAllStoredChainRoleRequest) ProtoMessage

func (*QueryAllStoredChainRoleRequest) ProtoMessage()

func (*QueryAllStoredChainRoleRequest) Reset

func (m *QueryAllStoredChainRoleRequest) Reset()

func (*QueryAllStoredChainRoleRequest) Size

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

func (*QueryAllStoredChainRoleRequest) String

func (*QueryAllStoredChainRoleRequest) Unmarshal

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

func (*QueryAllStoredChainRoleRequest) XXX_DiscardUnknown

func (m *QueryAllStoredChainRoleRequest) XXX_DiscardUnknown()

func (*QueryAllStoredChainRoleRequest) XXX_Marshal

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

func (*QueryAllStoredChainRoleRequest) XXX_Merge

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

func (*QueryAllStoredChainRoleRequest) XXX_Size

func (m *QueryAllStoredChainRoleRequest) XXX_Size() int

func (*QueryAllStoredChainRoleRequest) XXX_Unmarshal

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

type QueryAllStoredChainRoleResponse

type QueryAllStoredChainRoleResponse struct {
	StoredChainRole []StoredChainRole   `protobuf:"bytes,1,rep,name=storedChainRole,proto3" json:"storedChainRole"`
	Pagination      *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredChainRoleResponse) Descriptor

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

func (*QueryAllStoredChainRoleResponse) GetPagination

func (*QueryAllStoredChainRoleResponse) GetStoredChainRole

func (m *QueryAllStoredChainRoleResponse) GetStoredChainRole() []StoredChainRole

func (*QueryAllStoredChainRoleResponse) Marshal

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

func (*QueryAllStoredChainRoleResponse) MarshalTo

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

func (*QueryAllStoredChainRoleResponse) MarshalToSizedBuffer

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

func (*QueryAllStoredChainRoleResponse) ProtoMessage

func (*QueryAllStoredChainRoleResponse) ProtoMessage()

func (*QueryAllStoredChainRoleResponse) Reset

func (*QueryAllStoredChainRoleResponse) Size

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

func (*QueryAllStoredChainRoleResponse) String

func (*QueryAllStoredChainRoleResponse) Unmarshal

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

func (*QueryAllStoredChainRoleResponse) XXX_DiscardUnknown

func (m *QueryAllStoredChainRoleResponse) XXX_DiscardUnknown()

func (*QueryAllStoredChainRoleResponse) XXX_Marshal

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

func (*QueryAllStoredChainRoleResponse) XXX_Merge

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

func (*QueryAllStoredChainRoleResponse) XXX_Size

func (m *QueryAllStoredChainRoleResponse) XXX_Size() int

func (*QueryAllStoredChainRoleResponse) XXX_Unmarshal

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

type QueryAllStoredProofSessionRequest

type QueryAllStoredProofSessionRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredProofSessionRequest) Descriptor

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

func (*QueryAllStoredProofSessionRequest) GetPagination

func (*QueryAllStoredProofSessionRequest) Marshal

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

func (*QueryAllStoredProofSessionRequest) MarshalTo

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

func (*QueryAllStoredProofSessionRequest) MarshalToSizedBuffer

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

func (*QueryAllStoredProofSessionRequest) ProtoMessage

func (*QueryAllStoredProofSessionRequest) ProtoMessage()

func (*QueryAllStoredProofSessionRequest) Reset

func (*QueryAllStoredProofSessionRequest) Size

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

func (*QueryAllStoredProofSessionRequest) String

func (*QueryAllStoredProofSessionRequest) Unmarshal

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

func (*QueryAllStoredProofSessionRequest) XXX_DiscardUnknown

func (m *QueryAllStoredProofSessionRequest) XXX_DiscardUnknown()

func (*QueryAllStoredProofSessionRequest) XXX_Marshal

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

func (*QueryAllStoredProofSessionRequest) XXX_Merge

func (*QueryAllStoredProofSessionRequest) XXX_Size

func (m *QueryAllStoredProofSessionRequest) XXX_Size() int

func (*QueryAllStoredProofSessionRequest) XXX_Unmarshal

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

type QueryAllStoredProofSessionResponse

type QueryAllStoredProofSessionResponse struct {
	StoredProofSession []StoredProofSession `protobuf:"bytes,1,rep,name=storedProofSession,proto3" json:"storedProofSession"`
	Pagination         *query.PageResponse  `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllStoredProofSessionResponse) Descriptor

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

func (*QueryAllStoredProofSessionResponse) GetPagination

func (*QueryAllStoredProofSessionResponse) GetStoredProofSession

func (m *QueryAllStoredProofSessionResponse) GetStoredProofSession() []StoredProofSession

func (*QueryAllStoredProofSessionResponse) Marshal

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

func (*QueryAllStoredProofSessionResponse) MarshalTo

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

func (*QueryAllStoredProofSessionResponse) MarshalToSizedBuffer

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

func (*QueryAllStoredProofSessionResponse) ProtoMessage

func (*QueryAllStoredProofSessionResponse) ProtoMessage()

func (*QueryAllStoredProofSessionResponse) Reset

func (*QueryAllStoredProofSessionResponse) Size

func (*QueryAllStoredProofSessionResponse) String

func (*QueryAllStoredProofSessionResponse) Unmarshal

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

func (*QueryAllStoredProofSessionResponse) XXX_DiscardUnknown

func (m *QueryAllStoredProofSessionResponse) XXX_DiscardUnknown()

func (*QueryAllStoredProofSessionResponse) XXX_Marshal

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

func (*QueryAllStoredProofSessionResponse) XXX_Merge

func (*QueryAllStoredProofSessionResponse) XXX_Size

func (*QueryAllStoredProofSessionResponse) XXX_Unmarshal

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

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 SystemInfo by index.
	SystemInfo(ctx context.Context, in *QueryGetSystemInfoRequest, opts ...grpc.CallOption) (*QueryGetSystemInfoResponse, error)
	// Queries a LiveProofSession by index.
	LiveProofSession(ctx context.Context, in *QueryGetLiveProofSessionRequest, opts ...grpc.CallOption) (*QueryGetLiveProofSessionResponse, error)
	// Queries a list of LiveProofSession items.
	LiveProofSessionAll(ctx context.Context, in *QueryAllLiveProofSessionRequest, opts ...grpc.CallOption) (*QueryAllLiveProofSessionResponse, error)
	// Queries a StoredChainRole by index.
	StoredChainRole(ctx context.Context, in *QueryGetStoredChainRoleRequest, opts ...grpc.CallOption) (*QueryGetStoredChainRoleResponse, error)
	// Queries a list of StoredChainRole items.
	StoredChainRoleAll(ctx context.Context, in *QueryAllStoredChainRoleRequest, opts ...grpc.CallOption) (*QueryAllStoredChainRoleResponse, error)
	// Queries a StoredChainConfig by index.
	StoredChainConfig(ctx context.Context, in *QueryGetStoredChainConfigRequest, opts ...grpc.CallOption) (*QueryGetStoredChainConfigResponse, error)
	// Queries a list of StoredChainConfig items.
	StoredChainConfigAll(ctx context.Context, in *QueryAllStoredChainConfigRequest, opts ...grpc.CallOption) (*QueryAllStoredChainConfigResponse, error)
	// Queries a StoredProofSession by index.
	StoredProofSession(ctx context.Context, in *QueryGetStoredProofSessionRequest, opts ...grpc.CallOption) (*QueryGetStoredProofSessionResponse, error)
	// Queries a list of StoredProofSession items.
	StoredProofSessionAll(ctx context.Context, in *QueryAllStoredProofSessionRequest, opts ...grpc.CallOption) (*QueryAllStoredProofSessionResponse, error)
}

QueryClient is the client API for Query service.

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

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryGetLiveProofSessionRequest

type QueryGetLiveProofSessionRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetLiveProofSessionRequest) Descriptor

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

func (*QueryGetLiveProofSessionRequest) GetIndex

func (*QueryGetLiveProofSessionRequest) Marshal

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

func (*QueryGetLiveProofSessionRequest) MarshalTo

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

func (*QueryGetLiveProofSessionRequest) MarshalToSizedBuffer

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

func (*QueryGetLiveProofSessionRequest) ProtoMessage

func (*QueryGetLiveProofSessionRequest) ProtoMessage()

func (*QueryGetLiveProofSessionRequest) Reset

func (*QueryGetLiveProofSessionRequest) Size

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

func (*QueryGetLiveProofSessionRequest) String

func (*QueryGetLiveProofSessionRequest) Unmarshal

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

func (*QueryGetLiveProofSessionRequest) XXX_DiscardUnknown

func (m *QueryGetLiveProofSessionRequest) XXX_DiscardUnknown()

func (*QueryGetLiveProofSessionRequest) XXX_Marshal

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

func (*QueryGetLiveProofSessionRequest) XXX_Merge

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

func (*QueryGetLiveProofSessionRequest) XXX_Size

func (m *QueryGetLiveProofSessionRequest) XXX_Size() int

func (*QueryGetLiveProofSessionRequest) XXX_Unmarshal

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

type QueryGetLiveProofSessionResponse

type QueryGetLiveProofSessionResponse struct {
	LiveProofSession LiveProofSession `protobuf:"bytes,1,opt,name=liveProofSession,proto3" json:"liveProofSession"`
}

func (*QueryGetLiveProofSessionResponse) Descriptor

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

func (*QueryGetLiveProofSessionResponse) GetLiveProofSession

func (m *QueryGetLiveProofSessionResponse) GetLiveProofSession() LiveProofSession

func (*QueryGetLiveProofSessionResponse) Marshal

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

func (*QueryGetLiveProofSessionResponse) MarshalTo

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

func (*QueryGetLiveProofSessionResponse) MarshalToSizedBuffer

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

func (*QueryGetLiveProofSessionResponse) ProtoMessage

func (*QueryGetLiveProofSessionResponse) ProtoMessage()

func (*QueryGetLiveProofSessionResponse) Reset

func (*QueryGetLiveProofSessionResponse) Size

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

func (*QueryGetLiveProofSessionResponse) String

func (*QueryGetLiveProofSessionResponse) Unmarshal

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

func (*QueryGetLiveProofSessionResponse) XXX_DiscardUnknown

func (m *QueryGetLiveProofSessionResponse) XXX_DiscardUnknown()

func (*QueryGetLiveProofSessionResponse) XXX_Marshal

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

func (*QueryGetLiveProofSessionResponse) XXX_Merge

func (*QueryGetLiveProofSessionResponse) XXX_Size

func (m *QueryGetLiveProofSessionResponse) XXX_Size() int

func (*QueryGetLiveProofSessionResponse) XXX_Unmarshal

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

type QueryGetStoredChainConfigRequest

type QueryGetStoredChainConfigRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetStoredChainConfigRequest) Descriptor

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

func (*QueryGetStoredChainConfigRequest) GetIndex

func (*QueryGetStoredChainConfigRequest) Marshal

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

func (*QueryGetStoredChainConfigRequest) MarshalTo

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

func (*QueryGetStoredChainConfigRequest) MarshalToSizedBuffer

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

func (*QueryGetStoredChainConfigRequest) ProtoMessage

func (*QueryGetStoredChainConfigRequest) ProtoMessage()

func (*QueryGetStoredChainConfigRequest) Reset

func (*QueryGetStoredChainConfigRequest) Size

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

func (*QueryGetStoredChainConfigRequest) String

func (*QueryGetStoredChainConfigRequest) Unmarshal

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

func (*QueryGetStoredChainConfigRequest) XXX_DiscardUnknown

func (m *QueryGetStoredChainConfigRequest) XXX_DiscardUnknown()

func (*QueryGetStoredChainConfigRequest) XXX_Marshal

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

func (*QueryGetStoredChainConfigRequest) XXX_Merge

func (*QueryGetStoredChainConfigRequest) XXX_Size

func (m *QueryGetStoredChainConfigRequest) XXX_Size() int

func (*QueryGetStoredChainConfigRequest) XXX_Unmarshal

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

type QueryGetStoredChainConfigResponse

type QueryGetStoredChainConfigResponse struct {
	StoredChainConfig StoredChainConfig `protobuf:"bytes,1,opt,name=storedChainConfig,proto3" json:"storedChainConfig"`
}

func (*QueryGetStoredChainConfigResponse) Descriptor

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

func (*QueryGetStoredChainConfigResponse) GetStoredChainConfig

func (m *QueryGetStoredChainConfigResponse) GetStoredChainConfig() StoredChainConfig

func (*QueryGetStoredChainConfigResponse) Marshal

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

func (*QueryGetStoredChainConfigResponse) MarshalTo

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

func (*QueryGetStoredChainConfigResponse) MarshalToSizedBuffer

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

func (*QueryGetStoredChainConfigResponse) ProtoMessage

func (*QueryGetStoredChainConfigResponse) ProtoMessage()

func (*QueryGetStoredChainConfigResponse) Reset

func (*QueryGetStoredChainConfigResponse) Size

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

func (*QueryGetStoredChainConfigResponse) String

func (*QueryGetStoredChainConfigResponse) Unmarshal

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

func (*QueryGetStoredChainConfigResponse) XXX_DiscardUnknown

func (m *QueryGetStoredChainConfigResponse) XXX_DiscardUnknown()

func (*QueryGetStoredChainConfigResponse) XXX_Marshal

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

func (*QueryGetStoredChainConfigResponse) XXX_Merge

func (*QueryGetStoredChainConfigResponse) XXX_Size

func (m *QueryGetStoredChainConfigResponse) XXX_Size() int

func (*QueryGetStoredChainConfigResponse) XXX_Unmarshal

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

type QueryGetStoredChainRoleRequest

type QueryGetStoredChainRoleRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetStoredChainRoleRequest) Descriptor

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

func (*QueryGetStoredChainRoleRequest) GetIndex

func (m *QueryGetStoredChainRoleRequest) GetIndex() string

func (*QueryGetStoredChainRoleRequest) Marshal

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

func (*QueryGetStoredChainRoleRequest) MarshalTo

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

func (*QueryGetStoredChainRoleRequest) MarshalToSizedBuffer

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

func (*QueryGetStoredChainRoleRequest) ProtoMessage

func (*QueryGetStoredChainRoleRequest) ProtoMessage()

func (*QueryGetStoredChainRoleRequest) Reset

func (m *QueryGetStoredChainRoleRequest) Reset()

func (*QueryGetStoredChainRoleRequest) Size

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

func (*QueryGetStoredChainRoleRequest) String

func (*QueryGetStoredChainRoleRequest) Unmarshal

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

func (*QueryGetStoredChainRoleRequest) XXX_DiscardUnknown

func (m *QueryGetStoredChainRoleRequest) XXX_DiscardUnknown()

func (*QueryGetStoredChainRoleRequest) XXX_Marshal

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

func (*QueryGetStoredChainRoleRequest) XXX_Merge

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

func (*QueryGetStoredChainRoleRequest) XXX_Size

func (m *QueryGetStoredChainRoleRequest) XXX_Size() int

func (*QueryGetStoredChainRoleRequest) XXX_Unmarshal

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

type QueryGetStoredChainRoleResponse

type QueryGetStoredChainRoleResponse struct {
	StoredChainRole StoredChainRole `protobuf:"bytes,1,opt,name=storedChainRole,proto3" json:"storedChainRole"`
}

func (*QueryGetStoredChainRoleResponse) Descriptor

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

func (*QueryGetStoredChainRoleResponse) GetStoredChainRole

func (m *QueryGetStoredChainRoleResponse) GetStoredChainRole() StoredChainRole

func (*QueryGetStoredChainRoleResponse) Marshal

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

func (*QueryGetStoredChainRoleResponse) MarshalTo

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

func (*QueryGetStoredChainRoleResponse) MarshalToSizedBuffer

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

func (*QueryGetStoredChainRoleResponse) ProtoMessage

func (*QueryGetStoredChainRoleResponse) ProtoMessage()

func (*QueryGetStoredChainRoleResponse) Reset

func (*QueryGetStoredChainRoleResponse) Size

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

func (*QueryGetStoredChainRoleResponse) String

func (*QueryGetStoredChainRoleResponse) Unmarshal

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

func (*QueryGetStoredChainRoleResponse) XXX_DiscardUnknown

func (m *QueryGetStoredChainRoleResponse) XXX_DiscardUnknown()

func (*QueryGetStoredChainRoleResponse) XXX_Marshal

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

func (*QueryGetStoredChainRoleResponse) XXX_Merge

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

func (*QueryGetStoredChainRoleResponse) XXX_Size

func (m *QueryGetStoredChainRoleResponse) XXX_Size() int

func (*QueryGetStoredChainRoleResponse) XXX_Unmarshal

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

type QueryGetStoredProofSessionRequest

type QueryGetStoredProofSessionRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetStoredProofSessionRequest) Descriptor

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

func (*QueryGetStoredProofSessionRequest) GetIndex

func (*QueryGetStoredProofSessionRequest) Marshal

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

func (*QueryGetStoredProofSessionRequest) MarshalTo

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

func (*QueryGetStoredProofSessionRequest) MarshalToSizedBuffer

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

func (*QueryGetStoredProofSessionRequest) ProtoMessage

func (*QueryGetStoredProofSessionRequest) ProtoMessage()

func (*QueryGetStoredProofSessionRequest) Reset

func (*QueryGetStoredProofSessionRequest) Size

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

func (*QueryGetStoredProofSessionRequest) String

func (*QueryGetStoredProofSessionRequest) Unmarshal

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

func (*QueryGetStoredProofSessionRequest) XXX_DiscardUnknown

func (m *QueryGetStoredProofSessionRequest) XXX_DiscardUnknown()

func (*QueryGetStoredProofSessionRequest) XXX_Marshal

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

func (*QueryGetStoredProofSessionRequest) XXX_Merge

func (*QueryGetStoredProofSessionRequest) XXX_Size

func (m *QueryGetStoredProofSessionRequest) XXX_Size() int

func (*QueryGetStoredProofSessionRequest) XXX_Unmarshal

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

type QueryGetStoredProofSessionResponse

type QueryGetStoredProofSessionResponse struct {
	StoredProofSession StoredProofSession `protobuf:"bytes,1,opt,name=storedProofSession,proto3" json:"storedProofSession"`
}

func (*QueryGetStoredProofSessionResponse) Descriptor

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

func (*QueryGetStoredProofSessionResponse) GetStoredProofSession

func (m *QueryGetStoredProofSessionResponse) GetStoredProofSession() StoredProofSession

func (*QueryGetStoredProofSessionResponse) Marshal

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

func (*QueryGetStoredProofSessionResponse) MarshalTo

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

func (*QueryGetStoredProofSessionResponse) MarshalToSizedBuffer

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

func (*QueryGetStoredProofSessionResponse) ProtoMessage

func (*QueryGetStoredProofSessionResponse) ProtoMessage()

func (*QueryGetStoredProofSessionResponse) Reset

func (*QueryGetStoredProofSessionResponse) Size

func (*QueryGetStoredProofSessionResponse) String

func (*QueryGetStoredProofSessionResponse) Unmarshal

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

func (*QueryGetStoredProofSessionResponse) XXX_DiscardUnknown

func (m *QueryGetStoredProofSessionResponse) XXX_DiscardUnknown()

func (*QueryGetStoredProofSessionResponse) XXX_Marshal

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

func (*QueryGetStoredProofSessionResponse) XXX_Merge

func (*QueryGetStoredProofSessionResponse) XXX_Size

func (*QueryGetStoredProofSessionResponse) XXX_Unmarshal

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

type QueryGetSystemInfoRequest

type QueryGetSystemInfoRequest struct {
}

func (*QueryGetSystemInfoRequest) Descriptor

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

func (*QueryGetSystemInfoRequest) Marshal

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

func (*QueryGetSystemInfoRequest) MarshalTo

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

func (*QueryGetSystemInfoRequest) MarshalToSizedBuffer

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

func (*QueryGetSystemInfoRequest) ProtoMessage

func (*QueryGetSystemInfoRequest) ProtoMessage()

func (*QueryGetSystemInfoRequest) Reset

func (m *QueryGetSystemInfoRequest) Reset()

func (*QueryGetSystemInfoRequest) Size

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

func (*QueryGetSystemInfoRequest) String

func (m *QueryGetSystemInfoRequest) String() string

func (*QueryGetSystemInfoRequest) Unmarshal

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

func (*QueryGetSystemInfoRequest) XXX_DiscardUnknown

func (m *QueryGetSystemInfoRequest) XXX_DiscardUnknown()

func (*QueryGetSystemInfoRequest) XXX_Marshal

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

func (*QueryGetSystemInfoRequest) XXX_Merge

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

func (*QueryGetSystemInfoRequest) XXX_Size

func (m *QueryGetSystemInfoRequest) XXX_Size() int

func (*QueryGetSystemInfoRequest) XXX_Unmarshal

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

type QueryGetSystemInfoResponse

type QueryGetSystemInfoResponse struct {
	SystemInfo SystemInfo `protobuf:"bytes,1,opt,name=SystemInfo,proto3" json:"SystemInfo"`
}

func (*QueryGetSystemInfoResponse) Descriptor

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

func (*QueryGetSystemInfoResponse) GetSystemInfo

func (m *QueryGetSystemInfoResponse) GetSystemInfo() SystemInfo

func (*QueryGetSystemInfoResponse) Marshal

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

func (*QueryGetSystemInfoResponse) MarshalTo

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

func (*QueryGetSystemInfoResponse) MarshalToSizedBuffer

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

func (*QueryGetSystemInfoResponse) ProtoMessage

func (*QueryGetSystemInfoResponse) ProtoMessage()

func (*QueryGetSystemInfoResponse) Reset

func (m *QueryGetSystemInfoResponse) Reset()

func (*QueryGetSystemInfoResponse) Size

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

func (*QueryGetSystemInfoResponse) String

func (m *QueryGetSystemInfoResponse) String() string

func (*QueryGetSystemInfoResponse) Unmarshal

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

func (*QueryGetSystemInfoResponse) XXX_DiscardUnknown

func (m *QueryGetSystemInfoResponse) XXX_DiscardUnknown()

func (*QueryGetSystemInfoResponse) XXX_Marshal

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

func (*QueryGetSystemInfoResponse) XXX_Merge

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

func (*QueryGetSystemInfoResponse) XXX_Size

func (m *QueryGetSystemInfoResponse) XXX_Size() int

func (*QueryGetSystemInfoResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

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

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

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

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a SystemInfo by index.
	SystemInfo(context.Context, *QueryGetSystemInfoRequest) (*QueryGetSystemInfoResponse, error)
	// Queries a LiveProofSession by index.
	LiveProofSession(context.Context, *QueryGetLiveProofSessionRequest) (*QueryGetLiveProofSessionResponse, error)
	// Queries a list of LiveProofSession items.
	LiveProofSessionAll(context.Context, *QueryAllLiveProofSessionRequest) (*QueryAllLiveProofSessionResponse, error)
	// Queries a StoredChainRole by index.
	StoredChainRole(context.Context, *QueryGetStoredChainRoleRequest) (*QueryGetStoredChainRoleResponse, error)
	// Queries a list of StoredChainRole items.
	StoredChainRoleAll(context.Context, *QueryAllStoredChainRoleRequest) (*QueryAllStoredChainRoleResponse, error)
	// Queries a StoredChainConfig by index.
	StoredChainConfig(context.Context, *QueryGetStoredChainConfigRequest) (*QueryGetStoredChainConfigResponse, error)
	// Queries a list of StoredChainConfig items.
	StoredChainConfigAll(context.Context, *QueryAllStoredChainConfigRequest) (*QueryAllStoredChainConfigResponse, error)
	// Queries a StoredProofSession by index.
	StoredProofSession(context.Context, *QueryGetStoredProofSessionRequest) (*QueryGetStoredProofSessionResponse, error)
	// Queries a list of StoredProofSession items.
	StoredProofSessionAll(context.Context, *QueryAllStoredProofSessionRequest) (*QueryAllStoredProofSessionResponse, error)
}

QueryServer is the server API for Query service.

type StoredChainConfig

type StoredChainConfig struct {
	Index             string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	ChainId           int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType         string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	SrcBlockTimeSec   string `protobuf:"bytes,4,opt,name=srcBlockTimeSec,proto3" json:"srcBlockTimeSec,omitempty"`
	SnkBlockTimeSec   string `protobuf:"bytes,5,opt,name=snkBlockTimeSec,proto3" json:"snkBlockTimeSec,omitempty"`
	QuorumReq         int32  `protobuf:"varint,6,opt,name=quorumReq,proto3" json:"quorumReq,omitempty"`
	RewardAlloc       string `protobuf:"bytes,7,opt,name=rewardAlloc,proto3" json:"rewardAlloc,omitempty"`
	MinStakeReq       string `protobuf:"bytes,8,opt,name=minStakeReq,proto3" json:"minStakeReq,omitempty"`
	MinSubmissionsReq int32  `protobuf:"varint,9,opt,name=minSubmissionsReq,proto3" json:"minSubmissionsReq,omitempty"`
	SessionTimeSec    string `protobuf:"bytes,10,opt,name=sessionTimeSec,proto3" json:"sessionTimeSec,omitempty"`
	Creator           string `protobuf:"bytes,11,opt,name=creator,proto3" json:"creator,omitempty"`
	LiveMode          bool   `protobuf:"varint,12,opt,name=liveMode,proto3" json:"liveMode,omitempty"`
	SyncBlockLimit    uint64 `protobuf:"varint,13,opt,name=syncBlockLimit,proto3" json:"syncBlockLimit,omitempty"`
	Timestamp         string `protobuf:"bytes,14,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	SyncLagLimit      uint64 `protobuf:"varint,15,opt,name=syncLagLimit,proto3" json:"syncLagLimit,omitempty"`
	SyncBlockStart    uint64 `protobuf:"varint,16,opt,name=syncBlockStart,proto3" json:"syncBlockStart,omitempty"`
	BridgeTxDayFreq   int32  `protobuf:"varint,17,opt,name=bridgeTxDayFreq,proto3" json:"bridgeTxDayFreq,omitempty"`
}

func (*StoredChainConfig) Descriptor

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

func (*StoredChainConfig) GetBridgeTxDayFreq

func (m *StoredChainConfig) GetBridgeTxDayFreq() int32

func (*StoredChainConfig) GetChainId

func (m *StoredChainConfig) GetChainId() int32

func (*StoredChainConfig) GetCreator

func (m *StoredChainConfig) GetCreator() string

func (*StoredChainConfig) GetIndex

func (m *StoredChainConfig) GetIndex() string

func (*StoredChainConfig) GetLiveMode

func (m *StoredChainConfig) GetLiveMode() bool

func (*StoredChainConfig) GetMinStakeReq

func (m *StoredChainConfig) GetMinStakeReq() string

func (*StoredChainConfig) GetMinSubmissionsReq

func (m *StoredChainConfig) GetMinSubmissionsReq() int32

func (*StoredChainConfig) GetProofType

func (m *StoredChainConfig) GetProofType() string

func (*StoredChainConfig) GetQuorumReq

func (m *StoredChainConfig) GetQuorumReq() int32

func (*StoredChainConfig) GetRewardAlloc

func (m *StoredChainConfig) GetRewardAlloc() string

func (*StoredChainConfig) GetSessionTimeSec

func (m *StoredChainConfig) GetSessionTimeSec() string

func (*StoredChainConfig) GetSnkBlockTimeSec

func (m *StoredChainConfig) GetSnkBlockTimeSec() string

func (*StoredChainConfig) GetSrcBlockTimeSec

func (m *StoredChainConfig) GetSrcBlockTimeSec() string

func (*StoredChainConfig) GetSyncBlockLimit

func (m *StoredChainConfig) GetSyncBlockLimit() uint64

func (*StoredChainConfig) GetSyncBlockStart

func (m *StoredChainConfig) GetSyncBlockStart() uint64

func (*StoredChainConfig) GetSyncLagLimit

func (m *StoredChainConfig) GetSyncLagLimit() uint64

func (*StoredChainConfig) GetTimestamp

func (m *StoredChainConfig) GetTimestamp() string

func (*StoredChainConfig) Marshal

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

func (*StoredChainConfig) MarshalTo

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

func (*StoredChainConfig) MarshalToSizedBuffer

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

func (*StoredChainConfig) ProtoMessage

func (*StoredChainConfig) ProtoMessage()

func (*StoredChainConfig) Reset

func (m *StoredChainConfig) Reset()

func (*StoredChainConfig) Size

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

func (*StoredChainConfig) String

func (m *StoredChainConfig) String() string

func (*StoredChainConfig) Unmarshal

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

func (*StoredChainConfig) XXX_DiscardUnknown

func (m *StoredChainConfig) XXX_DiscardUnknown()

func (*StoredChainConfig) XXX_Marshal

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

func (*StoredChainConfig) XXX_Merge

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

func (*StoredChainConfig) XXX_Size

func (m *StoredChainConfig) XXX_Size() int

func (*StoredChainConfig) XXX_Unmarshal

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

type StoredChainRole

type StoredChainRole struct {
	Index           string            `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	ChainId         int32             `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofSequencer  string            `protobuf:"bytes,3,opt,name=proofSequencer,proto3" json:"proofSequencer,omitempty"`
	ProofOperator   string            `protobuf:"bytes,4,opt,name=proofOperator,proto3" json:"proofOperator,omitempty"`
	ProofValidator  string            `protobuf:"bytes,5,opt,name=proofValidator,proto3" json:"proofValidator,omitempty"`
	ProofType       string            `protobuf:"bytes,6,opt,name=proofType,proto3" json:"proofType,omitempty"`
	Creator         string            `protobuf:"bytes,7,opt,name=creator,proto3" json:"creator,omitempty"`
	ValidatorStatus map[string]bool   `` /* 172-byte string literal not displayed */
	OpValPair       map[string]string `` /* 159-byte string literal not displayed */
	Timestamp       string            `protobuf:"bytes,10,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*StoredChainRole) Descriptor

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

func (*StoredChainRole) GetChainId

func (m *StoredChainRole) GetChainId() int32

func (*StoredChainRole) GetCreator

func (m *StoredChainRole) GetCreator() string

func (*StoredChainRole) GetIndex

func (m *StoredChainRole) GetIndex() string

func (*StoredChainRole) GetOpValPair

func (m *StoredChainRole) GetOpValPair() map[string]string

func (*StoredChainRole) GetProofOperator

func (m *StoredChainRole) GetProofOperator() string

func (*StoredChainRole) GetProofSequencer

func (m *StoredChainRole) GetProofSequencer() string

func (*StoredChainRole) GetProofType

func (m *StoredChainRole) GetProofType() string

func (*StoredChainRole) GetProofValidator

func (m *StoredChainRole) GetProofValidator() string

func (*StoredChainRole) GetTimestamp

func (m *StoredChainRole) GetTimestamp() string

func (*StoredChainRole) GetValidatorStatus

func (m *StoredChainRole) GetValidatorStatus() map[string]bool

func (*StoredChainRole) Marshal

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

func (*StoredChainRole) MarshalTo

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

func (*StoredChainRole) MarshalToSizedBuffer

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

func (*StoredChainRole) ProtoMessage

func (*StoredChainRole) ProtoMessage()

func (*StoredChainRole) Reset

func (m *StoredChainRole) Reset()

func (*StoredChainRole) Size

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

func (*StoredChainRole) String

func (m *StoredChainRole) String() string

func (*StoredChainRole) Unmarshal

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

func (*StoredChainRole) XXX_DiscardUnknown

func (m *StoredChainRole) XXX_DiscardUnknown()

func (*StoredChainRole) XXX_Marshal

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

func (*StoredChainRole) XXX_Merge

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

func (*StoredChainRole) XXX_Size

func (m *StoredChainRole) XXX_Size() int

func (*StoredChainRole) XXX_Unmarshal

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

type StoredProofSession

type StoredProofSession struct {
	Index             string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	ChainId           int32  `protobuf:"varint,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ProofType         string `protobuf:"bytes,3,opt,name=proofType,proto3" json:"proofType,omitempty"`
	BlockHeight       uint64 `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	BlockHash         string `protobuf:"bytes,5,opt,name=blockHash,proto3" json:"blockHash,omitempty"`
	ProofHash         string `protobuf:"bytes,6,opt,name=proofHash,proto3" json:"proofHash,omitempty"`
	StoreAddress      string `protobuf:"bytes,7,opt,name=storeAddress,proto3" json:"storeAddress,omitempty"`
	ProofCount        int32  `protobuf:"varint,8,opt,name=proofCount,proto3" json:"proofCount,omitempty"`
	SessionMembers    string `protobuf:"bytes,9,opt,name=sessionMembers,proto3" json:"sessionMembers,omitempty"`
	ArchivedTimestamp string `protobuf:"bytes,10,opt,name=archivedTimestamp,proto3" json:"archivedTimestamp,omitempty"`
	Finalized         bool   `protobuf:"varint,11,opt,name=finalized,proto3" json:"finalized,omitempty"`
	Creator           string `protobuf:"bytes,12,opt,name=creator,proto3" json:"creator,omitempty"`
}

func (*StoredProofSession) Descriptor

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

func (*StoredProofSession) GetArchivedTimestamp

func (m *StoredProofSession) GetArchivedTimestamp() string

func (*StoredProofSession) GetBlockHash

func (m *StoredProofSession) GetBlockHash() string

func (*StoredProofSession) GetBlockHeight

func (m *StoredProofSession) GetBlockHeight() uint64

func (*StoredProofSession) GetChainId

func (m *StoredProofSession) GetChainId() int32

func (*StoredProofSession) GetCreator

func (m *StoredProofSession) GetCreator() string

func (*StoredProofSession) GetFinalized

func (m *StoredProofSession) GetFinalized() bool

func (*StoredProofSession) GetIndex

func (m *StoredProofSession) GetIndex() string

func (*StoredProofSession) GetProofCount

func (m *StoredProofSession) GetProofCount() int32

func (*StoredProofSession) GetProofHash

func (m *StoredProofSession) GetProofHash() string

func (*StoredProofSession) GetProofType

func (m *StoredProofSession) GetProofType() string

func (*StoredProofSession) GetSessionMembers

func (m *StoredProofSession) GetSessionMembers() string

func (*StoredProofSession) GetStoreAddress

func (m *StoredProofSession) GetStoreAddress() string

func (*StoredProofSession) Marshal

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

func (*StoredProofSession) MarshalTo

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

func (*StoredProofSession) MarshalToSizedBuffer

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

func (*StoredProofSession) ProtoMessage

func (*StoredProofSession) ProtoMessage()

func (*StoredProofSession) Reset

func (m *StoredProofSession) Reset()

func (*StoredProofSession) Size

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

func (*StoredProofSession) String

func (m *StoredProofSession) String() string

func (*StoredProofSession) Unmarshal

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

func (*StoredProofSession) XXX_DiscardUnknown

func (m *StoredProofSession) XXX_DiscardUnknown()

func (*StoredProofSession) XXX_Marshal

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

func (*StoredProofSession) XXX_Merge

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

func (*StoredProofSession) XXX_Size

func (m *StoredProofSession) XXX_Size() int

func (*StoredProofSession) XXX_Unmarshal

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

type SystemInfo

type SystemInfo struct {
	ProofSessionId     uint64 `protobuf:"varint,1,opt,name=proofSessionId,proto3" json:"proofSessionId,omitempty"`
	ChainRoleId        uint64 `protobuf:"varint,2,opt,name=chainRoleId,proto3" json:"chainRoleId,omitempty"`
	FifoHeadIndex      string `protobuf:"bytes,3,opt,name=fifoHeadIndex,proto3" json:"fifoHeadIndex,omitempty"`
	FifoTailIndex      string `protobuf:"bytes,4,opt,name=fifoTailIndex,proto3" json:"fifoTailIndex,omitempty"`
	ChainConfigId      uint64 `protobuf:"varint,5,opt,name=chainConfigId,proto3" json:"chainConfigId,omitempty"`
	StoredSessionCount uint64 `protobuf:"varint,6,opt,name=storedSessionCount,proto3" json:"storedSessionCount,omitempty"`
}

func (*SystemInfo) Descriptor

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

func (*SystemInfo) GetChainConfigId

func (m *SystemInfo) GetChainConfigId() uint64

func (*SystemInfo) GetChainRoleId

func (m *SystemInfo) GetChainRoleId() uint64

func (*SystemInfo) GetFifoHeadIndex

func (m *SystemInfo) GetFifoHeadIndex() string

func (*SystemInfo) GetFifoTailIndex

func (m *SystemInfo) GetFifoTailIndex() string

func (*SystemInfo) GetProofSessionId

func (m *SystemInfo) GetProofSessionId() uint64

func (*SystemInfo) GetStoredSessionCount

func (m *SystemInfo) GetStoredSessionCount() uint64

func (*SystemInfo) Marshal

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

func (*SystemInfo) MarshalTo

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

func (*SystemInfo) MarshalToSizedBuffer

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

func (*SystemInfo) ProtoMessage

func (*SystemInfo) ProtoMessage()

func (*SystemInfo) Reset

func (m *SystemInfo) Reset()

func (*SystemInfo) Size

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

func (*SystemInfo) String

func (m *SystemInfo) String() string

func (*SystemInfo) Unmarshal

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

func (*SystemInfo) XXX_DiscardUnknown

func (m *SystemInfo) XXX_DiscardUnknown()

func (*SystemInfo) XXX_Marshal

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

func (*SystemInfo) XXX_Merge

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

func (*SystemInfo) XXX_Size

func (m *SystemInfo) XXX_Size() int

func (*SystemInfo) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AssignOperatorValidator

func (*UnimplementedMsgServer) AssignProofOperator

func (*UnimplementedMsgServer) AssignProofSequencer

func (*UnimplementedMsgServer) AssignProofValidator

func (*UnimplementedMsgServer) CreateProof

func (*UnimplementedMsgServer) DisableProofValidator

func (*UnimplementedMsgServer) EnableProofValidator

func (*UnimplementedMsgServer) InitChainConfig

func (*UnimplementedMsgServer) InitChainRole

func (*UnimplementedMsgServer) RemoveProofOperator

func (*UnimplementedMsgServer) RemoveProofSequencer

func (*UnimplementedMsgServer) RemoveProofValidator

func (*UnimplementedMsgServer) UpdateChainProofConfig

func (*UnimplementedMsgServer) UpdateChainSyncConfig

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) LiveProofSessionAll

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) StoredChainRole

func (*UnimplementedQueryServer) StoredChainRoleAll

func (*UnimplementedQueryServer) SystemInfo

Jump to

Keyboard shortcuts

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