TransactionReceipt
interface TransactionReceipt {
blockHash: string;
blockNumber: number;
byzantium: boolean;
confirmations: number;
contractAddress: string;
cumulativeGasUsed: BigNumber;
effectiveGasPrice: BigNumber;
from: string;
gasUsed: BigNumber;
logs: Array<Log>;
logsBloom: string;
root?: string;
status?: number;
to: string;
transactionHash: string;
transactionIndex: number;
type: number;
}