interface ChunkResult {
    author: string;
    header: ChunkHeader;
    receipts: any[];
    transactions: Transaction[];
}

Properties

author: string
header: ChunkHeader
receipts: any[]
transactions: Transaction[]