ProgrammableTransaction

data class ProgrammableTransaction(val inputs: List<CallArg>, val commands: List<Command>) : TransactionKind

Constructors

Link copied to clipboard
constructor(inputs: List<CallArg>, commands: List<Command>)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
infix suspend fun ProgrammableTransaction.compose(details: Pair<Account, ULong>): 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: Pair<Account, ULong>, sui: Sui = SuiKit.client): String

Composes a ProgrammableTransaction into the final transaction bytes string. This is the standard extension function.