notificationAddress method

String notificationAddress(
  1. Chain chain
)

Implementation

String notificationAddress(Chain chain) {
  final childKey = derivePublicKey(0);
  final pkHash = hash160(childKey.bytes);
  return P2pkhAddr(pkHash).encode(chain);
}