ntPackStdSmcAddr function

String ntPackStdSmcAddr({
  1. required String addr,
  2. required bool base64Url,
  3. required bool bounceable,
})

Pack address std smd or throw error Returns new packed address as string

Implementation

String ntPackStdSmcAddr(
        {required String addr,
        required bool base64Url,
        required bool bounceable}) =>
    NekotonBridge.instance.api.crateApiMergedNtPackStdSmcAddr(
        addr: addr, base64Url: base64Url, bounceable: bounceable);