findAddress method
UnifiedDerivedAddress
findAddress({
- required DiversifierIndex from,
- Bip44Changes scope = Bip44Changes.chainExt,
- UnifiedAddressRequest request = const UnifiedAddressRequest.defaultRequest(),
Finds the first unified address starting from the given index that matches the specified request.
Implementation
UnifiedDerivedAddress findAddress({
required DiversifierIndex from,
Bip44Changes scope = Bip44Changes.chainExt,
UnifiedAddressRequest request =
const UnifiedAddressRequest.defaultRequest(),
}) {
return toUnifiedIncomingViewingKey(
scope: scope,
).findAddress(from: from, request: request);
}