nimiqclient.models.block.Block¶
-
class
nimiqclient.models.block.
Block
(number, hash, pow, parentHash, nonce, bodyHash, accountsHash, difficulty, timestamp, confirmations, miner, minerAddress, extraData, size, transactions)[source]¶ Bases:
object
Block returned by the server.
- Parameters
number (int) – Height of the block.
hash (str) – Hex-encoded 32-byte hash of the block.
pow (str) – Hex-encoded 32-byte Proof-of-Work hash of the block.
parentHash (str) – Hex-encoded 32-byte hash of the predecessor block.
nonce (int) – The nonce of the block used to fulfill the Proof-of-Work.
bodyHash (str) – Hex-encoded 32-byte hash of the block body Merkle root.
accountsHash (str) – Hex-encoded 32-byte hash of the accounts tree root.
difficulty (str) – Block difficulty, encoded as decimal number in string.
timestamp (int) – UNIX timestamp of the block.
confirmations (int) – Number of confirmations for this transaction (number of blocks on top of the block where this transaction was in).
miner (str) – Hex-encoded 20 byte address of the miner of the block.
minerAddress (str) – User friendly address (NQ-address) of the miner of the block.
extraData (str) – Hex-encoded value of the extra data field, maximum of 255 bytes.
size (int) – Block size in byte.
transactions (list of (Transaction or str)) – List of transactions. Either represented by the transaction hash or a Transaction object.
Methods