Max Bet Amount

The max bet amount is dynamic. It's set to always be 2% of the game's token pool.

function getMaxBetAmount() public view returns (uint256) {
        return (totalPool * 2) / 100;
    }

This means as the total pool for the game grows, users will be able to place larger and larger bets.

Last updated