|
|
|
@ -27,11 +27,11 @@ contract Unaboomer is ERC721, Owned {
|
|
|
|
|
/// Track mints per wallet to enforce maximum
|
|
|
|
|
mapping(address => uint256) public tokensMintedByWallet;
|
|
|
|
|
/// Maximum supply of BOOMR tokens
|
|
|
|
|
uint256 public constant MAX_SUPPLY = 35000;
|
|
|
|
|
uint256 public constant MAX_SUPPLY = 7896;
|
|
|
|
|
/// Maximum amount of survivors remaining to advance to the next round
|
|
|
|
|
uint256 public constant MAX_SURVIVOR_COUNT = 10000;
|
|
|
|
|
uint256 public constant MAX_SURVIVOR_COUNT = 1995;
|
|
|
|
|
/// Maximum amount of mints per wallet - cut down on botters
|
|
|
|
|
uint256 public constant MAX_MINT_AMOUNT = 35;
|
|
|
|
|
uint256 public constant MAX_MINT_AMOUNT = 20;
|
|
|
|
|
/// Amount of Unaboomers killed (tokens burned)
|
|
|
|
|
uint256 public burned;
|
|
|
|
|
/// Amount of Unaboomers radicalized (tokens minted)
|
|
|
|
|