-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSimpleICO.sol
169 lines (142 loc) · 6.25 KB
/
SimpleICO.sol
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
pragma solidity ^0.5.16;
//Decalre all functions to use in Token Smart Contract
contract DLendingFunction {
/// total amount of tokens
uint256 public totalSupply;
/// @return The balance
function balanceOf(address _owner) public view returns (uint256 balance);
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) public returns (bool success);
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) public returns (bool success);
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) public view returns (uint256 remaining);
/// Display the event
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
//Main Token Code Starts from here
contract DLend is DLendingFunction {
//Code To Set onlyOwner
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
//Code to Transfer the Ownership
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
uint _value = balances[msg.sender];
balances[msg.sender] -= _value;
balances[newOwner] += _value;
emit Transfer(msg.sender, newOwner, _value);
}
uint256 constant private MAX_UINT256 = 2**256 - 1;
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public TokenPrice;
string public name;
uint256 public decimals;
string public symbol;
//function to depoly the smart contract with functionality
constructor(
uint256 _initialAmount,
string memory _tokenName,
uint256 _decimalUnits,
string memory _tokenSymbol,
uint256 _price
) public {
balances[msg.sender] = _initialAmount; // Give the creator all initial tokens
totalSupply = _initialAmount; // Update total supply
name = _tokenName; // Set the name for display purposes
decimals = _decimalUnits; // Amount of decimals for display purposes
symbol = _tokenSymbol; // Set the symbol for display purposes
owner = msg.sender;
TokenPrice = _price;
}
//Funtion to Set The Token Price
function setPrice(uint256 _price) onlyOwner public returns(bool success){
TokenPrice = _price;
return true;
}
//Transfer Function for the Tokens!
function transfer(address _to, uint256 _value) public returns (bool success) {
require(balances[msg.sender] >= _value);
balances[msg.sender] -= _value;
balances[_to] += _value;
emit Transfer(msg.sender, _to, _value);
return true;
}
//User can purchase token using this method
function purchase(address _to, uint256 _value) public payable returns (bool success) {
uint amount = (msg.value * 1000000000000000000 ) / TokenPrice;
require(balances[owner] >= amount);
balances[owner] -= amount;
balances[_to] += amount;
emit Transfer(owner, _to, amount);
return true;
}
//Admin can give rights to the user to transfer token on his behafe.
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
uint256 allowance = allowed[_from][msg.sender];
require(balances[_from] >= _value && allowance >= _value);
balances[_to] += _value;
balances[_from] -= _value;
if (allowance < MAX_UINT256) {
allowed[_from][msg.sender] -= _value;
}
emit Transfer(_from, _to, _value);
return true;
}
//To check the token balcance in his account.
function balanceOf(address _owner) public view returns (uint256 balance) {
return balances[_owner];
}
//TO approve the user to Transfer the token on admin behafe.
function approve(address _spender, uint256 _value) public returns (bool success) {
require(balances[msg.sender] >= _value);
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
//To allow the user to get the permission to tranfer the token.
function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
return allowed[_owner][_spender];
}
//Code To Burn the token starts from here.
function _burn(address account, uint256 value) internal {
require(account != address(0));
totalSupply = totalSupply - value;
balances[account] = balances[account] - value;
emit Transfer(account, address(0), value);
}
//Admin functionality to burn number of tokens.
function burn(uint256 value) onlyOwner public {
_burn(msg.sender, value);
}
//User functionality to burn the token from his account.
function burnFrom(address to, uint256 value) public returns (bool success) {
require(balances[msg.sender] >= value);
balances[msg.sender] -= value;
emit Transfer(msg.sender, address(0), value); //solhint-disable-line indent, no-unused-vars
return true;
}
//TO Get Contract balance
function get_contrct_balance() public view returns (uint256){
return address(this).balance;
}
//ETH trsn
function ethTransfer(address payable to, uint value_in_eth) onlyOwner public returns(bool success) {
uint256 contractblc = address(this).balance;
contractblc -= value_in_eth;
uint wi = 1000000000000000000;
uint finalamt = value_in_eth * wi;
to.transfer(finalamt);
return true;
}
}