• Parses appArgs to bytes if arguments passed to App are similar to goal ('int:1', 'str:hello'..) https://developer.algorand.org/docs/features/asc1/stateful/#passing-arguments-to-stateful-smart-contracts eg. "int:1" => new Uint8Aarray([0, 0, 0, 0, 0, 0, 0, 1]) NOTE: parseAppArgs returns undefined to handle the case when application args passed to stateful smart contract is undefined

    Parameters

    • Optional appArgs: (string | Uint8Array)[]

      : arguments to stateful smart contract

    Returns Uint8Array[] | undefined

Generated using TypeDoc