From 95db480115dd5784a44e408a12a1bfd7321e3789 Mon Sep 17 00:00:00 2001 From: katzman Date: Tue, 25 Jun 2024 13:07:13 -0700 Subject: [PATCH] Add clarifying comment to ERC1155DiscountValidator --- src/L2/discounts/ERC1155DiscountValidator.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/L2/discounts/ERC1155DiscountValidator.sol b/src/L2/discounts/ERC1155DiscountValidator.sol index 131610f4..753d0b09 100644 --- a/src/L2/discounts/ERC1155DiscountValidator.sol +++ b/src/L2/discounts/ERC1155DiscountValidator.sol @@ -8,6 +8,7 @@ import {IDiscountValidator} from "src/L2/interface/IDiscountValidator.sol"; /// @title Discount Validator for: ERC1155 NFTs /// /// @notice Implements an NFT ownership validator for a stored `tokenId` for an ERC1155 `token` contract. +/// This discount validator should only be used for "soul-bound" tokens. /// /// @author Coinbase (https://github.com/base-org/usernames) contract ERC1155DiscountValidator is IDiscountValidator {