type KeystoreAccount: {
  "address": string;
  "mnemonic": {
     "entropy": string;
     "locale": string;
     "path": string;
    };
  "privateKey": string;
};

The contents of a JSON Keystore Wallet.

Type declaration

address

address: string;

mnemonic?

optional mnemonic: {
  "entropy": string;
  "locale": string;
  "path": string;
};

mnemonic.entropy

entropy: string;

mnemonic.locale?

optional locale: string;

mnemonic.path?

optional path: string;

privateKey

privateKey: string;

Source

wallet/json-keystore.ts:28