export interface Tx {
    description: string;
    hash: string;
    gasPrice: number;
    from: string;
    to: string;
    data: any;
    value: number | '0x' | '0x0';
    gas: number;
    blockHash: string;
    blockNumber: string;
    nonce: number;
    timestamp: string;
    chainId: number;
    status: '0x1' | '0x0';
    transactionIndex: number;
    cumulativeGasUsed: number;
    logs: any[];
}
