File size: 7,256 Bytes
dec6d5d |
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
pragma solidity ^0.4.10;
contract IERC20Token {
function totalSupply() public constant returns ( uint256 supply ) { supply; }
function balanceOf( address _owner ) public constant returns ( uint256 balance ) { _owner; balance; }
function allowance( address _owner, address _spender ) public constant returns ( uint256 remaining ) { _owner; _spender; remaining; }
function transfer( address _to, uint256 _value ) public returns ( bool success );
function transferFrom( address _from, address _to, uint256 _value ) public returns ( bool success );
function approve( address _spender, uint256 _value ) public returns ( bool success );
}
contract RegaUtils {
modifier validAddress( address _address ) {
require( _address != 0x0 );
_;
}
function safeAdd( uint256 x, uint256 y ) internal returns( uint256 ) {
uint256 z = x + y;
assert( z >= x );
return z;
}
function safeSub( uint256 x, uint256 y ) internal returns( uint256 ) {
assert( x >= y);
return x - y;
}
}
contract ERC20Token is IERC20Token, RegaUtils {
uint256 public totalSupply = 0;
mapping( address => uint256 ) public balanceOf;
mapping( address => mapping( address => uint256 ) ) public allowance;
event Transfer( address indexed _from, address indexed _to, uint256 _value );
event Approval( address indexed _owner, address indexed _spender, uint256 _value );
function transfer( address _to, uint256 _value ) validAddress( _to )
returns( bool success )
{
balanceOf[ msg.sender ] = safeSub( balanceOf[ msg.sender ], _value );
balanceOf[ _to ] = safeAdd( balanceOf[ _to ], _value );
Transfer( msg.sender, _to, _value );
return true;
}
function transferFrom( address _from, address _to, uint256 _value ) validAddress( _from ) validAddress( _to )
returns( bool success )
{
allowance[ _from ][ msg.sender ] = safeSub( allowance[ _from ][ msg.sender ], _value );
balanceOf[ _from] = safeSub( balanceOf[_from], _value );
balanceOf[ _to] = safeAdd( balanceOf[_to], _value );
Transfer( _from, _to, _value );
return true;
}
function approve( address _spender, uint256 _value ) validAddress( _spender )
returns( bool success)
{
require( _value == 0 || allowance[ msg.sender ][ _spender ] == 0 );
allowance[ msg.sender ][ _spender ] = _value;
Approval( msg.sender, _spender, _value );
return true;
}
}
contract RSTBase is ERC20Token {
address public board;
address public owner;
address public votingData;
address public tokenData;
address public feesData;
uint256 public reserve;
uint32 public crr;
uint256 public weiForToken;
uint8 public totalAccounts;
modifier boardOnly() {
require(msg.sender == board);
_;
}
}
contract TokenControllerBase is RSTBase {
function init() public;
function isSellOpen() public constant returns(bool);
function isBuyOpen() public constant returns(bool);
function sell(uint value) public;
function buy() public payable;
function addToReserve() public payable;
}
contract VotingControllerBase is RSTBase {
function voteFor() public;
function voteAgainst() public;
function startVoting() public;
function stopVoting() public;
function getCurrentVotingDescription() public constant returns (bytes32 vd) ;
}
contract FeesControllerBase is RSTBase {
function init() public;
function withdrawFee() public;
function calculateFee() public;
function addPayee( address payee ) public;
function removePayee( address payee ) public;
function setRepayment( ) payable public;
}
contract RiskSharingToken is RSTBase {
string public constant version = "0.1";
string public constant name = "REGA Risk Sharing Token";
string public constant symbol = "RST";
uint8 public constant decimals = 10;
TokenControllerBase public tokenController;
VotingControllerBase public votingController;
FeesControllerBase public feesController;
modifier ownerOnly() {
require( msg.sender == owner );
_;
}
modifier boardOnly() {
require( msg.sender == board );
_;
}
modifier authorized() {
require( msg.sender == owner || msg.sender == board);
_;
}
function RiskSharingToken( address _board ) {
board = _board;
owner = msg.sender;
tokenController = TokenControllerBase(0);
votingController = VotingControllerBase(0);
weiForToken = uint(10)**(18-1-decimals);
reserve = 0;
crr = 20;
totalAccounts = 0;
}
function() payable {
}
function setTokenController( TokenControllerBase tc, address _tokenData ) public boardOnly {
tokenController = tc;
if( _tokenData != address(0) )
tokenData = _tokenData;
if( tokenController != TokenControllerBase(0) )
if( !tokenController.delegatecall(bytes4(sha3("init()"))) )
revert();
}
function setVotingController( VotingControllerBase vc ) public boardOnly {
votingController = vc;
}
function startVoting( bytes32 ) public boardOnly validAddress(votingController) {
if( !votingController.delegatecall(msg.data) )
revert();
}
function stopVoting() public boardOnly validAddress(votingController) {
if( !votingController.delegatecall(msg.data) )
revert();
}
function voteFor() public validAddress(votingController) {
if( !votingController.delegatecall(msg.data) )
revert();
}
function voteAgainst() public validAddress(votingController) {
if( !votingController.delegatecall(msg.data) )
revert();
}
function buy() public payable validAddress(tokenController) {
if( !tokenController.delegatecall(msg.data) )
revert();
}
function sell( uint ) public validAddress(tokenController) {
if( !tokenController.delegatecall(msg.data) )
revert();
}
function addToReserve( ) public payable validAddress(tokenController) {
if( !tokenController.delegatecall(msg.data) )
revert();
}
function withdraw( uint256 amount ) public boardOnly {
require(safeSub(this.balance, amount) >= reserve);
board.transfer( amount );
}
function issueToken( address , uint256 ) public authorized {
if( !tokenController.delegatecall(msg.data) )
revert();
}
function issueTokens( uint256[] ) public ownerOnly {
if( !tokenController.delegatecall(msg.data) )
revert();
}
function setFeesController( FeesControllerBase fc ) public boardOnly {
feesController = fc;
if( !feesController.delegatecall(bytes4(sha3("init()"))) )
revert();
}
function withdrawFee() public validAddress(feesController) {
if( !feesController.delegatecall(msg.data) )
revert();
}
function calculateFee() public validAddress(feesController) {
if( !feesController.delegatecall(msg.data) )
revert();
}
function addPayee( address ) public validAddress(feesController) {
if( !feesController.delegatecall(msg.data) )
revert();
}
function removePayee( address ) public validAddress(feesController) {
if( !feesController.delegatecall(msg.data) )
revert();
}
function setRepayment( ) payable public validAddress(feesController) {
if( !feesController.delegatecall(msg.data) )
revert();
}
} |