pragma solidity ^0.5.15;
interface ERC20 {
function totalSupply() external view returns (uint256 supply);
function balanceOf(address _owner) external view returns (uint256 balance);
function transfer(address _to, uint256 _value)
external
returns (bool success);
function transferFrom(
address _from,
address _to,
uint256 _value
) external returns (bool success);
function approve(address _spender, uint256 _value)
external
returns (bool success);
function allowance(address _owner, address _spender)
external
view
returns (uint256 remaining);
function decimals() external view returns (uint256 digits);
event Approval(
address indexed _owner,
address indexed _spender,
uint256 _value
);
}
contract HexDex {
/*=================================
= MODIFIERS =
=================================*/
// only people with tokens
modifier onlyBagholders() {
require(myTokens() > 0);
_;
}
// only people with profits
modifier onlyStronghands() {
require(myDividends(true) > 0);
_;
}
modifier onlyAdmin() {
require(msg.sender == administrator);
_;
}
/*==============================
= EVENTS =
==============================*/
event onTokenPurchase(
address indexed customerAddress,
bytes32 customerName,
uint256 incomingEthereum,
uint256 tokensMinted,
address indexed referredBy,
bool isReinvest
);
event onTokenSell(
address indexed customerAddress,
bytes32 customerName,
uint256 tokensBurned,
uint256 ethereumEarned
);
event onWithdraw(
address indexed customerAddress,
bytes32 customerName,
uint256 ethereumWithdrawn
);
// ERC20
event Transfer(address indexed from, address indexed to, uint256 tokens);
/*=====================================
= CONFIGURABLES =
=====================================*/
string public name = "HexDex";
string public symbol = "H3D";
uint8 public constant decimals = 8;
uint8 internal constant dividendFee_ = 10; // 10%
uint256 internal constant HEX_CENT = 1e6;
uint256 internal constant HEX = 1e8;
uint256 internal constant tokenPriceInitial_ = 1 * HEX;
uint256 internal constant tokenPriceIncremental_ = 10 * HEX_CENT;
uint256 internal constant magnitude = 2**64;
address internal constant tokenAddress = address(
0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39
);
uint256 internal cubeStartTime = now;
// admin for premine lock
address internal administrator;
// ambassadors
uint256 ambassadorLimit = HEX * 20000; // 20k hex per ambassador
uint256 devLimit = HEX * 100000;
mapping(address => bool) public ambassadors; // who the ambassadors are
mapping(address => bool) public dev;
address[33] ambassadorList = [
0xc951D3463EbBa4e9Ec8dDfe1f42bc5895C46eC8f,
0xe8f49490d2b172870b3B225e9fcD39b5D68b2e9E,
0x5161e1380cd661D7d993c8a3b3E57b059Ad8d7A4,
0x4Ca9046dcd4C8712450250208D7eD6fCEbAf75a5,
0xC697BE0b5b82284391A878B226e2f9AfC6B94710,
0x5cB87df0834cd82297C63eF075421401995914ae,
0x53F403421110BA93086BCFB40e80C7346035aDF6,
0x11ba6C4732B1a7f30deA51C23b8ED4c1F88dCD57,
0xb7032661C1DA18A52830A5e97bdE5569ed3c2A5F,
0x73c371F85246797e4f7f68F7F46b9261EBa2F853,
0xffc1eD0C150890c163D940146565df6064588d3e,
0x5DD516f5dC0E68C5A37D20284Dabd754e35AfF1c,
0x554fdECe1B1319075d7Bf2F5137076C21A202249,
0xcF7b442C41795e874b223D4ADeED8cda87A23d00,
0x87cb806192eC699398511c7aB44b3595C051D13C,
0x1c2c72269ce1aD29933F090547b4102a9c398f34,
0x9b411116f92504562EDCf3a1b14Ae226Bc1489Fc,
0x2E7E5DE7D87A29B16284092B19891c80B0F43eCa,
0xada8694dd1B511E72F467e7242E7123088aED064,
0x5269BF8720946b5c38FBf361a947bA9D30C91313,
0x21e0111e60D5449BdBa67ee6c014B5384644a714,
0xB96d8107D613b6b593b4531Fc353B282af7fbeF5,
0x71A4b5895A077806E8cd9F85a5253A9DEbd593fD,
0x73018870D10173ae6F71Cac3047ED3b6d175F274,
0x8E2Efa9eD16f07d9B153D295d35025FD677BaE99,
0x112b3496AAD76CD34a29C335266A968D65fBa10a,
0x9D7a76fD386eDEB3A871c3A096Ca875aDc1a55b7,
0x05227e4FA98a6415ef1927E902dc781AA7eD518a,
0x18600fE707D883c1FD16f002A09241D630270233,
0x8ec43a855007c61Ce75406DB8b2079207F7d597a,
0x09a054B60bd3B908791B55eEE81b515B93831E99,
0x982D72A38A2CB0ed8F2fae5B22C122f1C9c89a13,
0xa683C1b815997a7Fa38f6178c84675FC4c79AC2B
];
address[10] devList = [
0x818F1B08E38376E9635C5bE156B8786317e833b3,
0xa765a22C97c38c8Ce50FEA453cE92723C7637AA2,
0xEe54D208f62368B4efFe176CB548A317dcAe963F,
0x43678bB266e75F50Fbe5927128Ab51930b447eaB,
0x5138240E96360ad64010C27eB0c685A8b2eDE4F2,
0x39E00115d71313fD5983DE3Cf2b5820dd3Cc4447,
0xcFAa3449DFfB82Bf5B37e42FbCf43170c6C8e4AD,
0x90D20d17Cc9e07020bB490c5e34f486286d3Eeb2,
0x074F21a36217d7615d0202faA926aEFEBB5a9999,
0xAA7A7C2DECB180f68F11E975e6D92B5Dc06083A6
];
uint256 numAmbassadorsDeposited;
function depositPremine() public {
require(ambassadors[msg.sender]); // require them to be an ambassador
ambassadors[msg.sender] = false; // make them not an ambassador after this transaction! so they can't buy in twice
ERC20 Hex = ERC20(tokenAddress);
// you must deposit EXACTLY 20k
Hex.transferFrom(msg.sender, address(this), ambassadorLimit);
numAmbassadorsDeposited++;
}
uint256 numDevDeposited;
function depositDevPremine() public {
require(dev[msg.sender]);
dev[msg.sender] = false;
ERC20 Hex = ERC20(tokenAddress);
Hex.transferFrom(msg.sender, address(this), devLimit);
numDevDeposited++;
}
function executePremineBuy() public onlyAdmin() {
require(now < cubeStartTime);
ERC20 Hex = ERC20(tokenAddress);
// first buy in with 1 hex so that we don't black hole a bunch of stuff
Hex.transferFrom(msg.sender, address(this), 1 * HEX);
purchaseTokens(1 * HEX, address(0x0), false);
// then buy in the full amount with the amount of hex in the contract minus 1
purchaseTokens(
Hex.balanceOf(address(this)) - (1 * HEX),
address(0x0),
false
);
// now that we have a bunch of tokens, transfer them out to each ambassador fairly!
uint256 premineTokenShare = tokenSupply_ /
(numAmbassadorsDeposited + (numDevDeposited * 5));
for (uint256 i = 0; i < 33; i++) {
// if this call returns false, it means the person is NO LONGER an ambassador - which means they HAVE deposited
// which means we SHOULD give them their token share!
if (ambassadors[ambassadorList[i]] == false) {
transfer(ambassadorList[i], premineTokenShare);
}
}
for (uint256 j = 0; j < 10; j++) {
// if this call returns false, it means the person is NO LONGER an ambassador - which means they HAVE deposited
// which means we SHOULD give them their token share!
if (dev[devList[j]] == false) {
transfer(devList[j], premineTokenShare * 5);
}
}
}
function restart() public onlyAdmin() {
require(now < cubeStartTime);
// Only called if something goes wrong during premine
ERC20 Hex = ERC20(tokenAddress);
Hex.transfer(administrator, Hex.balanceOf(address(this)));
}
// username interface
UsernameInterface private username;
/*================================
= DATASETS =
================================*/
// amount of shares for each address (scaled number)
mapping(address => uint256) internal tokenBalanceLedger_;
mapping(address => uint256) internal referralBalance_;
mapping(address => int256) internal payoutsTo_;
mapping(address => bool) internal approvedDistributors;
uint256 internal tokenSupply_ = 0;
uint256 internal profitPerShare_;
/*=======================================
= PUBLIC FUNCTIONS =
=======================================*/
/*
* -- APPLICATION ENTRY POINTS --
*/
constructor(address usernameAddress, uint256 when_start) public {
ambassadors[0xc951D3463EbBa4e9Ec8dDfe1f42bc5895C46eC8f] = true;
ambassadors[0xe8f49490d2b172870b3B225e9fcD39b5D68b2e9E] = true;
ambassadors[0x5161e1380cd661D7d993c8a3b3E57b059Ad8d7A4] = true;
ambassadors[0x4Ca9046dcd4C8712450250208D7eD6fCEbAf75a5] = true;
ambassadors[0xC697BE0b5b82284391A878B226e2f9AfC6B94710] = true;
ambassadors[0x5cB87df0834cd82297C63eF075421401995914ae] = true;
ambassadors[0x53F403421110BA93086BCFB40e80C7346035aDF6] = true;
ambassadors[0x11ba6C4732B1a7f30deA51C23b8ED4c1F88dCD57] = true;
ambassadors[0xb7032661C1DA18A52830A5e97bdE5569ed3c2A5F] = true;
ambassadors[0x73c371F85246797e4f7f68F7F46b9261EBa2F853] = true;
ambassadors[0xffc1eD0C150890c163D940146565df6064588d3e] = true;
ambassadors[0x5DD516f5dC0E68C5A37D20284Dabd754e35AfF1c] = true;
ambassadors[0x554fdECe1B1319075d7Bf2F5137076C21A202249] = true;
ambassadors[0xcF7b442C41795e874b223D4ADeED8cda87A23d00] = true;
ambassadors[0x87cb806192eC699398511c7aB44b3595C051D13C] = true;
ambassadors[0x1c2c72269ce1aD29933F090547b4102a9c398f34] = true;
ambassadors[0x9b411116f92504562EDCf3a1b14Ae226Bc1489Fc] = true;
ambassadors[0x2E7E5DE7D87A29B16284092B19891c80B0F43eCa] = true;
ambassadors[0xada8694dd1B511E72F467e7242E7123088aED064] = true;
ambassadors[0x5269BF8720946b5c38FBf361a947bA9D30C91313] = true;
ambassadors[0x21e0111e60D5449BdBa67ee6c014B5384644a714] = true;
ambassadors[0xB96d8107D613b6b593b4531Fc353B282af7fbeF5] = true;
ambassadors[0x71A4b5895A077806E8cd9F85a5253A9DEbd593fD] = true;
ambassadors[0x73018870D10173ae6F71Cac3047ED3b6d175F274] = true;
ambassadors[0x8E2Efa9eD16f07d9B153D295d35025FD677BaE99] = true;
ambassadors[0x112b3496AAD76CD34a29C335266A968D65fBa10a] = true;
ambassadors[0x9D7a76fD386eDEB3A871c3A096Ca875aDc1a55b7] = true;
ambassadors[0x05227e4FA98a6415ef1927E902dc781AA7eD518a] = true;
ambassadors[0x18600fE707D883c1FD16f002A09241D630270233] = true;
ambassadors[0x8ec43a855007c61Ce75406DB8b2079207F7d597a] = true;
ambassadors[0x09a054B60bd3B908791B55eEE81b515B93831E99] = true;
ambassadors[0x982D72A38A2CB0ed8F2fae5B22C122f1C9c89a13] = true;
ambassadors[0xa683C1b815997a7Fa38f6178c84675FC4c79AC2B] = true;
dev[0x818F1B08E38376E9635C5bE156B8786317e833b3] = true;
dev[0xa765a22C97c38c8Ce50FEA453cE92723C7637AA2] = true;
dev[0xEe54D208f62368B4efFe176CB548A317dcAe963F] = true;
dev[0x43678bB266e75F50Fbe5927128Ab51930b447eaB] = true;
dev[0x5138240E96360ad64010C27eB0c685A8b2eDE4F2] = true;
dev[0x39E00115d71313fD5983DE3Cf2b5820dd3Cc4447] = true;
dev[0xcFAa3449DFfB82Bf5B37e42FbCf43170c6C8e4AD] = true;
dev[0x90D20d17Cc9e07020bB490c5e34f486286d3Eeb2] = true;
dev[0x074F21a36217d7615d0202faA926aEFEBB5a9999] = true;
dev[0xAA7A7C2DECB180f68F11E975e6D92B5Dc06083A6] = true;
username = UsernameInterface(usernameAddress);
cubeStartTime = when_start;
administrator = msg.sender;
}
function startTime() public view returns (uint256 _startTime) {
_startTime = cubeStartTime;
}
function approveDistributor(address newDistributor) public onlyAdmin() {
approvedDistributors[newDistributor] = true;
}
/**
* Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any)
*/
function buy(address _referredBy, uint256 amount) public returns (uint256) {
ERC20 Hex = ERC20(tokenAddress);
Hex.transferFrom(msg.sender, address(this), amount);
purchaseTokens(amount, _referredBy, false);
}
/**
* refuse to receive any tokens directly sent
*
*/
function() external payable {
revert();
}
function distribute(uint256 amount) external payable {
require(approvedDistributors[msg.sender] == true);
ERC20 Hex = ERC20(tokenAddress);
Hex.transferFrom(msg.sender, address(this), amount);
profitPerShare_ = SafeMath.add(
profitPerShare_,
(amount * magnitude) / tokenSupply_
);
}
/**
* Converts all of caller's dividends to tokens.
*/
function reinvest() public onlyStronghands() {
// fetch dividends
uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code
// pay out the dividends virtually
address _customerAddress = msg.sender;
payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude);
// retrieve ref. bonus
_dividends += referralBalance_[_customerAddress];
referralBalance_[_customerAddress] = 0;
// dispatch a buy order with the virtualized "withdrawn dividends"
purchaseTokens(_dividends, address(0x0), true);
}
/**
* Alias of sell() and withdraw().
*/
function exit() public {
// get token count for caller & sell them all
address _customerAddress = msg.sender;
uint256 _tokens = tokenBalanceLedger_[_customerAddress];
if (_tokens > 0) sell(_tokens);
withdraw();
}
/**
* Withdraws all of the callers earnings.
*/
function withdraw() public onlyStronghands() {
// setup data
address _customerAddress = msg.sender;
uint256 _dividends = myDividends(false); // get ref. bonus later in the code
// update dividend tracker
payoutsTo_[_customerAddress] += (int256)(_dividends * magnitude);
// add ref. bonus
_dividends += referralBalance_[_customerAddress];
referralBalance_[_customerAddress] = 0;
// lambo delivery service
ERC20 Hex = ERC20(tokenAddress);
Hex.transfer(_customerAddress, _dividends);
// fire event
emit onWithdraw(
_customerAddress,
username.getNameByAddress(msg.sender),
_dividends
);
}
/**
* Liquifies tokens to ethereum.
*/
function sell(uint256 _amountOfTokens) public onlyBagholders() {
// setup data
address _customerAddress = msg.sender;
require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
uint256 _tokens = _amountOfTokens;
uint256 _ethereum = tokensToEthereum_(_tokens);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
// burn the sold tokens
tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens);
tokenBalanceLedger_[_customerAddress] = SafeMath.sub(
tokenBalanceLedger_[_customerAddress],
_tokens
);
// update dividends tracker
int256 _updatedPayouts = (int256)(
profitPerShare_ * _tokens + (_taxedEthereum * magnitude)
);
payoutsTo_[_customerAddress] -= _updatedPayouts;
// dividing by zero is a bad idea
if (tokenSupply_ > 0) {
// update the amount of dividends per token
profitPerShare_ = SafeMath.add(
profitPerShare_,
(_dividends * magnitude) / tokenSupply_
);
}
// fire event
emit onTokenSell(
_customerAddress,
username.getNameByAddress(msg.sender),
_tokens,
_taxedEthereum
);
}
/**
* To heck with the transfer fee
* Who needs it
*/
function transfer(address _toAddress, uint256 _amountOfTokens)
public
onlyBagholders()
returns (bool)
{
// setup
address _customerAddress = msg.sender;
// make sure we have the requested tokens
require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
// withdraw all outstanding dividends first
if (myDividends(true) > 0) withdraw();
// exchange tokens
tokenBalanceLedger_[_customerAddress] = SafeMath.sub(
tokenBalanceLedger_[_customerAddress],
_amountOfTokens
);
tokenBalanceLedger_[_toAddress] = SafeMath.add(
tokenBalanceLedger_[_toAddress],
_amountOfTokens
);
// update dividend trackers
payoutsTo_[_customerAddress] -= (int256)(
profitPerShare_ * _amountOfTokens
);
payoutsTo_[_toAddress] += (int256)(profitPerShare_ * _amountOfTokens);
// fire event
emit Transfer(_customerAddress, _toAddress, _amountOfTokens);
// ERC20
return true;
}
/*---------- HELPERS AND CALCULATORS ----------*/
/**
* Method to view the current Ethereum stored in the contract
* Example: totalEthereumBalance()
*/
function totalEthereumBalance() public view returns (uint256) {
return address(this).balance;
}
/**
* Retrieve the total token supply.
*/
function totalSupply() public view returns (uint256) {
return tokenSupply_;
}
/**
* Retrieve the number of aambassadors deposited.
*/
function numAmbassadorsDep() public view returns (uint256) {
return numAmbassadorsDeposited;
}
/**
* Retrieve the number of developers deposited.
*/
function numDevDep() public view returns (uint256) {
return numDevDeposited;
}
/**
* Retrieve the tokens owned by the caller.
*/
function myTokens() public view returns (uint256) {
address _customerAddress = msg.sender;
return balanceOf(_customerAddress);
}
/**
* Retrieve the dividends owned by the caller.
* If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations.
* The reason for this, is that in the frontend, we will want to get the total divs (global + ref)
* But in the internal calculations, we want them separate.
*/
function myDividends(bool _includeReferralBonus)
public
view
returns (uint256)
{
address _customerAddress = msg.sender;
return
_includeReferralBonus
? dividendsOf(_customerAddress) +
referralBalance_[_customerAddress]
: dividendsOf(_customerAddress);
}
/**
* Retrieve the token balance of any single address.
*/
function balanceOf(address _customerAddress) public view returns (uint256) {
return tokenBalanceLedger_[_customerAddress];
}
/**
* Retrieve the dividend balance of any single address.
*/
function dividendsOf(address _customerAddress)
public
view
returns (uint256)
{
return
(uint256)(
(int256)(
profitPerShare_ * tokenBalanceLedger_[_customerAddress]
) - payoutsTo_[_customerAddress]
) / magnitude;
}
/**
* Return the sell price of 1 individual token.
*/
function sellPrice() public view returns (uint256) {
// our calculation relies on the token supply, so we need supply.
if (tokenSupply_ == 0) {
return tokenPriceInitial_ - tokenPriceIncremental_;
} else {
uint256 _ethereum = tokensToEthereum_(1e8);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
return _taxedEthereum;
}
}
/**
* Return the buy price of 1 individual token.
*/
function buyPrice() public view returns (uint256) {
if (tokenSupply_ == 0) {
return tokenPriceInitial_ + tokenPriceIncremental_;
} else {
uint256 _ethereum = tokensToEthereum_(1e8);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends);
return _taxedEthereum;
}
}
/**
* Function for the frontend to dynamically retrieve the price scaling of buy orders.
*/
function calculateTokensReceived(uint256 _ethereumToSpend)
public
view
returns (uint256)
{
uint256 _dividends = SafeMath.div(_ethereumToSpend, dividendFee_);
uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends);
uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
return _amountOfTokens;
}
/**
* Function for the frontend to dynamically retrieve the price scaling of sell orders.
*/
function calculateEthereumReceived(uint256 _tokensToSell)
public
view
returns (uint256)
{
require(_tokensToSell <= tokenSupply_);
uint256 _ethereum = tokensToEthereum_(_tokensToSell);
uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
return _taxedEthereum;
}
/*==========================================
= INTERNAL FUNCTIONS =
==========================================*/
function purchaseTokens(
uint256 _incomingEthereum,
address _referredBy,
bool isReinvest
) internal returns (uint256) {
if (now < startTime()) {
require(msg.sender == administrator);
}
// data setup
uint256 _undividedDividends = SafeMath.div(
_incomingEthereum,
dividendFee_
);
uint256 _referralBonus = SafeMath.div(_undividedDividends, 3);
uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus);
uint256 _taxedEthereum = SafeMath.sub(
_incomingEthereum,
_undividedDividends
);
uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
uint256 _fee = _dividends * magnitude;
require(
_amountOfTokens > 0 &&
(SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_)
);
// is the user referred by a masternode?
if (
// is this a referred purchase?
_referredBy != 0x0000000000000000000000000000000000000000 &&
// no cheating!
_referredBy != msg.sender
) {
// wealth redistribution
referralBalance_[_referredBy] = SafeMath.add(
referralBalance_[_referredBy],
_referralBonus
);
} else {
// no ref purchase
// add the referral bonus back to the global dividends
_dividends = SafeMath.add(_dividends, _referralBonus);
_fee = _dividends * magnitude;
}
// we can't give people infinite ethereum
if (tokenSupply_ > 0) {
// add tokens to the pool
tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens);
// take the amount of dividends gained through this transaction, and allocates them evenly to each shareholder
profitPerShare_ += ((_dividends * magnitude) / (tokenSupply_));
// calculate the amount of tokens the customer receives over his purchase
_fee =
_fee -
(_fee -
(_amountOfTokens *
((_dividends * magnitude) / (tokenSupply_))));
} else {
// add tokens to the pool
tokenSupply_ = _amountOfTokens;
}
// update circulating supply & the ledger address for the customer
tokenBalanceLedger_[msg.sender] = SafeMath.add(
tokenBalanceLedger_[msg.sender],
_amountOfTokens
);
// Tells the contract that the buyer doesn't deserve dividends for the tokens before they owned them;
//really i know you think you do but you don't
int256 _updatedPayouts = (int256)(
(profitPerShare_ * _amountOfTokens) - _fee
);
payoutsTo_[msg.sender] += _updatedPayouts;
// fire event
emit onTokenPurchase(
msg.sender,
username.getNameByAddress(msg.sender),
_incomingEthereum,
_amountOfTokens,
_referredBy,
isReinvest
);
return _amountOfTokens;
}
/**
* Calculate Token price based on an amount of incoming ethereum
* It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
* Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
*/
function ethereumToTokens_(uint256 _ethereum)
internal
view
returns (uint256)
{
uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e8;
uint256 _tokensReceived = ((
SafeMath.sub(
(
sqrt(
(_tokenPriceInitial**2) +
(2 *
(tokenPriceIncremental_ * 1e8) *
(_ethereum * 1e8)) +
(((tokenPriceIncremental_)**2) *
(tokenSupply_**2)) +
(2 *
(tokenPriceIncremental_) *
_tokenPriceInitial *
tokenSupply_)
)
),
_tokenPriceInitial
)
) / (tokenPriceIncremental_)) - (tokenSupply_);
return _tokensReceived;
}
/**
* Calculate token sell value.
* It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
* Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
*/
function tokensToEthereum_(uint256 _tokens)
internal
view
returns (uint256)
{
uint256 tokens_ = (_tokens + 1e8);
uint256 _tokenSupply = (tokenSupply_ + 1e8);
uint256 _etherReceived = (SafeMath.sub(
(((tokenPriceInitial_ +
(tokenPriceIncremental_ * (_tokenSupply / 1e8))) -
tokenPriceIncremental_) * (tokens_ - 1e8)),
(tokenPriceIncremental_ * ((tokens_**2 - tokens_) / 1e8)) / 2
) / 1e8);
return _etherReceived;
}
//This is where all your gas goes apparently
function sqrt(uint256 x) internal pure returns (uint256 y) {
uint256 z = (x + 1) / 2;
y = x;
while (z < y) {
y = z;
z = (x / z + z) / 2;
}
}
}
interface UsernameInterface {
function getNameByAddress(address _addr) external view returns (bytes32);
}
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a / b;
return c;
}
/**
* @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
}
{
"compilationTarget": {
"HexDex.sol": "HexDex"
},
"evmVersion": "istanbul",
"libraries": {},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"usernameAddress","type":"address"},{"internalType":"uint256","name":"when_start","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"customerAddress","type":"address"},{"indexed":false,"internalType":"bytes32","name":"customerName","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"incomingEthereum","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensMinted","type":"uint256"},{"indexed":true,"internalType":"address","name":"referredBy","type":"address"},{"indexed":false,"internalType":"bool","name":"isReinvest","type":"bool"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"customerAddress","type":"address"},{"indexed":false,"internalType":"bytes32","name":"customerName","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"tokensBurned","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"customerAddress","type":"address"},{"indexed":false,"internalType":"bytes32","name":"customerName","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ambassadors","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newDistributor","type":"address"}],"name":"approveDistributor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_referredBy","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"depositDevPremine","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"depositPremine","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dev","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distribute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"executePremineBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bool","name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"numAmbassadorsDep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"numDevDep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"restart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]