Discover more of Etherscan's tools and services in one place.
Sponsored
Contract Source Code:
File 1 of 1 : Airdrop
pragma solidity ^0.4.25; contract Airdrop { address public c = 0x7a0e91c4204355e0a6bbf746dc0b7e32dfefdecf; address public owner; mapping (uint => address) public a; function Airdrop() { owner = msg.sender; } function() payable { } function transfer(uint _sreur_tokens, address[] _addresses) onlyOwner returns (bool) { if(_sreur_tokens < 1) throw; uint amount = _sreur_tokens*100000000; for (uint i = 0; i < _addresses.length; i++) { c.call(bytes4(sha3("transfer(address,uint256)")),_addresses[i], amount); } return true; } function withdraw() onlyOwner returns (bool result) { owner.send(this.balance); return true; } modifier onlyOwner() { if (msg.sender != owner) { throw; } _; } }
Please enter a contract address above to load the contract details and source code.
Please DO NOT store any passwords or private keys here. A private note (up to 100 characters) can be saved and is useful for transaction tracking.
My Name Tag:
Private Note:
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.