Risk Management
Dumont allows users to place bets within a specific range, determined by the values returned from the Vault contract where all the USDT of the pool is stored.
Minimum bet
Dumont is a blockchain-based gambling card game played between two sides: the operator and the player. Since each transaction incurs a network fee for both parties, we have set 1 USDT as the minimum bet amount to ensure that each bet is worthwhile.
To get the minimum bet amount, call vault.getMinimumBetAmount()
.
Maximum bet
To prevent the sudden depletion of the game liquidity pool, we have implemented a cap on the maximum USDT winnings a player can have, limiting it to 2% of the total system liquidity. This cap helps reduce the risk of draining the pool and contributes to the stability of the game.
To get the maximum total bet amount, call vault.getMaximumBetAmount()
.
Last updated