DistributePayouts
Emitted from:
Definition
event DistributePayouts(
  uint256 indexed fundingCycleConfiguration,
  uint256 indexed fundingCycleNumber,
  uint256 indexed projectId,
  address beneficiary,
  uint256 amount,
  uint256 distributedAmount,
  uint256 fee,
  uint256 beneficiaryDistributionAmount,
  string memo,
  address caller
);
- fundingCycleConfigurationis the funding cycle configuration during which payouts were distributed.
- fundingCycleNumberis the number of the funding cycle during which payouts were distributed.
- projectIdis the ID of the project that had payout distributed.
- beneficiaryis the address who owns the project and who received any leftover payouts after splits were settled.
- amountis the total amount that was distributed.
- distributedAmountis the total amount of tokens that were distributed from the project's balance.
- feeis the total amount of tokens that were paid as a fee as a result of the distribution.
- beneficiaryDistributionAmountis the total amount of tokens that was distributed to the beneficiary.
- memois a note that was attached.
- calleris the address that issued the transaction within which the event was emitted.