decodeAddr method
Decodes a Monero (XMR) address.
Implementation
@override
List<int> decodeAddr(String addr, {List<int>? netVersion}) {
netVersion = AddrKeyValidator.getAddrArg<List<int>>(
netVersion,
"netVersion",
);
final decodeAddr = decode(addr, netVerBytes: netVersion);
return decodeAddr.keyBytes;
}