Programmable Transaction
data class ProgrammableTransaction(val inputs: List<CallArg>, val commands: List<Command>) : TransactionKind
Properties
Functions
Link copied to clipboard
infix suspend fun ProgrammableTransaction.compose(details: <Error class: unknown class><Account, <Error class: unknown class>>): String
Composes a ProgrammableTransaction into the final transaction bytes string. This is the infix version for a more expressive syntax.
suspend fun ProgrammableTransaction.compose(details: <Error class: unknown class><Account, <Error class: unknown class>>, sui: Sui = SuiKit.client): String
Composes a ProgrammableTransaction into the final transaction bytes string. This is the standard extension function.