12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)
- pragma solidity ^0.8.0;
- import "../ERC20Upgradeable.sol";
- import "../../../proxy/utils/Initializable.sol";
- /**
- * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
- */
- abstract contract ERC20CappedUpgradeable is Initializable, ERC20Upgradeable {
- uint256 private _cap;
- /**
- * @dev Sets the value of the `cap`. This value is immutable, it can only be
- * set once during construction.
- */
- function __ERC20Capped_init(uint256 cap_) internal onlyInitializing {
- __ERC20Capped_init_unchained(cap_);
- }
- function __ERC20Capped_init_unchained(uint256 cap_) internal onlyInitializing {
- require(cap_ > 0, "ERC20Capped: cap is 0");
- _cap = cap_;
- }
- /**
- * @dev Returns the cap on the token's total supply.
- */
- function cap() public view virtual returns (uint256) {
- return _cap;
- }
- /**
- * @dev See {ERC20-_mint}.
- */
- function _mint(address account, uint256 amount) internal virtual override {
- require(ERC20Upgradeable.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
- super._mint(account, amount);
- }
- /**
- * This empty reserved space is put in place to allow future versions to add new
- * variables without shifting down storage in the inheritance chain.
- * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
- */
- uint256[50] private __gap;
- }
|