Admin Methods

ITO V1 contract admin methods

The methods on this page are only available to the DAO. These methods cannot be executed by non owners.

SetProtocolFee

function setProtocolFee(
        address _protocolFeeRecipientAddress, 
        uint16 _protocolFeeBp
    ) external onlyOwner;

Description: Allows owner to set protocol fee recipient address and protocol fee percentage (max)

Inputs:

  • _protocolFeeRecipientAddress - The address where protocol fees should flow to

  • _protocolFeeBp - The protocol fee in basis points (100 = 1%)

Note: the protocolFeeBp can not be set to a value higher than MAX_FEE_BP (4999 = 49.99%)

Last updated