-
Notifications
You must be signed in to change notification settings - Fork 63
contract.ERC20SaleExtension
Aleksey Bykhun edited this page Jan 18, 2023
·
1 revision
Inherits: NFTExtension, Ownable
IERC20 public currency;
uint256 public price;
uint256 public maxPerMint;
constructor(address _nft, address _currencyAddress, uint256 _price, uint256 _maxPerMint) NFTExtension(_nft);
function mint(uint256 nTokens) external;
function changeCurrency(address _newCurrency, uint256 _newPrice) external onlyOwner;
event currencyChanged(address indexed newCurrency, uint256 newPrice);