forked from techaddict0x/coinflipgamebsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontract.sol
More file actions
889 lines (768 loc) · 30.3 KB
/
contract.sol
File metadata and controls
889 lines (768 loc) · 30.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
/**
*Submitted for verification at Etherscan.io on 2023-01-27
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
contract CoinFlip is Ownable {
using Address for address;
using SafeMath for uint256;
event GameStarted(
address indexed better,
address token,
uint256 wager,
uint8 predictedOutcome,
uint32 id
);
event GameFinished(
address indexed better,
address token,
bool winner,
uint256 wager,
uint32 id
);
event PayoutComplete(
address indexed winner,
address token,
uint256 winnings
);
event DevFeeReceiverChanged(
address oldReceiver,
address newReceiver
);
event HouseFeeReceiverChanged(
address oldReceiver,
address newReceiver
);
event DevFeePercentageChanged(
uint8 oldPercentage,
uint8 newPercentage
);
event HouseFeePercentageChanged(
uint8 oldPercentage,
uint8 newPercentage
);
event ReferrerFeePercentageChanged(
uint8 oldPercentage,
uint8 newPercentage
);
struct Game {
address better;
address token;
uint32 id;
uint8 predictedOutcome;
bool finished;
bool winner;
uint256 wager;
uint256 startBlock;
}
struct Queue {
uint32 start;
uint32 end;
}
address public _houseFeeReceiver = address(0x32634D7a09AFb82550dB39644172aB138aAE0e8A);
uint8 public _houseFeePercentage = 30;
address public _devFeeReceiver = address(0x32634D7a09AFb82550dB39644172aB138aAE0e8A);
uint8 public _devFeePercentage = 3; //0.3%
uint8 public _referrerFeePercentage = 5;
mapping (address => bool) public _team;
mapping (address => bool) public _isBlacklisted;
// Game Details
mapping (uint256 => Game) public _games; // Game ID -> Game
Queue private _queuedGames;
bool _gameEnabled = true; // If we want to pause the flip game
uint32 public _queueResetSize = 1; // How many games we want to queue before finalizing a game
uint256 public _blockWaitTime = 2; // How many blocks we want to wait before finalizing a game
uint256 private _globalQueueSize;
mapping (address => mapping (address => uint256)) public _winnings;
mapping (address => uint256) public _minBetForToken;
mapping (address => uint256) public _maxBetForToken;
mapping (address => address) public _referrer;
modifier onlyTeam {
_onlyTeam();
_;
}
function _onlyTeam() private view {
require(_team[_msgSender()], "Only a team member may perform this action");
}
constructor()
{
_team[owner()] = true;
}
// To recieve BNB from anyone, including the router when swapping
receive() external payable {}
function withdrawBNB(uint256 amount) external onlyOwner {
(bool sent, bytes memory data) = _msgSender().call{value: amount}("");
require(sent, "Failed to send BNB");
}
function enterGame(uint256 wager, uint8 outcome, address token, address referrer) external payable {
require(_gameEnabled, "Game is currently paused");
require(!_isBlacklisted[_msgSender()], "This user is blacklisted");
require(!(_msgSender().isContract()), "Contracts are not allowed to play the game");
require(msg.sender == tx.origin, "Sender must be the same as the address that started the tx");
IERC20 gameToken = IERC20(token);
if (_minBetForToken[token] != 0) {
require(wager >= _minBetForToken[token], "This wager is lower than the minimum bet for this token");
}
if (_maxBetForToken[token] != 0) {
require(wager <= _maxBetForToken[token], "This wager is larger than the maximum bet for this token");
}
require(outcome < 2, "Must choose heads or tails (0 or 1)");
if (token != address(0x0)) {
require(wager <= gameToken.balanceOf(address(this)).div(2), "Can't bet more than the amount available in the contract to pay you");
gameToken.transferFrom(_msgSender(), address(this), wager);
} else {
require(wager <= address(this).balance.div(2), "Can't bet more than the amount available in the contract to pay you");
require(msg.value == wager, "Must send same amount as specified in wager");
}
if (referrer != address(0x0) && referrer != _msgSender() && (_referrer[_msgSender()] == address(0x0))) {
_referrer[_msgSender()] = referrer;
}
emit GameStarted(_msgSender(), token, wager, outcome, _queuedGames.end);
_games[_queuedGames.end++] = Game({better: _msgSender(), token: token, id: _queuedGames.end, predictedOutcome: outcome, finished: false, winner: false, wager: wager, startBlock: block.number});
_globalQueueSize++;
completeQueuedGames();
}
function completeQueuedGames() internal {
while (_globalQueueSize > _queueResetSize) {
Game storage game = _games[_queuedGames.start];
if (block.number < game.startBlock.add(_blockWaitTime) ||
game.better == _msgSender()) {
// Wait _blockWaitTime before completing this game, to avoid exploits.
// Don't allow someone to complete their own game
break;
}
_queuedGames.start++;
_globalQueueSize--;
game.winner = (rand() % 2) == game.predictedOutcome;
if (game.winner) {
_winnings[game.better][game.token] += (game.wager * 2);
}
game.finished = true;
emit GameFinished(game.better, game.token, game.winner, game.wager, game.id);
}
}
function rand() public view returns(uint256)
{
uint256 seed = uint256(keccak256(abi.encodePacked(
block.timestamp + block.difficulty +
((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (block.timestamp)) +
block.gaslimit +
((uint256(keccak256(abi.encodePacked(_msgSender())))) / (block.timestamp)) +
block.number + _globalQueueSize
)));
return seed;
}
// If you need to withdraw BNB, tokens, or anything else that's been sent to the contract
function withdrawToken(address _tokenContract, uint256 _amount) external onlyOwner {
IERC20 tokenContract = IERC20(_tokenContract);
// transfer the token from address of this contract
// to address of the user (executing the withdrawToken() function)
tokenContract.transfer(msg.sender, _amount);
}
function setTeamMember(address member, bool isTeamMember) external onlyOwner {
_team[member] = isTeamMember;
}
function setHouseFeeReceiver(address newReceiver) external onlyOwner {
require(newReceiver != address(0x0), "Can't set the zero address as the receiver");
require(newReceiver != _houseFeeReceiver, "This is already the house fee receiver");
emit HouseFeeReceiverChanged(_houseFeeReceiver, newReceiver);
_houseFeeReceiver = newReceiver;
}
function setHouseFeePercentage(uint8 newPercentage) external onlyOwner {
require(newPercentage != _houseFeePercentage, "This is already the house fee percentage");
require(newPercentage <= 40, "Cannot set house fee percentage higher than 4 percent");
emit HouseFeePercentageChanged(_houseFeePercentage, newPercentage);
_houseFeePercentage = newPercentage;
}
function setDevFeeReceiver(address newReceiver) external onlyOwner {
require(newReceiver != address(0x0), "Can't set the zero address as the receiver");
require(newReceiver != _devFeeReceiver, "This is already the dev fee receiver");
emit DevFeeReceiverChanged(_devFeeReceiver, newReceiver);
_devFeeReceiver = newReceiver;
}
function setDevFeePercentage(uint8 newPercentage) external onlyOwner {
require(newPercentage != _devFeePercentage, "This is already the dev fee percentage");
require(newPercentage <= 5, "Cannot set dev fee percentage higher than 0.5 percent");
emit DevFeePercentageChanged(_devFeePercentage, newPercentage);
_devFeePercentage = newPercentage;
}
function setReferrerFeePercentage(uint8 newPercentage) external onlyOwner {
require(newPercentage != _referrerFeePercentage, "This is already the referrer fee percentage");
require(newPercentage <= 20, "Cannot set dev fee percentage higher than 2 percent");
emit ReferrerFeePercentageChanged(_referrerFeePercentage, newPercentage);
_referrerFeePercentage = newPercentage;
}
function setQueueSize(uint32 newSize) external onlyTeam {
require(newSize != _queueResetSize, "This is already the queue size");
_queueResetSize = newSize;
}
function setGameEnabled(bool enabled) external onlyTeam {
require(enabled != _gameEnabled, "Must set a new value for gameEnabled");
_gameEnabled = enabled;
}
function setMinBetForToken(address token, uint256 minBet) external onlyTeam {
_minBetForToken[token] = minBet;
}
function setMaxBetForToken(address token, uint256 maxBet) external onlyTeam {
_maxBetForToken[token] = maxBet;
}
function setBlacklist(address wallet, bool isBlacklisted) external onlyTeam {
_isBlacklisted[wallet] = isBlacklisted;
}
function forceCompleteQueuedGames() external onlyTeam {
completeQueuedGames();
}
function claimWinnings(address token) external {
require(!_isBlacklisted[_msgSender()], "This user is blacklisted");
uint256 winnings = _winnings[_msgSender()][token];
require(winnings > 0, "This user has no winnings to claim");
IERC20 gameToken = IERC20(token);
if (token != address(0x0)) {
require(winnings <= gameToken.balanceOf(address(this)), "Not enough tokens in the contract to distribute winnings");
} else {
require(winnings <= address(this).balance, "Not enough BNB in the contract to distribute winnings");
}
delete _winnings[_msgSender()][token];
uint256 feeToHouse = winnings.mul(_houseFeePercentage).div(1000);
uint256 feeToDev = winnings.mul(_devFeePercentage).div(1000);
uint256 feeToReferrer = 0;
address referrer = _referrer[_msgSender()];
if (referrer != address(0x0)) {
feeToReferrer = winnings.mul(_referrerFeePercentage).div(1000);
}
uint256 winningsToUser = winnings.sub(feeToHouse).sub(feeToDev).sub(feeToReferrer);
if (token != address(0x0)) {
gameToken.transfer(_houseFeeReceiver, feeToHouse);
gameToken.transfer(_devFeeReceiver, feeToDev);
if (feeToReferrer > 0) {
gameToken.transfer(referrer, feeToReferrer);
}
gameToken.transfer(_msgSender(), winningsToUser);
} else {
_devFeeReceiver.call{value: feeToDev}("");
_houseFeeReceiver.call{value: feeToHouse}("");
if (feeToReferrer > 0) {
referrer.call{value: feeToReferrer}("");
}
_msgSender().call{value: winningsToUser}("");
}
completeQueuedGames();
emit PayoutComplete(_msgSender(), token, winningsToUser);
}
}