Admin Functions
Whitelist NFT for the rental protocol
function associateOriginalToLentAndBorrowedNFT(
address originalNFT,
address lentNFT,
address borrowedNFT,
address subLentNFT
) external onlyRole(TOKENS_MANAGER_ROLE);Protocol Fees collector
function setFeesCollector(address _feesCollector) public override onlyRole(FEES_MANAGER_ROLE)Protocol Fees percentage
function setFeesBasisPoints(uint16 basisPoints) public override onlyRole(FEES_MANAGER_ROLE)Last updated