Represents a key store which holds an evm key

interface EvmKeyStore {
    address: Buffer;
    id: Buffer;
    isInteractive: boolean;
    createKeyHandler(authDescriptor): KeyHandler;
    signMessage(message): Promise<Signature>;
}

Hierarchy (view full)

Properties

address: Buffer
id: Buffer
isInteractive: boolean

Methods

  • Signs an auth message

    Parameters

    • message: string

      the message to sign

    Returns Promise<Signature>