Skip to main content

heldFeesOf

Contract: JBPayoutRedemptionPaymentTerminal​‌

Interface: IJBPayoutRedemptionPaymentTerminal

The fees that are currently being held to be processed later for each project.

Definition

function heldFeesOf(uint256 _projectId) external view override returns (JBFee[] memory) { ... }
  • Arguments:
    • _projectId is the ID of the project for which fees are being held.
  • The view function can be accessed externally by anyone.
  • The function does not alter state on the blockchain.
  • The resulting function overrides a function definition from the IJBPayoutRedemptionPaymentTerminal interface.
  • The function returns an array of fees that are being held.

Body

  1. This function just reads and returns the stored held fees of the project.

    return _heldFeesOf[_projectId];

    Internal references: