Interface IBlock

Interface defining the structure of a block.

interface IBlock {
    header: IHeader;
    transactions: ITransaction[];
    verboseData?: IBlockVerboseData;
}

Properties

header: IHeader
transactions: ITransaction[]
verboseData?: IBlockVerboseData

Generated using TypeDoc