nimiqclient.models.block.BlockTemplateBody

class nimiqclient.models.block.BlockTemplateBody(hash, minerAddr, extraData, transactions, prunedAccounts, merkleHashes)[source]

Bases: object

Block template body returned by the server.

Parameters
  • hash (str) – 32-byte hex-encoded hash of the block body.

  • minerAddr (str) – 20-byte hex-encoded miner address.

  • extraData (str) – Hex-encoded value of the extra data field.

  • transactions (str) – List of hex-encoded transactions for this block.

  • prunedAccounts (str) – List of hex-encoded pruned accounts for this block.

  • merkleHashes (str) – List of hex-encoded hashes that verify the path of the miner address in the merkle tree. This can be used to change the miner address easily.

Methods