Documentation ¶
Overview ¶
Package registry implements the registry application.
Index ¶
Constants ¶
View Source
const ( // AppID is the unique application identifier. AppID uint8 = 0x01 // AppName is the ABCI application name. AppName string = "200_registry" )
Variables ¶
View Source
var ( // EventType is the ABCI event type for registry events. EventType = api.EventTypeForApp(AppName) // QueryApp is a query for filtering events processed by // the registry application. QueryApp = api.QueryForApp(AppName) )
Functions ¶
Types ¶
type Query ¶
type Query interface { Entity(context.Context, signature.PublicKey) (*entity.Entity, error) Entities(context.Context) ([]*entity.Entity, error) Node(context.Context, signature.PublicKey) (*node.Node, error) NodeByConsensusAddress(context.Context, []byte) (*node.Node, error) NodeStatus(context.Context, signature.PublicKey) (*registry.NodeStatus, error) Nodes(context.Context) ([]*node.Node, error) Runtime(context.Context, common.Namespace) (*registry.Runtime, error) Runtimes(ctx context.Context, includeSuspended bool) ([]*registry.Runtime, error) Genesis(context.Context) (*registry.Genesis, error) }
Query is the registry query interface.
type QueryFactory ¶
type QueryFactory struct {
// contains filtered or unexported fields
}
QueryFactory is the registry query factory.
func NewQueryFactory ¶
func NewQueryFactory(state abciAPI.ApplicationQueryState) *QueryFactory
NewQueryFactory returns a new QueryFactory backed by the given state instance.
Click to show internal directories.
Click to hide internal directories.