Docs

LocalWalletLoadOptions

type LocalWalletLoadOptions =
| { password: string; storage?: AsyncStorage; strategy: "encryptedJson" }
| {
storage?: AsyncStorage;
strategy: "privateKey";
}
| {
storage?: AsyncStorage;
strategy: "mnemonic";
};