Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TomiOhl committed Apr 29, 2024
1 parent 56419eb commit 47c678c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions contracts/interfaces/IConfigurableGuildRewardNFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit 47c678c

Please sign in to comment.