SignedBlock
public struct SignedBlock : _BlockHeader, Equatable
A type representing a Steem block.
-
The transactions included in this block.
Declaration
Swift
public let transactions: [Transaction] -
The block number.
Declaration
Swift
public var num: UInt32 { get } -
Create a new Signed block.
Declaration
Swift
public init(header: SignedBlockHeader, transactions: [Transaction]) -
Declaration
Swift
public var previous: BlockId { get } -
Declaration
Swift
public var timestamp: Date { get } -
Declaration
Swift
public var witness: String { get } -
Declaration
Swift
public var transactionMerkleRoot: Data { get } -
Declaration
Swift
public var extensions: [BlockExtension] { get } -
Declaration
Swift
public var witnessSignature: Signature { get } -
Declaration
Swift
public init(from decoder: Decoder) throws -
Declaration
Swift
public func encode(to encoder: Encoder) throws
View on GitHub
SignedBlock Structure Reference