import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Test is ERC721Enumerable, ReentrancyGuard, Ownable {
....
}
contract token is ERC20, AccessControl {
grantRole(DEFAULT_ADMIN_ROLE, msg.sender); // 讓 msg.sender 為 DEFAULT_ADMIN_ROLE
// _grantRole 的角色為 32byte sha3 算出來的,使用字串來產生 sha3
hasRole(bytes32 role, address account) // 確認地址擁有權限
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
// 使用 onlyRole 來限制某權限角色才可執行
f function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
}
}
}