export interface TransferLog {
    name: string;
    anonymous: boolean;
    raw: {
        address: string;
        topics: string[];
        data: string;
    };
    inputs: {
        value: number | string;
        type: string;
        name: string;
        indexed: boolean;
    }[];
}
export interface TraceCall {
    type: string;
    from: string;
    to: string;
    value?: string;
    input?: string;
    output?: string;
    gas?: string;
    gasUsed?: string;
    calls?: TraceCall[];
}
