Interface IRawBlock

Interface defining the structure of a raw block.

Raw block is a structure used by GetBlockTemplate and SubmitBlock RPCs and differs from IBlock in that it does not include verbose data and carries IRawHeader that does not include a cached block hash.

interface IRawBlock {
    header: IRawHeader;
    transactions: ITransaction[];
}

Properties

Properties

header: IRawHeader
transactions: ITransaction[]

Generated using TypeDoc