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