Interface TraceAction

interface TraceAction {
    address?: string;
    balance?: string;
    callType?: string;
    from: string;
    gas: number;
    init?: string;
    input?: string;
    refundAddress?: string;
    to?: string;
    value: number;
}

Properties

address?: string
balance?: string
callType?: string
from: string
gas: number
init?: string
input?: string
refundAddress?: string
to?: string
value: number