123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts (last updated v4.5.0-rc.0) (token/ERC20/presets/ERC20PresetMinterPauser.sol)
- pragma solidity ^0.8.0;
- import "../ERC20Upgradeable.sol";
- import "../extensions/ERC20BurnableUpgradeable.sol";
- import "../extensions/ERC20PausableUpgradeable.sol";
- import "../../../access/AccessControlEnumerableUpgradeable.sol";
- import "../../../utils/ContextUpgradeable.sol";
- import "../../../proxy/utils/Initializable.sol";
- /**
- * @dev {ERC20} token, including:
- *
- * - ability for holders to burn (destroy) their tokens
- * - a minter role that allows for token minting (creation)
- * - a pauser role that allows to stop all token transfers
- *
- * This contract uses {AccessControl} to lock permissioned functions using the
- * different roles - head to its documentation for details.
- *
- * The account that deploys the contract will be granted the minter and pauser
- * roles, as well as the default admin role, which will let it grant both minter
- * and pauser roles to other accounts.
- *
- * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
- */
- contract ERC20PresetMinterPauserUpgradeable is Initializable, ContextUpgradeable, AccessControlEnumerableUpgradeable, ERC20BurnableUpgradeable, ERC20PausableUpgradeable {
- function initialize(string memory name, string memory symbol) public virtual initializer {
- __ERC20PresetMinterPauser_init(name, symbol);
- }
- bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
- bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
- /**
- * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
- * account that deploys the contract.
- *
- * See {ERC20-constructor}.
- */
- function __ERC20PresetMinterPauser_init(string memory name, string memory symbol) internal onlyInitializing {
- __ERC20_init_unchained(name, symbol);
- __Pausable_init_unchained();
- __ERC20PresetMinterPauser_init_unchained(name, symbol);
- }
- function __ERC20PresetMinterPauser_init_unchained(string memory, string memory) internal onlyInitializing {
- _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
- _setupRole(MINTER_ROLE, _msgSender());
- _setupRole(PAUSER_ROLE, _msgSender());
- }
- /**
- * @dev Creates `amount` new tokens for `to`.
- *
- * See {ERC20-_mint}.
- *
- * Requirements:
- *
- * - the caller must have the `MINTER_ROLE`.
- */
- function mint(address to, uint256 amount) public virtual {
- require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
- _mint(to, amount);
- }
- /**
- * @dev Pauses all token transfers.
- *
- * See {ERC20Pausable} and {Pausable-_pause}.
- *
- * Requirements:
- *
- * - the caller must have the `PAUSER_ROLE`.
- */
- function pause() public virtual {
- require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
- _pause();
- }
- /**
- * @dev Unpauses all token transfers.
- *
- * See {ERC20Pausable} and {Pausable-_unpause}.
- *
- * Requirements:
- *
- * - the caller must have the `PAUSER_ROLE`.
- */
- function unpause() public virtual {
- require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
- _unpause();
- }
- function _beforeTokenTransfer(
- address from,
- address to,
- uint256 amount
- ) internal virtual override(ERC20Upgradeable, ERC20PausableUpgradeable) {
- super._beforeTokenTransfer(from, to, 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;
- }
|