From 47c678c50be0fa3980a38d51843c4e824132190b Mon Sep 17 00:00:00 2001 From: Tomi_Ohl Date: Mon, 29 Apr 2024 22:27:50 +0200 Subject: [PATCH] Fix lint --- contracts/interfaces/IConfigurableGuildRewardNFT.sol | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contracts/interfaces/IConfigurableGuildRewardNFT.sol b/contracts/interfaces/IConfigurableGuildRewardNFT.sol index cf7e245..2b9c2dd 100644 --- a/contracts/interfaces/IConfigurableGuildRewardNFT.sol +++ b/contracts/interfaces/IConfigurableGuildRewardNFT.sol @@ -35,6 +35,9 @@ interface IConfigurableGuildRewardNFT { address factoryProxyAddress ) external; + // Disable solhint for the next functions because this seems to be the only way the docgen plugin works correctly. + // solhint-disable max-line-length + /// @notice Claims tokens to the given address. /// @param amount The amount of tokens to mint. Should be less or equal to mintableAmountPerUser. /// @param receiver The address that receives the token. @@ -56,6 +59,8 @@ interface IConfigurableGuildRewardNFT { /// @param signature The following signed by validSigner: amount, signedAt, receiver, userId, chainId, the contract's address. function burn(uint256[] calldata tokenIds, uint256 userId, uint256 signedAt, bytes calldata signature) external; + // solhint-enable max-line-length + /// @notice Sets the locked (i.e. soulboundness) status of all of the tokens in this NFT. /// @dev Only callable by the owner. /// @param newLocked Whether the token should be soulbound or not.