Spaces:
Runtime error
Runtime error
File size: 7,670 Bytes
ee7776a |
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 |
/**
*Submitted for verification at Etherscan.io on 2018-01-17
*/
pragma solidity ^0.4.19;
/**
* @title IDXM Contract. IDEX Membership Token contract.
*
* @author Ray Pulver, [email protected]
*/
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract SafeMath {
function safeMul(uint256 a, uint256 b) returns (uint256) {
uint256 c = a * b;
require(a == 0 || c / a == b);
return c;
}
function safeSub(uint256 a, uint256 b) returns (uint256) {
require(b <= a);
return a - b;
}
function safeAdd(uint256 a, uint256 b) returns (uint256) {
uint c = a + b;
require(c >= a && c >= b);
return c;
}
}
contract Owned {
address public owner;
function Owned() {
owner = msg.sender;
}
function setOwner(address _owner) returns (bool success) {
owner = _owner;
return true;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
}
contract IDXM is Owned, SafeMath {
uint8 public decimals = 8;
bytes32 public standard = 'Token 0.1';
bytes32 public name = 'IDEX Membership';
bytes32 public symbol = 'IDXM';
uint256 public totalSupply;
event Approval(address indexed from, address indexed spender, uint256 amount);
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
event Transfer(address indexed from, address indexed to, uint256 value);
uint256 public baseFeeDivisor;
uint256 public feeDivisor;
uint256 public singleIDXMQty;
function () external {
throw;
}
uint8 public feeDecimals = 8;
struct Validity {
uint256 last;
uint256 ts;
}
mapping (address => Validity) public validAfter;
uint256 public mustHoldFor = 604800;
mapping (address => uint256) public exportFee;
/**
* Constructor.
*
*/
function IDXM() {
totalSupply = 200000000000;
balanceOf[msg.sender] = totalSupply;
exportFee[0x00000000000000000000000000000000000000ff] = 100000000;
precalculate();
}
bool public balancesLocked = false;
function uploadBalances(address[] addresses, uint256[] balances) onlyOwner {
require(!balancesLocked);
require(addresses.length == balances.length);
uint256 sum;
for (uint256 i = 0; i < uint256(addresses.length); i++) {
sum = safeAdd(sum, safeSub(balances[i], balanceOf[addresses[i]]));
balanceOf[addresses[i]] = balances[i];
}
balanceOf[owner] = safeSub(balanceOf[owner], sum);
}
function lockBalances() onlyOwner {
balancesLocked = true;
}
/**
* @notice Transfer `_amount` from `msg.sender.address()` to `_to`.
*
* @param _to Address that will receive.
* @param _amount Amount to be transferred.
*/
function transfer(address _to, uint256 _amount) returns (bool success) {
require(!locked);
require(balanceOf[msg.sender] >= _amount);
require(balanceOf[_to] + _amount >= balanceOf[_to]);
balanceOf[msg.sender] -= _amount;
uint256 preBalance = balanceOf[_to];
balanceOf[_to] += _amount;
bool alreadyMax = preBalance >= singleIDXMQty;
if (!alreadyMax) {
if (now >= validAfter[_to].ts + mustHoldFor) validAfter[_to].last = preBalance;
validAfter[_to].ts = now;
}
if (validAfter[msg.sender].last > balanceOf[msg.sender]) validAfter[msg.sender].last = balanceOf[msg.sender];
Transfer(msg.sender, _to, _amount);
return true;
}
/**
* @notice Transfer `_amount` from `_from` to `_to`.
*
* @param _from Origin address
* @param _to Address that will receive
* @param _amount Amount to be transferred.
* @return result of the method call
*/
function transferFrom(address _from, address _to, uint256 _amount) returns (bool success) {
require(!locked);
require(balanceOf[_from] >= _amount);
require(balanceOf[_to] + _amount >= balanceOf[_to]);
require(_amount <= allowance[_from][msg.sender]);
balanceOf[_from] -= _amount;
uint256 preBalance = balanceOf[_to];
balanceOf[_to] += _amount;
allowance[_from][msg.sender] -= _amount;
bool alreadyMax = preBalance >= singleIDXMQty;
if (!alreadyMax) {
if (now >= validAfter[_to].ts + mustHoldFor) validAfter[_to].last = preBalance;
validAfter[_to].ts = now;
}
if (validAfter[_from].last > balanceOf[_from]) validAfter[_from].last = balanceOf[_from];
Transfer(_from, _to, _amount);
return true;
}
/**
* @notice Approve spender `_spender` to transfer `_amount` from `msg.sender.address()`
*
* @param _spender Address that receives the cheque
* @param _amount Amount on the cheque
* @param _extraData Consequential contract to be executed by spender in same transcation.
* @return result of the method call
*/
function approveAndCall(address _spender, uint256 _amount, bytes _extraData) returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _amount)) {
spender.receiveApproval(msg.sender, _amount, this, _extraData);
return true;
}
}
/**
* @notice Approve spender `_spender` to transfer `_amount` from `msg.sender.address()`
*
* @param _spender Address that receives the cheque
* @param _amount Amount on the cheque
* @return result of the method call
*/
function approve(address _spender, uint256 _amount) returns (bool success) {
require(!locked);
allowance[msg.sender][_spender] = _amount;
Approval(msg.sender, _spender, _amount);
return true;
}
function setExportFee(address addr, uint256 fee) onlyOwner {
require(addr != 0x00000000000000000000000000000000000000ff);
exportFee[addr] = fee;
}
function setHoldingPeriod(uint256 ts) onlyOwner {
mustHoldFor = ts;
}
/* --------------- fee calculation method ---------------- */
/**
* @notice 'Returns the fee for a transfer from `from` to `to` on an amount `amount`.
*
* Fee's consist of a possible
* - import fee on transfers to an address
* - export fee on transfers from an address
* IDXM ownership on an address
* - reduces fee on a transfer from this address to an import fee-ed address
* - reduces the fee on a transfer to this address from an export fee-ed address
* IDXM discount does not work for addresses that have an import fee or export fee set up against them.
*
* IDXM discount goes up to 100%
*
* @param from From address
* @param to To address
* @param amount Amount for which fee needs to be calculated.
*
*/
function feeFor(address from, address to, uint256 amount) constant external returns (uint256 value) {
uint256 fee = exportFee[from];
if (fee == 0) return 0;
uint256 amountHeld;
if (balanceOf[to] != 0) {
if (validAfter[to].ts + mustHoldFor < now) amountHeld = balanceOf[to];
else amountHeld = validAfter[to].last;
if (amountHeld >= singleIDXMQty) return 0;
return amount*fee*(singleIDXMQty - amountHeld) / feeDivisor;
} else return amount*fee / baseFeeDivisor;
}
bool public locked = true;
function unlockToken() onlyOwner {
locked = false;
}
function precalculate() internal returns (bool success) {
baseFeeDivisor = pow10(1, feeDecimals);
feeDivisor = pow10(1, feeDecimals + decimals);
singleIDXMQty = pow10(1, decimals);
}
function div10(uint256 a, uint8 b) internal returns (uint256 result) {
for (uint8 i = 0; i < b; i++) {
a /= 10;
}
return a;
}
function pow10(uint256 a, uint8 b) internal returns (uint256 result) {
for (uint8 i = 0; i < b; i++) {
a *= 10;
}
return a;
}
} |