decodeAddr method
This method is used to convert an sui blockchain address from its string representation to its binary format for further processing.
Implementation
@override
List<int> decodeAddr(String addr, [Map<String, dynamic> kwargs = const {}]) {
final addressBytes = SuiAddressUtils.addressToBytes(addr);
return addressBytes;
}