Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 582 Bytes

File metadata and controls

23 lines (16 loc) · 582 Bytes

_MAX_FEE

Contract: JBPayoutRedemptionPaymentTerminal​‌

Maximum fee that can be set for a funding cycle configuration.

Out of MAX_FEE (50_000_000 / 1_000_000_000).

Definition

/**
  @notice
  Maximum fee that can be set for a funding cycle configuration.

  @dev
  Out of MAX_FEE (50_000_000 / 1_000_000_000).
*/
uint256 private constant _FEE_CAP = 50_000_000;
  • This value must be hardcoded.
  • The resulting view function is private to this contract.