nimiqclient.models.account.VestingContract

class nimiqclient.models.account.VestingContract(id, address, balance, type, owner, ownerAddress, vestingStart, vestingStepBlocks, vestingStepAmount, vestingTotalAmount)[source]

Bases: nimiqclient.models.account.Account

Vesting contract object returned by the server.

Parameters
  • id (str) – Hex-encoded 20 byte address.

  • address (str) – User friendly address (NQ-address).

  • balance (int) – Balance of the account (in smallest unit).

  • type (AccountType) – The account type associated with the account.

  • owner (str) – Hex-encoded 20 byte address of the owner of the vesting contract.

  • ownerAddress (str) – User friendly address (NQ-address) of the owner of the vesting contract.

  • vestingStart (int) – The block that the vesting contracted commenced.

  • vestingStepBlocks (int) – The number of blocks after which some part of the vested funds is released.

  • vestingStepAmount (int) – The amount (in smallest unit) released every vestingStepBlocks blocks.

  • vestingTotalAmount (int) – The total amount (in smallest unit) that was provided at the contract creation.

Methods