I want to add arguments to the application call in PyTeal:
Seq(
InnerTxnBuilder.Begin(),
InnerTxnBuilder.SetFields({
TxnField.type_enum: TxnType.ApplicationCall,
TxnField.application_id: Global.current_application_id(),
TxnField.on_completion: OnComplete.CloseOut,
TxnField.sender: Txn.accounts[1]
}),
InnerTxnBuilder.Submit(),
Int(1)
),
I want to add application_args to the transaction. Would this be an array of bytes?