HoldFee
Emitted from:
Definition
event HoldFee(
uint256 indexed projectId,
uint256 indexed amount,
uint256 indexed fee,
uint256 feeDiscount,
address beneficiary,
address caller
);
projectId
is the ID of the project whos fees are being held.amount
is the amount that a fee being held was taken from.fee
is the percent of the fee, out ofJBConstants.MAX_FEE
.feeDiscount
is the fee discount that was applicable at the time of holding the fee.beneficiary
is the address that should receive any benefits from later processing the fee.caller
is the address that issued the transaction within which the event was emitted.