findAddress method

UnifiedDerivedAddress findAddress({
  1. required DiversifierIndex from,
  2. Bip44Changes scope = Bip44Changes.chainExt,
  3. 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);
}