diversifierIndex method
Returns the diversifier index corresponding to a given address.
Implementation
@override
DiversifierIndex? diversifierIndex(OrchardAddress address) {
final j = dk.diversifierIndex(address.diversifier);
if (addressAt(j) == address) {
return j;
}
return null;
}