Interface ScriptExecutionResult

Result of script execution.

interface ScriptExecutionResult {
    complexity: number;
    error?: string;
    mutations: StateMutation[];
    returnValue?: unknown;
    success: boolean;
}

Properties

complexity: number
error?: string
mutations: StateMutation[]
returnValue?: unknown
success: boolean