More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 785 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 5655124 | 2434 days ago | IN | 0.01505911 ETH | 0.00240872 | ||||
Transfer | 5655024 | 2434 days ago | IN | 0.65 ETH | 0.00043904 | ||||
Transfer | 5653752 | 2434 days ago | IN | 0.00287 ETH | 0.000902 | ||||
Transfer | 5653523 | 2434 days ago | IN | 14.98029819 ETH | 0.00238513 | ||||
Transfer | 5649865 | 2435 days ago | IN | 0.08497495 ETH | 0.00073174 | ||||
Transfer | 5649469 | 2435 days ago | IN | 0.19970369 ETH | 0.00073174 | ||||
Transfer | 5644304 | 2436 days ago | IN | 0.02990511 ETH | 0.00087077 | ||||
Transfer | 5642206 | 2436 days ago | IN | 4.99544736 ETH | 0.00439044 | ||||
Transfer | 5637420 | 2437 days ago | IN | 0.07 ETH | 0.00046539 | ||||
Transfer | 5634700 | 2437 days ago | IN | 0.47001629 ETH | 0.00238513 | ||||
Transfer | 5624547 | 2439 days ago | IN | 0.000135 ETH | 0.00300013 | ||||
Transfer | 5624517 | 2439 days ago | IN | 1 ETH | 0.00087808 | ||||
Update Rate | 5624419 | 2439 days ago | IN | 0 ETH | 0.00190722 | ||||
Transfer | 5624408 | 2439 days ago | IN | 0.09954461 ETH | 0.00073174 | ||||
Update Rate | 5624037 | 2439 days ago | IN | 0 ETH | 0.00190722 | ||||
Transfer | 5347782 | 2486 days ago | IN | 4.03276666 ETH | 0.00122165 | ||||
Transfer | 5347508 | 2486 days ago | IN | 1.0535 ETH | 0.00153665 | ||||
Transfer | 5342495 | 2487 days ago | IN | 0.01 ETH | 0.00037521 | ||||
Transfer | 5342155 | 2487 days ago | IN | 0.005 ETH | 0.00008477 | ||||
Transfer | 5335498 | 2488 days ago | IN | 0.08948255 ETH | 0.00300013 | ||||
Transfer | 5335489 | 2488 days ago | IN | 0.09257407 ETH | 0.000861 | ||||
Transfer | 5334003 | 2489 days ago | IN | 0.67029677 ETH | 0.000042 | ||||
Transfer | 5333906 | 2489 days ago | IN | 0.67033877 ETH | 0.000042 | ||||
Transfer | 5331777 | 2489 days ago | IN | 284.8 ETH | 0.00029087 | ||||
Transfer | 5331770 | 2489 days ago | IN | 284.8 ETH | 0.00020913 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
5655024 | 2434 days ago | 0.65 ETH | ||||
5653523 | 2434 days ago | 14.98029819 ETH | ||||
5649865 | 2435 days ago | 0.08497495 ETH | ||||
5649469 | 2435 days ago | 0.19970369 ETH | ||||
5644304 | 2436 days ago | 0.02990511 ETH | ||||
5642206 | 2436 days ago | 4.99544736 ETH | ||||
5637420 | 2437 days ago | 0.07 ETH | ||||
5634700 | 2437 days ago | 0.47001629 ETH | ||||
5624547 | 2439 days ago | 0.000135 ETH | ||||
5624517 | 2439 days ago | 1 ETH | ||||
5624408 | 2439 days ago | 0.09954461 ETH | ||||
5347782 | 2486 days ago | 4.03276666 ETH | ||||
5347508 | 2486 days ago | 1.0535 ETH | ||||
5335498 | 2488 days ago | 0.08948255 ETH | ||||
5331777 | 2489 days ago | 284.8 ETH | ||||
5330058 | 2489 days ago | 0.84 ETH | ||||
5329731 | 2489 days ago | 2.99690847 ETH | ||||
5329131 | 2490 days ago | 0.12935 ETH | ||||
5329050 | 2490 days ago | 0.065 ETH | ||||
5327703 | 2490 days ago | 0.049 ETH | ||||
5326483 | 2490 days ago | 0.19476934 ETH | ||||
5326449 | 2490 days ago | 0.15801206 ETH | ||||
5325606 | 2490 days ago | 0.5 ETH | ||||
5325341 | 2490 days ago | 0.33333333 ETH | ||||
5323898 | 2490 days ago | 0.33333333 ETH |
Loading...
Loading
Contract Name:
FRNCoinCrowdsale
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-12-27 */ pragma solidity ^0.4.11; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract FRNCoinCrowdsale is Ownable { using SafeMath for uint256; // The token being sold StandardToken public token; // start and end timestamps where investments are allowed (both inclusive) uint256 public endTime; // address where funds are collected address public wallet; address public tokenPoolAddress; // how many token units a buyer gets per wei uint256 public rate; // amount of raised money in wei uint256 public weiRaised; /** * event for token purchase logging * @param purchaser who paid for the tokens * @param beneficiary who got the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); function FRNCoinCrowdsale( uint256 _endTime, uint256 _rate, address _wallet, address tokenAddress, address _tokenHolder ) Ownable() { require(_endTime > 0); require(_rate > 0); require(_wallet != 0x0); require(_tokenHolder != 0x0); token = StandardToken(tokenAddress); endTime = _endTime; rate = _rate; wallet = _wallet; tokenPoolAddress = _tokenHolder; } // fallback function can be used to buy tokens function () public payable { buyTokens(msg.sender); } function updateRate(uint256 _rate) onlyOwner external returns (bool) { require(_rate > 0); rate = _rate; return true; } function updateWallet(address _wallet) onlyOwner external returns (bool) { require(_wallet != 0x0); wallet = _wallet; return true; } function updateTokenAddress(address _tokenAddress) onlyOwner external returns (bool) { require(_tokenAddress != 0x0); token = StandardToken(_tokenAddress); return true; } function updateTokenPoolAddress(address _tokenHolder) onlyOwner external returns (bool) { require(_tokenHolder != 0x0); tokenPoolAddress = _tokenHolder; return true; } function updateEndTime(uint256 _endTime) onlyOwner external returns (bool){ endTime = _endTime; return true; } // low level token purchase function function buyTokens(address beneficiary) public payable returns (bool){ require(beneficiary != 0x0); require(validPurchase()); uint256 weiAmount = msg.value; // calculate token amount to be created uint256 tokens = weiAmount.mul(rate); // update state weiRaised = weiRaised.add(weiAmount); token.transferFrom(tokenPoolAddress, beneficiary, tokens); TokenPurchase(msg.sender, beneficiary, weiAmount, tokens); forwardFunds(); return true; } // send ether to the fund collection wallet // override to create custom fund forwarding mechanisms function forwardFunds() internal { wallet.transfer(msg.value); } // @return true if the transaction can buy tokens function validPurchase() internal constant returns (bool) { bool nonZeroPurchase = msg.value != 0; return !hasEnded() && nonZeroPurchase; } // @return true if crowdsale event has ended function hasEnded() public constant returns (bool) { return now > endTime; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"tokenPoolAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"updateTokenPoolAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"}],"name":"updateTokenAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"updateRate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_endTime","type":"uint256"}],"name":"updateEndTime","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"updateWallet","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"hasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_endTime","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_wallet","type":"address"},{"name":"tokenAddress","type":"address"},{"name":"_tokenHolder","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6060604052341561000f57600080fd5b60405160a080610f3783398101604052808051906020019091908051906020019091908051906020019091908051906020019091908051906020019091905050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008511151561009e57600080fd5b6000841115156100ad57600080fd5b60008373ffffffffffffffffffffffffffffffffffffffff16141515156100d357600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff16141515156100f957600080fd5b81600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846002819055508360058190555082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050610d59806101de6000396000f3006060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063298d075f146100e75780632c4e722e1461013c5780633197cbb6146101655780634042b66f1461018e578063412ec94f146101b7578063521eb273146102085780636691461a1461025d57806369ea1771146102ae5780636ab3846b146102e9578063848b86e3146103245780638da5cb5b14610375578063ec8ac4d8146103ca578063ecb70fb714610410578063f2fde38b1461043d578063fc0c546a14610476575b6100e4336104cb565b50005b34156100f257600080fd5b6100fa6106fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561014757600080fd5b61014f610722565b6040518082815260200191505060405180910390f35b341561017057600080fd5b610178610728565b6040518082815260200191505060405180910390f35b341561019957600080fd5b6101a161072e565b6040518082815260200191505060405180910390f35b34156101c257600080fd5b6101ee600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610734565b604051808215151515815260200191505060405180910390f35b341561021357600080fd5b61021b610801565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561026857600080fd5b610294600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610827565b604051808215151515815260200191505060405180910390f35b34156102b957600080fd5b6102cf60048080359060200190919050506108f4565b604051808215151515815260200191505060405180910390f35b34156102f457600080fd5b61030a6004808035906020019091905050610970565b604051808215151515815260200191505060405180910390f35b341561032f57600080fd5b61035b600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109dd565b604051808215151515815260200191505060405180910390f35b341561038057600080fd5b610388610aaa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506104cb565b604051808215151515815260200191505060405180910390f35b341561041b57600080fd5b610423610acf565b604051808215151515815260200191505060405180910390f35b341561044857600080fd5b610474600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610adb565b005b341561048157600080fd5b610489610c30565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000808473ffffffffffffffffffffffffffffffffffffffff16141515156104f557600080fd5b6104fd610c56565b151561050857600080fd5b34915061052060055483610c7890919063ffffffff16565b905061053782600654610cab90919063ffffffff16565b600681905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686846000604051602001526040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b151561066057600080fd5b6102c65a03f1151561067157600080fd5b50505060405180519050508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad188484604051808381526020018281526020019250505060405180910390a36106f1610cc9565b600192505050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b60025481565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561079157600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141515156107b757600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561088457600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141515156108aa57600080fd5b81600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561095157600080fd5b60008211151561096057600080fd5b8160058190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109cd57600080fd5b8160028190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a3a57600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff1614151515610a6057600080fd5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002544211905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b3657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610b7257600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060003414159050610c68610acf565b158015610c725750805b91505090565b60008082840290506000841480610c995750828482811515610c9657fe5b04145b1515610ca157fe5b8091505092915050565b6000808284019050838110151515610cbf57fe5b8091505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501515610d2b57600080fd5b5600a165627a7a72305820e56085830c3735029d353b5cb781f3ed99fad52da58d5b7117719dac306ea5d1002900000000000000000000000000000000000000000000000000000161dafeff0000000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c330000000000000000000000001e89b045e633c80d2bd1e0dd6bb69a5e7fdfb21a00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c33
Deployed Bytecode
0x6060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063298d075f146100e75780632c4e722e1461013c5780633197cbb6146101655780634042b66f1461018e578063412ec94f146101b7578063521eb273146102085780636691461a1461025d57806369ea1771146102ae5780636ab3846b146102e9578063848b86e3146103245780638da5cb5b14610375578063ec8ac4d8146103ca578063ecb70fb714610410578063f2fde38b1461043d578063fc0c546a14610476575b6100e4336104cb565b50005b34156100f257600080fd5b6100fa6106fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561014757600080fd5b61014f610722565b6040518082815260200191505060405180910390f35b341561017057600080fd5b610178610728565b6040518082815260200191505060405180910390f35b341561019957600080fd5b6101a161072e565b6040518082815260200191505060405180910390f35b34156101c257600080fd5b6101ee600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610734565b604051808215151515815260200191505060405180910390f35b341561021357600080fd5b61021b610801565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561026857600080fd5b610294600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610827565b604051808215151515815260200191505060405180910390f35b34156102b957600080fd5b6102cf60048080359060200190919050506108f4565b604051808215151515815260200191505060405180910390f35b34156102f457600080fd5b61030a6004808035906020019091905050610970565b604051808215151515815260200191505060405180910390f35b341561032f57600080fd5b61035b600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109dd565b604051808215151515815260200191505060405180910390f35b341561038057600080fd5b610388610aaa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506104cb565b604051808215151515815260200191505060405180910390f35b341561041b57600080fd5b610423610acf565b604051808215151515815260200191505060405180910390f35b341561044857600080fd5b610474600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610adb565b005b341561048157600080fd5b610489610c30565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000808473ffffffffffffffffffffffffffffffffffffffff16141515156104f557600080fd5b6104fd610c56565b151561050857600080fd5b34915061052060055483610c7890919063ffffffff16565b905061053782600654610cab90919063ffffffff16565b600681905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686846000604051602001526040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b151561066057600080fd5b6102c65a03f1151561067157600080fd5b50505060405180519050508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad188484604051808381526020018281526020019250505060405180910390a36106f1610cc9565b600192505050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b60025481565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561079157600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141515156107b757600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561088457600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141515156108aa57600080fd5b81600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561095157600080fd5b60008211151561096057600080fd5b8160058190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109cd57600080fd5b8160028190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a3a57600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff1614151515610a6057600080fd5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002544211905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b3657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610b7257600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060003414159050610c68610acf565b158015610c725750805b91505090565b60008082840290506000841480610c995750828482811515610c9657fe5b04145b1515610ca157fe5b8091505092915050565b6000808284019050838110151515610cbf57fe5b8091505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501515610d2b57600080fd5b5600a165627a7a72305820e56085830c3735029d353b5cb781f3ed99fad52da58d5b7117719dac306ea5d10029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000161dafeff0000000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c330000000000000000000000001e89b045e633c80d2bd1e0dd6bb69a5e7fdfb21a00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c33
-----Decoded View---------------
Arg [0] : _endTime (uint256): 1519797600000
Arg [1] : _rate (uint256): 170
Arg [2] : _wallet (address): 0x00DD507844b0Ddc585d1E5928f37586d81D56c33
Arg [3] : tokenAddress (address): 0x1E89b045e633c80d2Bd1E0dd6BB69a5e7fDfb21a
Arg [4] : _tokenHolder (address): 0x00DD507844b0Ddc585d1E5928f37586d81D56c33
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000161dafeff00
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000aa
Arg [2] : 00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c33
Arg [3] : 0000000000000000000000001e89b045e633c80d2bd1e0dd6bb69a5e7fdfb21a
Arg [4] : 00000000000000000000000000dd507844b0ddc585d1e5928f37586d81d56c33
Swarm Source
bzzr://e56085830c3735029d353b5cb781f3ed99fad52da58d5b7117719dac306ea5d1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.