ProgrammableTransaction
open class ProgrammableTransaction : Disposable, AutoCloseable, 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)
Constructors
| ProgrammableTransaction | constructor(inputs: List<Input>, commands: List<Command>) |
Functions
| Name | Summary |
|---|---|
| close | @Synchronized open override fun close() |
| commands | open override fun commands(): List<Command> The commands to be executed sequentially. A failure in any command will result in the failure of the entire transaction. |
| destroy | open override fun destroy() |
| equals | open operator override fun equals(other: Any?): Boolean |
| hashCode | open override fun hashCode(): Int |
| inputs | open override fun inputs(): List<Input> Input objects or primitive values |
| toString | open override fun toString(): String |