文件 1 的 1:KyberAirDrop.sol
pragma solidity ^0.4.13;
contract Ownable {
address public owner;
function Ownable() {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
contract KyberAirDrop is Ownable {
uint public numDrops;
uint public dropAmount;
function KyberAirDrop( address dropper ) {
transferOwnership(dropper);
}
event TokenDrop( address receiver, uint amount );
function airDrop( ERC20Interface token,
address tokenRepo,
address[] recipients,
uint amount,
bool kgt,
KyberGenesisToken kgtToken ) onlyOwner {
require( amount == 0 || amount == (2*(10**18)) || amount == (5*(10**18)) );
if( amount > 0 ) {
for( uint i = 0 ; i < recipients.length ; i++ ) {
assert( token.transferFrom( tokenRepo, recipients[i], amount ) );
TokenDrop( recipients[i], amount );
}
}
if( kgt ) {
kgtToken.mint(recipients);
}
numDrops += recipients.length;
dropAmount += recipients.length * amount;
}
function tranferMinterOwnership( KyberGenesisToken kgtToken, address newOwner ) onlyOwner {
kgtToken.transferOwnership(newOwner);
}
function emergencyERC20Drain( ERC20Interface token, uint amount ) {
address kyberMultisig = 0x3EB01B3391EA15CE752d01Cf3D3F09deC596F650;
token.transfer( kyberMultisig, amount );
}
}
contract KyberGenesisToken is Ownable {
string public constant name = "Kyber Genesis Token";
string public constant symbol = "KGT";
uint public constant decimals = 0;
uint public totalSupply = 0;
mapping(address=>uint) public balanceOf;
function KyberGenesisToken( address minter ) {
transferOwnership(minter);
}
event Transfer(address indexed _from, address indexed _to, uint _value);
event EndMinting( uint timestamp );
function mint( address[] recipients ) onlyOwner {
uint newRecipients = 0;
for( uint i = 0 ; i < recipients.length ; i++ ){
address recipient = recipients[i];
if( balanceOf[recipient] == 0 ){
Transfer( address(0x0), recipient, 1 );
balanceOf[recipient] = 1;
newRecipients++;
}
}
totalSupply += newRecipients;
}
function endMinting() onlyOwner {
transferOwnership(address(0xdead));
EndMinting(block.timestamp);
}
function burn() {
require(balanceOf[msg.sender] == 1 );
Transfer( msg.sender, address(0x0), 1 );
balanceOf[msg.sender] = 0;
totalSupply--;
}
function emergencyERC20Drain( ERC20Interface token, uint amount ){
address kyberMultisig = 0x3EB01B3391EA15CE752d01Cf3D3F09deC596F650;
token.transfer( kyberMultisig, amount );
}
function transfer(address _to, uint _value) returns (bool){ revert(); }
function transferFrom(address _from, address _to, uint _value) returns (bool){ revert(); }
function approve(address _spender, uint _value) returns (bool){ revert(); }
function allowance(address _owner, address _spender) constant returns (uint){ return 0; }
event Approval(address indexed _owner, address indexed _spender, uint _value);
}
contract ERC20Interface {
function transferFrom(address _from, address _to, uint _value) returns (bool){}
function transfer(address _to, uint _value) returns (bool){}
function ERC20Interface(){}
}
{
"compilationTarget": {
"KyberAirDrop.sol": "KyberAirDrop"
},
"libraries": {},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}