ProgrammableTransactionInterface
interface ProgrammableTransactionInterface
A user transaction
Contains a series of native commands and move calls where the results of one command can be used in future commands.
BCS
The BCS serialized form for this type is defined by the following ABNF:
ptb = (vector input) (vector command)
Inheritors
| ProgrammableTransaction |
Functions
| Name | Summary |
|---|---|
| commands | abstract fun commands(): List<Command> The commands to be executed sequentially. A failure in any command will result in the failure of the entire transaction. |
| inputs | abstract fun inputs(): List<Input> Input objects or primitive values |