-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathverime.sol
95 lines (83 loc) · 3.19 KB
/
verime.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
pragma solidity ^0.4.11;
import './iERC20.sol';
contract VERIME is iERC20 {
uint public _totalSupply = 1000000000000000000000000000;
string public constant symbol = "VME";
string public constant name = "Verime Mobile";
uint8 public constant decimals = 18;
address public owner;
address public whitelistedContract;
bool freeTransfer = false;
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
function VERIME(address _multisig) {
balances[_multisig] = _totalSupply;
owner = _multisig;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
modifier ownerOrEnabledTransfer() {
require(freeTransfer || msg.sender == owner || msg.sender == whitelistedContract);
_;
}
function enableTransfer() ownerOrEnabledTransfer() {
freeTransfer = true;
}
function totalSupply() constant returns (uint256 totalSupply){
return _totalSupply;
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
modifier onlyPayloadSize(uint size) {
assert(msg.data.length == size + 4);
_;
}
function transfer(address _to, uint256 _value) ownerOrEnabledTransfer onlyPayloadSize(2 * 32) public returns (bool) {
require(
balances[msg.sender]>= _value
&& _value > 0
);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) ownerOrEnabledTransfer public returns (bool success) {
require(
allowed[_from][msg.sender] >= _value
&& balances[_from] >= _value
&& _value > 0
);
balances[_from] -= _value;
balances[_to] += _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
function approve(address _spender, uint256 _value) public returns (bool success) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
require(_value == 0 || allowed[msg.sender][_spender] == 0);
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
function changeWhitelistedContract(address newAddress) public onlyOwner returns (bool) {
require(newAddress != address(0));
whitelistedContract = newAddress;
}
function transferOwnership(address newOwner) public onlyOwner returns (bool) {
require(newOwner != address(0));
owner = newOwner;
}
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
}