UseAllowance
Emitted from:
Definition
event UseAllowance(
  uint256 indexed fundingCycleConfiguration,
  uint256 indexed fundingCycleNumber,
  uint256 indexed projectId,
  address beneficiary,
  uint256 amount,
  uint256 distributedAmount,
  uint256 netDistributedamount,
  string memo,
  address caller
);
- fundingCycleConfigurationis the funding cycle configuration during which an allowance was used.
- fundingCycleNumberis the number of the funding cycle during which an allowance was used.
- projectIdis the ID of the project whose allowance was used.
- beneficiaryis the address whose received the allowance.
- amountis the amount of allowance that was used in terms of the funding cycle's currency.
- distributedAmountis the total amount of tokens that were distributed from the project's balance.
- netDistributedamountis the amount of tokens that were distributed to the beneficiary.
- memois a note that was attached.
- calleris the address that issued the transaction within which the event was emitted.