Block
struct Block : Codable
The data structure for the block in Flow blockchain
-
The identification of block
Declaration
Swift
public let id: ID -
The identification of previous block
Declaration
Swift
public let parentId: ID -
The height of block
Declaration
Swift
public let height: UInt64 -
The time when the block is created
Declaration
Swift
public let timestamp: Date -
Declaration
Swift
public var collectionGuarantees: [CollectionGuarantee] -
Declaration
Swift
public var blockSeals: [BlockSeal] -
The list of signature of the block
Declaration
Swift
public var signatures: [Signature]?
View on GitHub