RogueBot token pricing
RogueBot token prices are determined only by the bot's betting performance, are fully verifiable in real-time and cannot be manipulated by anyone.
balance.actual_balance = address(this).balance;
balance.pool_token_supply = this.totalSupply();
balance.pool_token_price_bid = (balance.actual_balance * 1000000000000000000) / balance.pool_token_supply; // assumes all unsettled bets will lose
balance.pool_token_price_ask = ((balance.actual_balance + (balance.unsettled_bets * 2)) * 1000000000000000000) / balance.pool_token_supply; // assumes all unsettled bets will winLast updated
Was this helpful?