session

package
v0.6.0-rc1 Latest Latest
Warning

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

Go to latest
Published: Apr 22, 2021 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/sentinel-official/hub/x/session/types ALIASGEN: github.com/sentinel-official/hub/x/session/keeper

Index

Constants

View Source
const (
	ModuleName                      = types.ModuleName
	QuerierRoute                    = types.QuerierRoute
	DefaultInactiveDuration         = types.DefaultInactiveDuration
	DefaultProofVerificationEnabled = types.DefaultProofVerificationEnabled
)

Variables

View Source
var (
	// functions aliases
	RegisterLegacyAminoCodec                = types.RegisterLegacyAminoCodec
	RegisterInterfaces                      = types.RegisterInterfaces
	NewGenesisState                         = types.NewGenesisState
	DefaultGenesisState                     = types.DefaultGenesisState
	GetChannelKeyPrefix                     = types.GetChannelKeyPrefix
	ChannelKey                              = types.ChannelKey
	SessionKey                              = types.SessionKey
	GetSessionForSubscriptionKeyPrefix      = types.GetSessionForSubscriptionKeyPrefix
	SessionForSubscriptionKey               = types.SessionForSubscriptionKey
	GetSessionForNodeKeyPrefix              = types.GetSessionForNodeKeyPrefix
	SessionForNodeKey                       = types.SessionForNodeKey
	GetSessionForAddressKeyPrefix           = types.GetSessionForAddressKeyPrefix
	SessionForAddressKey                    = types.SessionForAddressKey
	GetActiveSessionForAddressKeyPrefix     = types.GetActiveSessionForAddressKeyPrefix
	ActiveSessionForAddressKey              = types.ActiveSessionForAddressKey
	GetActiveSessionAtKeyPrefix             = types.GetActiveSessionAtKeyPrefix
	ActiveSessionAtKey                      = types.ActiveSessionAtKey
	IDFromSessionForSubscriptionKey         = types.IDFromSessionForSubscriptionKey
	IDFromSessionForNodeKey                 = types.IDFromSessionForNodeKey
	IDFromSessionForAddressKey              = types.IDFromSessionForAddressKey
	IDFromActiveSessionAtKey                = types.IDFromActiveSessionAtKey
	NewMsgUpsertRequest                     = types.NewMsgUpsertRequest
	NewMsgServiceClient                     = types.NewMsgServiceClient
	RegisterMsgServiceServer                = types.RegisterMsgServiceServer
	NewParams                               = types.NewParams
	DefaultParams                           = types.DefaultParams
	ParamsKeyTable                          = types.ParamsKeyTable
	NewProof                                = types.NewProof
	NewQuerySessionRequest                  = types.NewQuerySessionRequest
	NewQuerySessionsRequest                 = types.NewQuerySessionsRequest
	NewQuerySessionsForSubscriptionRequest  = types.NewQuerySessionsForSubscriptionRequest
	NewQuerySessionsForNodeRequest          = types.NewQuerySessionsForNodeRequest
	NewQuerySessionsForAddressRequest       = types.NewQuerySessionsForAddressRequest
	NewQueryActiveSessionRequest            = types.NewQueryActiveSessionRequest
	NewQueryServiceClient                   = types.NewQueryServiceClient
	RegisterQueryServiceServer              = types.RegisterQueryServiceServer
	RegisterQueryServiceHandlerServer       = types.RegisterQueryServiceHandlerServer
	RegisterQueryServiceHandlerFromEndpoint = types.RegisterQueryServiceHandlerFromEndpoint
	RegisterQueryServiceHandler             = types.RegisterQueryServiceHandler
	RegisterQueryServiceHandlerClient       = types.RegisterQueryServiceHandlerClient
	NewKeeper                               = keeper.NewKeeper
	NewMsgServiceServer                     = keeper.NewMsgServiceServer
	NewQueryServiceServer                   = keeper.NewQueryServiceServer

	// variable aliases
	ModuleCdc                        = types.ModuleCdc
	ErrorMarshal                     = types.ErrorMarshal
	ErrorUnmarshal                   = types.ErrorUnmarshal
	ErrorUnknownMsgType              = types.ErrorUnknownMsgType
	ErrorUnknownQueryType            = types.ErrorUnknownQueryType
	ErrorInvalidField                = types.ErrorInvalidField
	ErrorSubscriptionDoesNotExit     = types.ErrorSubscriptionDoesNotExit
	ErrorInvalidSubscriptionStatus   = types.ErrorInvalidSubscriptionStatus
	ErrorUnauthorized                = types.ErrorUnauthorized
	ErrorQuotaDoesNotExist           = types.ErrorQuotaDoesNotExist
	ErrorInvalidChannel              = types.ErrorInvalidChannel
	ErrorFailedToVerifyProof         = types.ErrorFailedToVerifyProof
	ErrInvalidLengthEvents           = types.ErrInvalidLengthEvents
	ErrIntOverflowEvents             = types.ErrIntOverflowEvents
	ErrUnexpectedEndOfGroupEvents    = types.ErrUnexpectedEndOfGroupEvents
	ErrInvalidLengthGenesis          = types.ErrInvalidLengthGenesis
	ErrIntOverflowGenesis            = types.ErrIntOverflowGenesis
	ErrUnexpectedEndOfGroupGenesis   = types.ErrUnexpectedEndOfGroupGenesis
	ParamsSubspace                   = types.ParamsSubspace
	RouterKey                        = types.RouterKey
	StoreKey                         = types.StoreKey
	EventModuleName                  = types.EventModuleName
	CountKey                         = types.CountKey
	ChannelKeyPrefix                 = types.ChannelKeyPrefix
	SessionKeyPrefix                 = types.SessionKeyPrefix
	SessionForSubscriptionKeyPrefix  = types.SessionForSubscriptionKeyPrefix
	SessionForNodeKeyPrefix          = types.SessionForNodeKeyPrefix
	SessionForAddressKeyPrefix       = types.SessionForAddressKeyPrefix
	ActiveSessionAtKeyPrefix         = types.ActiveSessionAtKeyPrefix
	ActiveSessionForAddressKeyPrefix = types.ActiveSessionForAddressKeyPrefix
	ErrInvalidLengthMsg              = types.ErrInvalidLengthMsg
	ErrIntOverflowMsg                = types.ErrIntOverflowMsg
	ErrUnexpectedEndOfGroupMsg       = types.ErrUnexpectedEndOfGroupMsg
	KeyInactiveDuration              = types.KeyInactiveDuration
	KeyProofVerificationEnabled      = types.KeyProofVerificationEnabled
	ErrInvalidLengthParams           = types.ErrInvalidLengthParams
	ErrIntOverflowParams             = types.ErrIntOverflowParams
	ErrUnexpectedEndOfGroupParams    = types.ErrUnexpectedEndOfGroupParams
	ErrInvalidLengthProof            = types.ErrInvalidLengthProof
	ErrIntOverflowProof              = types.ErrIntOverflowProof
	ErrUnexpectedEndOfGroupProof     = types.ErrUnexpectedEndOfGroupProof
	ErrInvalidLengthQuerier          = types.ErrInvalidLengthQuerier
	ErrIntOverflowQuerier            = types.ErrIntOverflowQuerier
	ErrUnexpectedEndOfGroupQuerier   = types.ErrUnexpectedEndOfGroupQuerier
	ErrInvalidLengthSession          = types.ErrInvalidLengthSession
	ErrIntOverflowSession            = types.ErrIntOverflowSession
	ErrUnexpectedEndOfGroupSession   = types.ErrUnexpectedEndOfGroupSession
)

