findAddress method

ShieldAddress<DiversifiedTransmissionKey>? findAddress({
  1. DiversifierIndex? from,
  2. Bip44Changes scope = Bip44Changes.chainExt,
})

Implementation

ShieldAddress? findAddress({
  DiversifierIndex? from,
  Bip44Changes scope = Bip44Changes.chainExt,
}) {
  final viewKey = getViewKey(scope: scope);
  return viewKey.findAddress(from ?? DiversifierIndex.zero())?.$1;
}