interface ReceiptInformation {
    blobGasPrice?: string;
    blobGasUsed?: string;
    blockHash: string;
    blockNumber: string;
    contractAddress?: ContractAddress;
    cumulativeGasUsed: string;
    effectiveGasPrice: string;
    from: string;
    gasUsed: string;
    logs: Logs;
    logsBloom: string;
    root?: string;
    status?: string;
    to?: To;
    transactionHash: string;
    transactionIndex: string;
    type?: string;
}

Properties

blobGasPrice?: string
blobGasUsed?: string
blockHash: string
blockNumber: string
contractAddress?: ContractAddress
cumulativeGasUsed: string
effectiveGasPrice: string
from: string
gasUsed: string
logs: Logs
logsBloom: string
root?: string
status?: string
to?: To
transactionHash: string
transactionIndex: string
type?: string