-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path0xc0c2ee1ce1fed8f6e2764363a36db3dd4cf10022-FBL-Faceblock.sol
114 lines (95 loc) · 4.11 KB
/
0xc0c2ee1ce1fed8f6e2764363a36db3dd4cf10022-FBL-Faceblock.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
pragma solidity ^0.4.11;
contract SafeMath {
function safeAdd(uint256 x, uint256 y) internal returns(uint256) {
uint256 z = x + y;
assert((z >= x) && (z >= y));
return z;
}
function safeSubtract(uint256 x, uint256 y) internal returns(uint256) {
assert(x >= y);
uint256 z = x - y;
return z;
}
function safeMult(uint256 x, uint256 y) internal returns(uint256) {
uint256 z = x * y;
assert((x == 0)||(z/x == y));
return z;
}
}
contract Token {
uint256 public totalSupply;
function balanceOf(address _owner) constant returns (uint256 balance);
function transfer(address _to, uint256 _value) returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
function approve(address _spender, uint256 _value) returns (bool success);
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else {
return false;
}
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else {
return false;
}
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
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];
}
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
}
contract Faceblock is StandardToken, SafeMath {
// metadata
string public constant name = "Faceblock";
string public constant symbol = "FBL";
uint256 public constant decimals = 2;
string public version = "1.0";
// contracts
address ethFundDeposit; // deposit address for ETH for FBL
address FBLFounder;
address FBLFundDeposit1; // deposit address for depositing tokens for owners
address FBLFundDeposit2; // deposit address for depositing tokens for owners
uint256 public constant FBLFund = 5 * (10**6) * 10**decimals; // Faceblock reserved for Owners
uint256 public constant FBLFounderFund = 5 * (10**6) * 10**decimals; // Faceblock reserved for Owners
uint256 public constant tokenCreationCap = 10 * (10**6) * 10**decimals;
/// @dev Accepts ether and creates new FBL tokens.
// events
event CreateFBL(address indexed _to, uint256 _value);
// constructor
function Faceblock()
{
FBLFounder = '0x3A1F12A15f3159903f2EEbe1a2949A780911f695';
FBLFundDeposit1 = '0x2E109b1c58625F0770d885ADA419Df16621350bB';
FBLFundDeposit2 = '0xAeD77852D6810E5c36ED85Ad1beC9c2368F5400F';
totalSupply = safeMult(FBLFund,1);
totalSupply = safeAdd(totalSupply,FBLFounderFund);
balances[FBLFundDeposit1] = FBLFund; // works with deposit
balances[FBLFundDeposit2] = FBLFund; // works with deposit
transferFrom(0x0, 0x3A1F12A15f3159903f2EEbe1a2949A780911f695, 50 * (10**6) * 10**decimals);
transferFrom(0x0, 0xAeD77852D6810E5c36ED85Ad1beC9c2368F5400F, 50 * (10**6) * 10**decimals);
}
}