A collection of methods that web content can access.

interface Handlers {
    contextSignerPublic(origin, req): Promise<ContextSignerPublicResponse>;
    contextSignerSign(origin, req): Promise<ContextSignerSignResponse>;
    keysList(origin, req): Promise<KeysListResponse>;
}

Methods

  • If the extension can share a list of keys and the web content wants to know what keys are available, this method retrieves that list.

    Parameters

    Returns Promise<KeysListResponse>