TEAL: How can I supply arguments to an inner transaction?

I want to do an inner transaction contract-to-contract call but can’t find any examples or docs for how to provide arguments to the appl itxn call. I can find examples for PyTEAL but not TEAL.

Take a look at this: The Algorand Virtual Machine (AVM) and TEAL. - Algorand Developer Portal

Just reuse this property
itxn_field ApplicationArgs

so something like

int 5 //first parm
itxn_field ApplicationArgs
int 6 //second parm
itxn_field ApplicationArgs
1 Like