Functions

func EndBlock

func EndBlock(ctx sdk.Context, k keeper.Keeper) []abci.ValidatorUpdate

func ExportGenesis

func ExportGenesis(ctx sdk.Context, k keeper.Keeper) *types.GenesisState

func InitGenesis

func InitGenesis(ctx sdk.Context, k keeper.Keeper, state *types.GenesisState)

func ValidateGenesis

func ValidateGenesis(state *types.GenesisState) error

Types

type EventAddSession

type EventAddSession = types.EventAddSession

type EventModule

type EventModule = types.EventModule

type EventSetSessionCount

type EventSetSessionCount = types.EventSetSessionCount

type EventUpdateSession

type EventUpdateSession = types.EventUpdateSession

type GenesisState

type GenesisState = types.GenesisState

type Keeper

type Keeper = keeper.Keeper

type MsgServiceClient

type MsgServiceClient = types.MsgServiceClient

type MsgServiceServer

type MsgServiceServer = types.MsgServiceServer

type MsgUpsertRequest

type MsgUpsertRequest = types.MsgUpsertRequest

type MsgUpsertResponse

type MsgUpsertResponse = types.MsgUpsertResponse

type Params

type Params = types.Params

type Proof added in v0.5.0

type Proof = types.Proof

type QueryActiveSessionRequest

type QueryActiveSessionRequest = types.QueryActiveSessionRequest

type QueryActiveSessionResponse

type QueryActiveSessionResponse = types.QueryActiveSessionResponse

type QueryServiceClient

type QueryServiceClient = types.QueryServiceClient

type QueryServiceServer

type QueryServiceServer = types.QueryServiceServer

type QuerySessionRequest

type QuerySessionRequest = types.QuerySessionRequest

type QuerySessionResponse

type QuerySessionResponse = types.QuerySessionResponse

type QuerySessionsForAddressRequest

type QuerySessionsForAddressRequest = types.QuerySessionsForAddressRequest

type QuerySessionsForAddressResponse

type QuerySessionsForAddressResponse = types.QuerySessionsForAddressResponse

type QuerySessionsForNodeRequest

type QuerySessionsForNodeRequest = types.QuerySessionsForNodeRequest

type QuerySessionsForNodeResponse

type QuerySessionsForNodeResponse = types.QuerySessionsForNodeResponse

type QuerySessionsForSubscriptionRequest

type QuerySessionsForSubscriptionRequest = types.QuerySessionsForSubscriptionRequest

type QuerySessionsForSubscriptionResponse

type QuerySessionsForSubscriptionResponse = types.QuerySessionsForSubscriptionResponse

type QuerySessionsRequest

type QuerySessionsRequest = types.QuerySessionsRequest

type QuerySessionsResponse

type QuerySessionsResponse = types.QuerySessionsResponse

type Session

type Session = types.Session

type Sessions

type Sessions = types.Sessions

type UnimplementedMsgServiceServer

type UnimplementedMsgServiceServer = types.UnimplementedMsgServiceServer

type UnimplementedQueryServiceServer

type UnimplementedQueryServiceServer = types.UnimplementedQueryServiceServer

Directories

Path Synopsis
client
cli
Package types is a reverse proxy.
Package types is a reverse proxy.

Jump to

Keyboard shortcuts

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