Type guard to check if a value is an ExecutionResultV7.
The value to check
True if the value matches the ExecutionResultV7 structure
if (isExecutionResultV7(result)) { console.log(result.preOpGas); console.log(result.targetSuccess);} Copy
if (isExecutionResultV7(result)) { console.log(result.preOpGas); console.log(result.targetSuccess);}
Type guard to check if a value is an ExecutionResultV7.