getAddress method
Get the P2PKH (pay-to-pub-key-hash) address for a specific change and address index.
Implementation
@override
String getAddress(int changeIndex, int addressIndex) {
return P2PKHAddrEncoder().encodeKey(
getPublicKey(changeIndex, addressIndex).compressed,
{"net_ver": CoinsConf.bitcoinMainNet.params.p2pkhNetVer!});
}