// SPDX-License-Identifier: MIT
/*
* Double Trouble
*
* TG t.me/DoubleTrouble_ERC
* Twitter/X: https://twitter.com/DoubleT_ERC
* Web: https://double-trouble.org/
* Dapp: https://app.double-trouble.org/
*/
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 cheTroublemakerr 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;
}
}
}
pragma solidity 0.8.9;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract DOUBLETROUBLE is Context, Ownable {
using SafeMath for uint256;
uint256 private Chaos_TO_Buy_1Troublemaker = 86400;//for final version should be seconds in a day
uint256 private PSN = 10000;
uint256 private PSNH = 5000;
uint256 private devFeeVal = 10;
bool private initialized = false;
address payable private recAdd;
mapping (address => uint256) private Factory;
mapping (address => uint256) private claimedChaos;
mapping (address => uint256) private lastBuy;
mapping (address => address) private referrals;
uint256 private marketChaos;
event TransactionInfo(address indexed sender, uint256 value, uint256 newTroublemakers);
constructor() {
recAdd = payable(msg.sender);
}
function ContributeToTVL () public payable {
}
function CompoundChaos(address ref) public {
require(initialized);
if(ref == msg.sender) {
ref = address(0);
}
if(referrals[msg.sender] == address(0) && referrals[msg.sender] != msg.sender) {
referrals[msg.sender] = ref;
}
uint256 ChaosUsed = getMyChaos(msg.sender);
uint256 newTroublemaker = SafeMath.div(ChaosUsed,Chaos_TO_Buy_1Troublemaker);
Factory[msg.sender] = SafeMath.add(Factory[msg.sender],newTroublemaker);
claimedChaos[msg.sender] = 0;
lastBuy[msg.sender] = block.timestamp;
//send referral Chaos
claimedChaos[referrals[msg.sender]] = SafeMath.add(claimedChaos[referrals[msg.sender]],SafeMath.div(ChaosUsed,10));
//boost market to counter inflation
marketChaos=SafeMath.add(marketChaos,SafeMath.div(ChaosUsed,2));
}
function CauseTrouble() public {
require(initialized);
uint256 hasChaos = getMyChaos(msg.sender);
uint256 ChaosValue = calculateChaosell(hasChaos);
uint256 fee = devFee(ChaosValue);
claimedChaos[msg.sender] = 0;
lastBuy[msg.sender] = block.timestamp;
marketChaos = SafeMath.add(marketChaos,hasChaos);
recAdd.transfer(fee);
payable (msg.sender).transfer(SafeMath.sub(ChaosValue,fee));
Factory[msg.sender] = SafeMath.div(Factory[msg.sender],2);
}
function ChaosRewards(address adr) public view returns(uint256) {
uint256 hasChaos = getMyChaos(adr);
uint256 ChaosValue = calculateChaosell(hasChaos);
return ChaosValue;
}
function BuyTroublemakers(address ref) public payable {
require(initialized);
uint256 tvl = address(this).balance; // get the TVL
uint256 maxPayment = SafeMath.div(tvl, 5); // calculate the maximum payment allowed (20% of the TVL)
require(msg.value <= maxPayment && msg.value >= 0.01 ether, "Payment must equal or less than 1/5th of the contract balance and atleast 0.01 ETH");
uint256 ChaosBought = calculateBuyTroublemakers(msg.value,SafeMath.sub(address(this).balance,msg.value));
uint256 newTroublemakers = SafeMath.div(ChaosBought,Chaos_TO_Buy_1Troublemaker);
ChaosBought = SafeMath.sub(ChaosBought,devFee(ChaosBought));
uint256 fee = devFee(msg.value);
recAdd.transfer(fee);
claimedChaos[msg.sender] = SafeMath.add(claimedChaos[msg.sender],ChaosBought);
CompoundChaos(ref);
emit TransactionInfo(msg.sender, msg.value, newTroublemakers);
}
function calculateTrade(uint256 rt,uint256 rs, uint256 bs) private view returns(uint256) {
return SafeMath.div(SafeMath.mul(PSN,bs),SafeMath.add(PSNH,SafeMath.div(SafeMath.add(SafeMath.mul(PSN,rs),SafeMath.mul(PSNH,rt)),rt)));
}
function calculateChaosell(uint256 Chaos) public view returns(uint256) {
return calculateTrade(Chaos,marketChaos,address(this).balance);
}
function calculateBuyTroublemakers(uint256 eth,uint256 contractBalance) public view returns(uint256) {
return calculateTrade(eth,contractBalance,marketChaos);
}
function calculateBuyTroublemakersSimple(uint256 eth) public view returns(uint256) {
return calculateBuyTroublemakers(eth,address(this).balance);
}
function devFee(uint256 amount) private view returns(uint256) {
return SafeMath.div(SafeMath.mul(amount,devFeeVal),100);
}
function seedMarket() public payable onlyOwner {
require(marketChaos == 0);
initialized = true;
marketChaos = 108000000000;
}
function getBalance() public view returns(uint256) {
return address(this).balance;
}
function getMyTroublemaker(address adr) public view returns(uint256) {
return Factory[adr];
}
function getMyChaos(address adr) public view returns(uint256) {
return SafeMath.add(claimedChaos[adr],getChaosSinceLastBuy(adr));
}
function getChaosSinceLastBuy(address adr) public view returns(uint256) {
uint256 secondsPassed=min(Chaos_TO_Buy_1Troublemaker,SafeMath.sub(block.timestamp,lastBuy[adr]));
return SafeMath.mul(secondsPassed,Factory[adr]);
}
function min(uint256 a, uint256 b) private pure returns (uint256) {
return a < b ? a : b;
}
}
{
"compilationTarget": {
"DOUBLETROUBLE.sol": "DOUBLETROUBLE"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTroublemakers","type":"uint256"}],"name":"TransactionInfo","type":"event"},{"inputs":[{"internalType":"address","name":"ref","type":"address"}],"name":"BuyTroublemakers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"CauseTrouble","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"ChaosRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ref","type":"address"}],"name":"CompoundChaos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ContributeToTVL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"eth","type":"uint256"},{"internalType":"uint256","name":"contractBalance","type":"uint256"}],"name":"calculateBuyTroublemakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"eth","type":"uint256"}],"name":"calculateBuyTroublemakersSimple","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"Chaos","type":"uint256"}],"name":"calculateChaosell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"getChaosSinceLastBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"getMyChaos","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"getMyTroublemaker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seedMarket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]