Docs

LocalWalletSaveOptions

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