Variable Data_EthTrace

Data_EthTrace: {
    create(
        base?: {
            block?: { [key: string]: any };
            timestamp?: Date;
            trace?: { [key: string]: any };
            transaction?: { [key: string]: any };
            transactionReceipt?: { [key: string]: any };
        },
    ): Data_EthTrace;
    decode(input: Uint8Array | Reader, length?: number): Data_EthTrace;
    encode(message: Data_EthTrace, writer?: Writer): Writer;
    fromJSON(object: any): Data_EthTrace;
    fromPartial(
        object: {
            block?: { [key: string]: any };
            timestamp?: Date;
            trace?: { [key: string]: any };
            transaction?: { [key: string]: any };
            transactionReceipt?: { [key: string]: any };
        },
    ): Data_EthTrace;
    toJSON(message: Data_EthTrace): unknown;
}