Interface TransactionAnalysisObservation

interface TransactionAnalysisObservation {
    message: string;
    severity: "info" | "warn" | "danger";
    source: string;
}

Properties

message: string

Observation message describing the issue or finding

Example

"Transaction simulation succeeded"
severity: "info" | "warn" | "danger"

Severity level of the observation

Example

"info"
source: string

Source of the observation (e.g., simulation, validation, custom)

Example

"simulation"