Skip to main content

CommandOutput

A value produced or modified during command execution.

This can represent either a return value from a command or an argument that was mutated by reference.

type CommandOutput {
argument: TransactionArgument
value: MoveValue
}

Fields

CommandOutput.argument ● TransactionArgument union

The transaction argument that this value corresponds to (if any).

CommandOutput.value ● MoveValue object

The structured Move value, if available.

Member Of

CommandResult object