findAddress method
ShieldAddress<DiversifiedTransmissionKey> ?
findAddress({
- DiversifierIndex? from,
- 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;
}