getKeysToDerive method
Returns list of public keys that can be used in deriveKeys from
seed with masterKey
and password
.
Returns list of up to 100 public keys, that could be displayed by pages.
!!! Seed should not be legacy.
Implementation
@override
Future<List<PublicKey>> getKeysToDerive({
required PublicKey masterKey,
required String password,
int offset = 0,
int limit = _maxDeriveKeys,
}) {
return keyStore.getPublicKeys(
DerivedKeyGetPublicKeys(
masterKey: masterKey,
offset: offset,
limit: limit,
password: Password.explicit(
PasswordExplicit(
password: password,
cacheBehavior: const PasswordCacheBehavior.nop(),
),
),
),
);
}