addressAtIndex method

Future<Address> addressAtIndex({
  1. required int typeIndex,
  2. required int index,
})
override

Implementation

Future<Address> addressAtIndex({
  required int typeIndex,
  required int index,
}) async {
  final publicKey = await pubKeyCallback(index: index, typeIndex: typeIndex);
  return Address.publicKey(prefix: addressPrefix, publicKey: publicKey);
}