diff --git a/src/Main.sol b/src/Main.sol index f745b52..623f5ba 100644 --- a/src/Main.sol +++ b/src/Main.sol @@ -75,7 +75,7 @@ contract Main is Owned { /// Point to the latest leaderboard update uint256 public leaderboardPointer; /// Price of the Unaboomer ERC-721 token - uint256 public unaboomerPrice = 0.01 ether; + uint256 public unaboomerPrice = 0.05 ether; /// Price of the Mailbomb ERC-1155 token uint256 public bombPrice = 0.0025 ether; /// If mail bombs can be sent by players diff --git a/src/Unaboomer.sol b/src/Unaboomer.sol index 55ab93a..d82bbbc 100644 --- a/src/Unaboomer.sol +++ b/src/Unaboomer.sol @@ -27,9 +27,9 @@ 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 = 10000; + uint256 public constant MAX_SUPPLY = 5000; /// Maximum amount of survivors remaining to advance to the next round - uint256 public constant MAX_SURVIVOR_COUNT = 5000; + uint256 public constant MAX_SURVIVOR_COUNT = 2500; /// Maximum amount of mints per wallet - cut down on botters uint256 public constant MAX_MINT_AMOUNT = 25; /// Amount of Unaboomers killed (tokens burned)