Filter for selecting traces based on various criteria

interface TraceFilter {
    address?: string[];
    callType?: string[];
    from?: string[];
    rewardType?: string[];
    sighash?: string[];
    to?: string[];
    type?: string[];
}

Properties

address?: string[]
callType?: string[]
from?: string[]
rewardType?: string[]
sighash?: string[]
to?: string[]
type?: string[]