packStdSmcAddr function
Pack address std smd or throw error Returns new packed address as string
Implementation
Future<String> packStdSmcAddr({
required Address address,
required bool base64Url,
required bool bounceable,
}) {
return createLib().packStdSmcAddr(
addr: address.address,
base64Url: base64Url,
bounceable: bounceable,
);
}