Skip to main content

ExecutionResult

The execution result of a transaction, including the transaction effects and any potential errors due to signing or quorum-driving.

type ExecutionResult {
effects: TransactionEffects
errors: [String!]
}

Fields

ExecutionResult.effects ● TransactionEffects object

The effects of the transaction execution, if successful.

ExecutionResult.errors ● [String!] list scalar

Errors that occurred during execution (e.g., network errors, validation failures). These are distinct from execution failures within the transaction itself.

Returned By

executeTransaction mutation