interface SimulationStateDiff {
    address: string;
    dirty?: object;
    original?: object;
    raw: SimulationStateDiffRaw[];
    soltype?: object;
}

Properties

address: string

Contract address with state changes

Example

"0x00000000219ab540356cbb839cbe05303d7705fa"
dirty?: object

Dirty value (if available)

Example

null
original?: object

Original value (if available)

Example

null

Raw state diff entries

soltype?: object

Solidity type information (if available)

Example

null