Documentation ¶
Overview ¶
Package keymanager implements the key manager management application.
Index ¶
Constants ¶
View Source
const ( // AppID is the unique application identifier. AppID uint8 = 0x07 // AppName is the ABCI application name. AppName string = "999_keymanager" )
Variables ¶
View Source
var ( // EventType is the ABCI event type for key manager events. EventType = api.EventTypeForApp(AppName) // QueryApp is a query for filtering transactions processed by the // key manager application. QueryApp = api.QueryForApp(AppName) )
Functions ¶
Types ¶
type Query ¶
type Query interface { Status(context.Context, common.Namespace) (*keymanager.Status, error) Statuses(context.Context) ([]*keymanager.Status, error) Genesis(context.Context) (*keymanager.Genesis, error) }
Query is the key manager query interface.
type QueryFactory ¶
type QueryFactory struct {
// contains filtered or unexported fields
}
QueryFactory is the key manager 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.