From b99d0883265b95e085982327dddfa5ee6a132546 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 15 Nov 2024 10:17:41 -0500 Subject: [PATCH] add important natspec comment --- contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol b/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol index b85a9dccd24..946a6623b49 100644 --- a/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol +++ b/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol @@ -13,6 +13,7 @@ import {IERC165} from "../../../vendor/openzeppelin-solidity/v4.8.3/contracts/ut /// @notice A basic ERC20 compatible token contract with burn and minting roles. /// @dev The total supply can be limited during deployment. +/// @dev This contract has not been audited and is not yet approved for production use. contract BurnMintERC20 is IBurnMintERC20, IGetCCIPAdmin, IERC165, ERC20Burnable, AccessControl { error MaxSupplyExceeded(uint256 supplyAfterMint); error InvalidRecipient(address recipient);