findSaplingAddressFrom method

SaplingDerivedAddress? findSaplingAddressFrom(
  1. DiversifierIndex from, {
  2. Bip44Changes scope = Bip44Changes.chainExt,
})

Finds the first Sapling-derived address starting from the given diversifier index within the specified scope.

Implementation

SaplingDerivedAddress? findSaplingAddressFrom(
  DiversifierIndex from, {
  Bip44Changes scope = Bip44Changes.chainExt,
}) {
  return toUnifiedIncomingViewingKey(
    scope: scope,
  ).findSaplingAddressFrom(from);
}