Interface Data_EthTransaction

interface Data_EthTransaction {
    block?: {
        [key: string]: any;
    };
    timestamp: undefined | Date;
    trace?: {
        [key: string]: any;
    };
    transaction: undefined | {
        [key: string]: any;
    };
    transactionReceipt?: {
        [key: string]: any;
    };
}

Properties

block?: {
    [key: string]: any;
}
timestamp: undefined | Date
trace?: {
    [key: string]: any;
}
transaction: undefined | {
    [key: string]: any;
}
transactionReceipt?: {
    [key: string]: any;
}