forked from EdgelessCasino/Smart-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TokenSmartContract
113 lines (95 loc) · 4.83 KB
/
TokenSmartContract
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
/**
* The Edgeless token contract complies with the ERC20 standard (see https://github.com/ethereum/EIPs/issues/20).
* Additionally tokens can be locked for a defined time interval by token holders.
* The owner's share of tokens is locked for the first year and all tokens not
* being sold during the crowdsale but 60.000.000 (owner's share + bounty program) are burned.
* Author: Julia Altenried
* */
pragma solidity ^0.4.6;
contract SafeMath {
//internals
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeSub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function safeAdd(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c>=a && c>=b);
return c;
}
function assert(bool assertion) internal {
if (!assertion) throw;
}
}
contract EdgelessToken is SafeMath {
/* Public variables of the token */
string public standard = 'ERC20';
string public name = 'Edgeless';
string public symbol = 'EDG';
uint8 public decimals = 0;
uint256 public totalSupply;
address public owner;
/* from this time on tokens may be transfered (after ICO)*/
uint256 public startTime = 1490112000;
/* tells if tokens have been burned already */
bool burned;
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
/* This generates a public event on the blockchain that will notify clients */
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Burned(uint amount);
/* Initializes contract with initial supply tokens to the creator of the contract */
function EdgelessToken() {
owner = 0x003230BBE64eccD66f62913679C8966Cf9F41166;
balanceOf[owner] = 500000000; // Give the owner all initial tokens
totalSupply = 500000000; // Update total supply
}
/* Send some of your tokens to a given address */
function transfer(address _to, uint256 _value) returns (bool success){
if (now < startTime) throw; //check if the crowdsale is already over
if(msg.sender == owner && now < startTime + 1 years && safeSub(balanceOf[msg.sender],_value) < 50000000) throw; //prevent the owner of spending his share of tokens within the first year
balanceOf[msg.sender] = safeSub(balanceOf[msg.sender],_value); // Subtract from the sender
balanceOf[_to] = safeAdd(balanceOf[_to],_value); // Add the same to the recipient
Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
return true;
}
/* Allow another contract or person to spend some tokens in your behalf */
function approve(address _spender, uint256 _value) returns (bool success) {
allowance[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
/* A contract or person attempts to get the tokens of somebody else.
* This is only allowed if the token holder approved. */
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (now < startTime && _from!=owner) throw; //check if the crowdsale is already over
if(_from == owner && now < startTime + 1 years && safeSub(balanceOf[_from],_value) < 50000000) throw; //prevent the owner of spending his share of tokens within the first year
var _allowance = allowance[_from][msg.sender];
balanceOf[_from] = safeSub(balanceOf[_from],_value); // Subtract from the sender
balanceOf[_to] = safeAdd(balanceOf[_to],_value); // Add the same to the recipient
allowance[_from][msg.sender] = safeSub(_allowance,_value);
Transfer(_from, _to, _value);
return true;
}
/* to be called when ICO is closed, burns the remaining tokens but the owners share (50 000 000) and the ones reserved
* for the bounty program (10 000 000).
* anybody may burn the tokens after ICO ended, but only once (in case the owner holds more tokens in the future).
* this ensures that the owner will not posses a majority of the tokens. */
function burn(){
//if tokens have not been burned already and the ICO ended
if(!burned && now>startTime){
uint difference = safeSub(balanceOf[owner], 60000000);//checked for overflow above
balanceOf[owner] = 60000000;
totalSupply = safeSub(totalSupply, difference);
burned = true;
Burned(difference);
}
}
}