checkEncryptedSeedExist method

Future<bool> checkEncryptedSeedExist(
  1. KeyringEVM keyring,
  2. EthWalletData acc,
  3. EVMKeyType keyType
)

Decrypt and get the backup of seed.

Implementation

Future<bool> checkEncryptedSeedExist(
    KeyringEVM keyring, EthWalletData acc, EVMKeyType keyType) async {
  return keyring.store.checkSeedExist(keyType, acc.address ?? '');
}