-
Notifications
You must be signed in to change notification settings - Fork 45
/
CustomToken.sol
96 lines (76 loc) · 2.96 KB
/
CustomToken.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
pragma solidity 0.5.4;
/*
This Token Contract implements the standard token functionality (https://github.com/ethereum/EIPs/issues/20), the ERC223 functionality (https://github.com/ethereum/EIPs/issues/223) as well as the following OPTIONAL extras intended for use by humans.
In other words. This is intended for deployment in something like a Token Factory or Mist wallet, and then used by humans.
Imagine coins, currencies, shares, voting weight, etc.
Machine-based, rapid creation of many tokens would not necessarily need these extra features or will be minted in other manners.
1) Initial Finite Supply (upon creation one specifies how much is minted).
2) In the absence of a token registry: Optional Decimal, Symbol & Name.
.*/
import "test/StandardToken.sol";
/// @title CustomToken
contract CustomToken is StandardToken {
/*
* Token metadata
*/
string public version = 'H0.1'; //human 0.1 standard. Just an arbitrary versioning scheme.
string public name;
string public symbol;
uint8 public _decimals;
uint256 public multiplier;
address payable public owner_address;
/*
* Events
*/
event Minted(address indexed _to, uint256 indexed _num);
/*
* Public functions
*/
/// @dev Contract constructor function.
/// @param initial_supply Initial supply of tokens.
/// @param decimal_units Number of token decimals.
/// @param token_name Token name for display.
/// @param token_symbol Token symbol.
constructor(
uint256 initial_supply,
uint8 decimal_units,
string memory token_name,
string memory token_symbol
)
public
{
// Set the name for display purposes
name = token_name;
// Amount of decimals for display purposes
_decimals = decimal_units;
multiplier = 10**(uint256(decimal_units));
// Set the symbol for display purposes
symbol = token_symbol;
// Initial supply is assigned to the owner
owner_address = msg.sender;
balances[owner_address] = initial_supply;
_total_supply = initial_supply;
}
/// @notice Allows `num` tokens to be minted and assigned to `msg.sender`
function mint(uint256 num) public {
mintFor(num, msg.sender);
}
/// @notice Allows `num` tokens to be minted and assigned to `target`
function mintFor(uint256 num, address target) public {
balances[target] += num;
_total_supply += num;
emit Minted(target, num);
require(balances[target] >= num);
assert(_total_supply >= num);
}
/// @notice Transfers the collected ETH to the contract owner.
function transferFunds() public {
require(msg.sender == owner_address);
require(address(this).balance > 0);
owner_address.transfer(address(this).balance);
assert(address(this).balance == 0);
}
function decimals() public view returns (uint8 decimals) {
return _decimals;
}
}