Skip to content

Commit

Permalink
chore: update maxSupply to 1111, price to 0.1, remove mint limit (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-a-v-i-n authored Jul 31, 2022
1 parent 5a35287 commit 11b28d9
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/Bibos.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ contract Bibos is ERC721, Owned {
STATE
//////////////////////////////////////////////////////////////*/

uint256 public constant price = .111 ether;
uint256 public constant maxMintAmount = 10;
uint256 public constant maxSupply = 999;
uint256 public constant price = .1 ether;
uint256 public constant maxSupply = 1111;

uint256 public totalSupply;
mapping(uint256 => bytes32) public seeds; // (tokenId => seed)
Expand Down Expand Up @@ -57,11 +56,6 @@ contract Bibos is ERC721, Owned {
_;
}

modifier OnlyIfFewerThanMaxMintAmount(uint256 _amount) {
if (_amount > maxMintAmount) revert TooManyBibos();
_;
}

modifier OnlyPositiveMintAmount(uint256 _amount) {
if (_amount == 0) revert ZeroMintAmount();
_;
Expand All @@ -71,7 +65,7 @@ contract Bibos is ERC721, Owned {
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/

constructor() ERC721("Bibos", "BBO") Owned(msg.sender) {}
constructor() ERC721("Bibos", "BIBO") Owned(msg.sender) {}

/*//////////////////////////////////////////////////////////////
TOKENURI
Expand All @@ -98,7 +92,6 @@ contract Bibos is ERC721, Owned {
OnlyIfNotMintedOut
OnlyIfYouPayEnough(_amount)
OnlyPositiveMintAmount(_amount)
OnlyIfFewerThanMaxMintAmount(_amount)
{
for (; _amount > 0; ) {
_mint(msg.sender);
Expand Down

0 comments on commit 11b28d9

Please sign in to comment.