Skip to main content

distributeReservedTokensOf

Contract: JBController​‌

Interface: IJBController

Distributes all outstanding reserved tokens for a project.

Definition

function distributeReservedTokensOf(uint256 _projectId, string memory _memo)
external
virtual
override
returns (uint256) { ... }
  • Arguments:
    • _projectId is the ID of the project to which the reserved tokens belong.
    • _memo is a memo to pass along to the emitted event.
  • The function can be accessed externally by anyone.
  • The function can be overriden by inheriting contracts.
  • The function overrides a function definition from the IJBController interface.
  • The function returns the amount of minted reserved tokens.

Body

  1. Forward the call to the internal version of the function that is also used by other operations.

    return _distributeReservedTokensOf(_projectId, _memo);

    Internal references: