address method

UnifiedDerivedAddress address({
  1. required DiversifierIndex index,
  2. UnifiedAddressRequest? request,
  3. Bip44Changes scope = Bip44Changes.chainExt,
})

Returns the unified address at the given index, using the specified address request configuration.

Implementation

UnifiedDerivedAddress address({
  required DiversifierIndex index,
  UnifiedAddressRequest? request,
  Bip44Changes scope = Bip44Changes.chainExt,
}) {
  return toUnifiedIncomingViewingKey(scope: scope).address(
    index: index,
    request: request ?? config.toUnifiedAddressRequest(),
  );
}