Record is used for representing a key in the keyring.

interface Record {
    ledger?: Record_Ledger;
    local?: Record_Local;
    multi?: Record_Multi;
    name: string;
    offline?: Record_Offline;
    pubKey?: Any;
}

Properties

ledger?: Record_Ledger

ledger stores the public information about a Ledger key

local?: Record_Local

local stores the public information about a locally stored key

multi?: Record_Multi

Multi does not store any information.

name: string

name represents a name of Record

offline?: Record_Offline

Offline does not store any information.

pubKey?: Any

pub_key represents a public key in any format