Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
8117975 | 2052 days ago | 0.0032 ETH | ||||
8117975 | 2052 days ago | 0.0032 ETH | ||||
7175580 | 2206 days ago | 0.10221099 ETH | ||||
7175580 | 2206 days ago | 0.10221099 ETH | ||||
7175430 | 2206 days ago | 0.1035 ETH | ||||
7175430 | 2206 days ago | 0.1035 ETH | ||||
7174738 | 2206 days ago | 0.1 ETH | ||||
7174738 | 2206 days ago | 0.1 ETH | ||||
7174714 | 2206 days ago | 0.1 ETH | ||||
7174714 | 2206 days ago | 0.1 ETH | ||||
7161741 | 2209 days ago | 0.00665311 ETH | ||||
7161741 | 2209 days ago | 0.00665311 ETH | ||||
7042569 | 2232 days ago | 0.06859944 ETH | ||||
7042569 | 2232 days ago | 0.06859944 ETH | ||||
6497655 | 2322 days ago | 0.2 ETH | ||||
6497655 | 2322 days ago | 0.2 ETH | ||||
6437666 | 2332 days ago | 0.5 ETH | ||||
6437666 | 2332 days ago | 0.5 ETH | ||||
6381373 | 2341 days ago | 0.042 ETH | ||||
6381373 | 2341 days ago | 0.042 ETH | ||||
6319014 | 2352 days ago | 0.02778824 ETH | ||||
6319014 | 2352 days ago | 0.02778824 ETH | ||||
6289154 | 2357 days ago | 0.0004 ETH | ||||
6289154 | 2357 days ago | 0.0004 ETH | ||||
6246391 | 2364 days ago | 0.00066048 ETH |
Loading...
Loading
Contract Name:
Campaign
Compiler Version
v0.4.10+commit.f0d539ae
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-04-12 */ pragma solidity ^0.4.10; /* Copyright 2016, Jordi Baylina This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /// @title MiniMeToken Contract /// @author Jordi Baylina /// @dev This token contract's goal is to make it easy for anyone to clone this /// token using the token distribution at a given block, this will allow DAO's /// and DApps to upgrade their features in a decentralized manner without /// affecting the original token /// @dev It is ERC20 compliant, but still needs to under go further testing. /// @dev The token controller contract must implement these functions contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) payable returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) returns(bool); } contract Controlled { /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { if (msg.sender != controller) throw; _; } address public controller; function Controlled() { controller = msg.sender;} /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address _newController) onlyController { controller = _newController; } } /// @dev The actual token contract, the default controller is the msg.sender /// that deploys the contract, so usually this token will be deployed by a /// token controller contract, which Giveth will call a "Campaign" contract MiniMeToken is Controlled { string public name; //The Token's name: e.g. DigixDAO Tokens uint8 public decimals; //Number of decimals of the smallest unit string public symbol; //An identifier: e.g. REP string public version = 'MMT_0.1'; //An arbitrary versioning scheme /// @dev `Checkpoint` is the structure that attaches a block number to a /// given value, the block number attached is the one that last changed the /// value struct Checkpoint { // `fromBlock` is the block number that the value was generated from uint128 fromBlock; // `value` is the amount of tokens at a specific block number uint128 value; } // `parentToken` is the Token address that was cloned to produce this token; // it will be 0x0 for a token that was not cloned MiniMeToken public parentToken; // `parentSnapShotBlock` is the block number from the Parent Token that was // used to determine the initial distribution of the Clone Token uint public parentSnapShotBlock; // `creationBlock` is the block number that the Clone Token was created uint public creationBlock; // `balances` is the map that tracks the balance of each address, in this // contract when the balance changes the block number that the change // occurred is also included in the map mapping (address => Checkpoint[]) balances; // `allowed` tracks any extra transfer rights as in all ERC20 tokens mapping (address => mapping (address => uint256)) allowed; // Tracks the history of the `totalSupply` of the token Checkpoint[] totalSupplyHistory; // Flag that determines if the token is transferable or not. bool public transfersEnabled; // The factory used to create new clone tokens MiniMeTokenFactory public tokenFactory; //////////////// // Constructor //////////////// /// @notice Constructor to create a MiniMeToken /// @param _tokenFactory The address of the MiniMeTokenFactory contract that /// will create the Clone token contracts, the token factory needs to be /// deployed first /// @param _parentToken Address of the parent token, set to 0x0 if it is a /// new token /// @param _parentSnapShotBlock Block of the parent token that will /// determine the initial distribution of the clone token, set to 0 if it /// is a new token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred function MiniMeToken( address _tokenFactory, address _parentToken, uint _parentSnapShotBlock, string _tokenName, uint8 _decimalUnits, string _tokenSymbol, bool _transfersEnabled ) { tokenFactory = MiniMeTokenFactory(_tokenFactory); name = _tokenName; // Set the name decimals = _decimalUnits; // Set the decimals symbol = _tokenSymbol; // Set the symbol parentToken = MiniMeToken(_parentToken); parentSnapShotBlock = _parentSnapShotBlock; transfersEnabled = _transfersEnabled; creationBlock = block.number; } /////////////////// // ERC20 Methods /////////////////// /// @notice Send `_amount` tokens to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _amount) returns (bool success) { if (!transfersEnabled) throw; return doTransfer(msg.sender, _to, _amount); } /// @notice Send `_amount` tokens to `_to` from `_from` on the condition it /// is approved by `_from` /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function transferFrom(address _from, address _to, uint256 _amount ) returns (bool success) { // The controller of this contract can move tokens around at will, // this is important to recognize! Confirm that you trust the // controller of this contract, which in most situations should be // another open source smart contract or 0x0 if (msg.sender != controller) { if (!transfersEnabled) throw; // The standard ERC 20 transferFrom functionality if (allowed[_from][msg.sender] < _amount) return false; allowed[_from][msg.sender] -= _amount; } return doTransfer(_from, _to, _amount); } /// @dev This is the actual transfer function in the token contract, it can /// only be called by other functions in this contract. /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function doTransfer(address _from, address _to, uint _amount ) internal returns(bool) { if (_amount == 0) { return true; } // Do not allow transfer to 0x0 or the token contract itself if ((_to == 0) || (_to == address(this))) throw; // If the amount being transfered is more than the balance of the // account the transfer returns false var previousBalanceFrom = balanceOfAt(_from, block.number); if (previousBalanceFrom < _amount) { return false; } // Alerts the token controller of the transfer if (isContract(controller)) { if (!TokenController(controller).onTransfer(_from, _to, _amount)) throw; } // First update the balance array with the new value for the address // sending the tokens updateValueAtNow(balances[_from], previousBalanceFrom - _amount); // Then update the balance array with the new value for the address // receiving the tokens var previousBalanceTo = balanceOfAt(_to, block.number); updateValueAtNow(balances[_to], previousBalanceTo + _amount); // An event to make the transfer easy to find on the blockchain Transfer(_from, _to, _amount); return true; } /// @param _owner The address that's balance is being requested /// @return The balance of `_owner` at the current block function balanceOf(address _owner) constant returns (uint256 balance) { return balanceOfAt(_owner, block.number); } /// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on /// its behalf. This is a modified version of the ERC20 approve function /// to be a little bit safer /// @param _spender The address of the account able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the approval was successful function approve(address _spender, uint256 _amount) returns (bool success) { if (!transfersEnabled) throw; // To change the approve amount you first have to reduce the addresses´ // allowance to zero by calling `approve(_spender,0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 if ((_amount!=0) && (allowed[msg.sender][_spender] !=0)) throw; // Alerts the token controller of the approve function call if (isContract(controller)) { if (!TokenController(controller).onApprove(msg.sender, _spender, _amount)) throw; } allowed[msg.sender][_spender] = _amount; Approval(msg.sender, _spender, _amount); return true; } /// @dev This function makes it easy to read the `allowed[]` map /// @param _owner The address of the account that owns the token /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens of _owner that _spender is allowed /// to spend function allowance(address _owner, address _spender ) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on /// its behalf, and then a function is triggered in the contract that is /// being approved, `_spender`. This allows users to use their tokens to /// interact with contracts in one function call instead of two /// @param _spender The address of the contract able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the function call was successful function approveAndCall(address _spender, uint256 _amount, bytes _extraData ) returns (bool success) { allowed[msg.sender][_spender] = _amount; Approval(msg.sender, _spender, _amount); // This portion is copied from ConsenSys's Standard Token Contract. It // calls the receiveApproval function that is part of the contract that // is being approved (`_spender`). The function should look like: // `receiveApproval(address _from, uint256 _amount, address // _tokenContract, bytes _extraData)` It is assumed that the call // *should* succeed, otherwise the plain vanilla approve would be used if(!_spender.call( bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _amount, this, _extraData )) { throw; } return true; } /// @dev This function makes it easy to get the total number of tokens /// @return The total number of tokens function totalSupply() constant returns (uint) { return totalSupplyAt(block.number); } //////////////// // Query balance and totalSupply in History //////////////// /// @dev Queries the balance of `_owner` at a specific `_blockNumber` /// @param _owner The address from which the balance will be retrieved /// @param _blockNumber The block number when the balance is queried /// @return The balance at `_blockNumber` function balanceOfAt(address _owner, uint _blockNumber) constant returns (uint) { // If the `_blockNumber` requested is before the genesis block for the // the token being queried, the value returned is 0 if (_blockNumber < creationBlock) { return 0; // These next few lines are used when the balance of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.balanceOfAt` be queried at the // genesis block for that token as this contains initial balance of // this token } else if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.balanceOfAt(_owner, parentSnapShotBlock); } else { // Has no parent return 0; } // This will return the expected balance during normal situations } else { return getValueAt(balances[_owner], _blockNumber); } } /// @notice Total amount of tokens at a specific `_blockNumber`. /// @param _blockNumber The block number when the totalSupply is queried /// @return The total amount of tokens at `_blockNumber` function totalSupplyAt(uint _blockNumber) constant returns(uint) { // If the `_blockNumber` requested is before the genesis block for the // the token being queried, the value returned is 0 if (_blockNumber < creationBlock) { return 0; // These next few lines are used when the totalSupply of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.totalSupplyAt` be queried at the // genesis block for this token as that contains totalSupply of this // token at this block number. } else if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.totalSupplyAt(parentSnapShotBlock); } else { return 0; } // This will return the expected totalSupply during normal situations } else { return getValueAt(totalSupplyHistory, _blockNumber); } } //////////////// // Clone Token Method //////////////// /// @notice Creates a new clone token with the initial distribution being /// this token at `_snapshotBlock` /// @param _cloneTokenName Name of the clone token /// @param _cloneDecimalUnits Number of decimals of the smallest unit /// @param _cloneTokenSymbol Symbol of the clone token /// @param _snapshotBlock Block when the distribution of the parent token is /// copied to set the initial distribution of the new clone token; /// if the block is higher than the actual block, the current block is used /// @param _transfersEnabled True if transfers are allowed in the clone /// @return The address of the new MiniMeToken Contract function createCloneToken( string _cloneTokenName, uint8 _cloneDecimalUnits, string _cloneTokenSymbol, uint _snapshotBlock, bool _transfersEnabled ) returns(address) { if (_snapshotBlock > block.number) _snapshotBlock = block.number; MiniMeToken cloneToken = tokenFactory.createCloneToken( this, _snapshotBlock, _cloneTokenName, _cloneDecimalUnits, _cloneTokenSymbol, _transfersEnabled ); cloneToken.changeController(msg.sender); // An event to make the token easy to find on the blockchain NewCloneToken(address(cloneToken), _snapshotBlock); return address(cloneToken); } //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _owner The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _owner, uint _amount ) onlyController returns (bool) { uint curTotalSupply = getValueAt(totalSupplyHistory, block.number); updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount); var previousBalanceTo = balanceOf(_owner); updateValueAtNow(balances[_owner], previousBalanceTo + _amount); Transfer(0, _owner, _amount); return true; } /// @notice Burns `_amount` tokens from `_owner` /// @param _owner The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _owner, uint _amount ) onlyController returns (bool) { uint curTotalSupply = getValueAt(totalSupplyHistory, block.number); if (curTotalSupply < _amount) throw; updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount); var previousBalanceFrom = balanceOf(_owner); if (previousBalanceFrom < _amount) throw; updateValueAtNow(balances[_owner], previousBalanceFrom - _amount); Transfer(_owner, 0, _amount); return true; } //////////////// // Enable tokens transfers //////////////// /// @notice Enables token holders to transfer their tokens freely if true /// @param _transfersEnabled True if transfers are allowed in the clone function enableTransfers(bool _transfersEnabled) onlyController { transfersEnabled = _transfersEnabled; } //////////////// // Internal helper functions to query and set a value in a snapshot array //////////////// /// @dev `getValueAt` retrieves the number of tokens at a given block number /// @param checkpoints The history of values being queried /// @param _block The block number to retrieve the value at /// @return The number of tokens being queried function getValueAt(Checkpoint[] storage checkpoints, uint _block ) constant internal returns (uint) { if (checkpoints.length == 0) return 0; // Shortcut for the actual value if (_block >= checkpoints[checkpoints.length-1].fromBlock) return checkpoints[checkpoints.length-1].value; if (_block < checkpoints[0].fromBlock) return 0; // Binary search of the value in the array uint min = 0; uint max = checkpoints.length-1; while (max > min) { uint mid = (max + min + 1)/ 2; if (checkpoints[mid].fromBlock<=_block) { min = mid; } else { max = mid-1; } } return checkpoints[min].value; } /// @dev `updateValueAtNow` used to update the `balances` map and the /// `totalSupplyHistory` /// @param checkpoints The history of data being updated /// @param _value The new number of tokens function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value ) internal { if ((checkpoints.length == 0) || (checkpoints[checkpoints.length -1].fromBlock < block.number)) { Checkpoint newCheckPoint = checkpoints[ checkpoints.length++ ]; newCheckPoint.fromBlock = uint128(block.number); newCheckPoint.value = uint128(_value); } else { Checkpoint oldCheckPoint = checkpoints[checkpoints.length-1]; oldCheckPoint.value = uint128(_value); } } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) constant internal returns(bool) { uint size; if (_addr == 0) return false; assembly { size := extcodesize(_addr) } return size>0; } /// @notice The fallback function: If the contract's controller has not been /// set to 0, then the `proxyPayment` method is called which relays the /// ether and creates tokens as described in the token controller contract function () payable { if (isContract(controller)) { if (! TokenController(controller).proxyPayment.value(msg.value)(msg.sender)) throw; } else { throw; } } //////////////// // Events //////////////// event Transfer(address indexed _from, address indexed _to, uint256 _amount); event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock); event Approval( address indexed _owner, address indexed _spender, uint256 _amount ); } //////////////// // MiniMeTokenFactory //////////////// /// @dev This contract is used to generate clone contracts from a contract. /// In solidity this is the way to create a contract from a contract of the /// same class contract MiniMeTokenFactory { /// @notice Update the DApp by creating a new token with new functionalities /// the msg.sender becomes the controller of this clone token /// @param _parentToken Address of the token being cloned /// @param _snapshotBlock Block of the parent token that will /// determine the initial distribution of the clone token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred /// @return The address of the new token contract function createCloneToken( address _parentToken, uint _snapshotBlock, string _tokenName, uint8 _decimalUnits, string _tokenSymbol, bool _transfersEnabled ) returns (MiniMeToken) { MiniMeToken newToken = new MiniMeToken( this, _parentToken, _snapshotBlock, _tokenName, _decimalUnits, _tokenSymbol, _transfersEnabled ); newToken.changeController(msg.sender); return newToken; } } contract Owned { /// Prevents methods from perfoming any value transfer modifier noEther() {if (msg.value > 0) throw; _; } /// Allows only the owner to call a function modifier onlyOwner { if (msg.sender != owner) throw; _; } address owner; function Owned() { owner = msg.sender;} function changeOwner(address _newOwner) onlyOwner { owner = _newOwner; } function getOwner() noEther constant returns (address) { return owner; } } /// @title CampaignToken Contract /// @author Jordi Baylina /// @dev This is designed to control the ChairtyToken contract. contract Campaign is TokenController, Owned { uint public startFundingTime; // In UNIX Time Format uint public endFundingTime; // In UNIX Time Format uint public maximumFunding; // In wei uint public totalCollected; // In wei MiniMeToken public tokenContract; // The new token for this Campaign address public vaultAddress; // The address to hold the funds donated /// @notice 'Campaign()' initiates the Campaign by setting its funding /// parameters and creating the deploying the token contract /// @dev There are several checks to make sure the parameters are acceptable /// @param _startFundingTime The UNIX time that the Campaign will be able to /// start receiving funds /// @param _endFundingTime The UNIX time that the Campaign will stop being able /// to receive funds /// @param _maximumFunding In wei, the Maximum amount that the Campaign can /// receive (currently the max is set at 10,000 ETH for the beta) /// @param _vaultAddress The address that will store the donated funds /// @param _tokenAddress Address of the token contract function Campaign( uint _startFundingTime, uint _endFundingTime, uint _maximumFunding, address _vaultAddress, address _tokenAddress ) { if ((_endFundingTime < now) || // Cannot start in the past (_endFundingTime <= _startFundingTime) || (_maximumFunding > 100000 ether) || // The Beta is limited (_vaultAddress == 0)) // To prevent burning ETH { throw; } startFundingTime = _startFundingTime; endFundingTime = _endFundingTime; maximumFunding = _maximumFunding; tokenContract = MiniMeToken(_tokenAddress); // Deploys the Token Contract vaultAddress = _vaultAddress; } /// @dev The fallback function is called when ether is sent to the contract, it /// simply calls `doPayment()` with the address that sent the ether as the /// `_owner`. Payable is a required solidity modifier for functions to receive /// ether, without this modifier they will throw function () payable { doPayment(msg.sender); } ///////////////// // TokenController interface ///////////////// /// @notice `proxyPayment()` allows the caller to send ether to the Campaign and /// have the CampaignTokens created in an address of their choosing /// @param _owner The address that will hold the newly created CampaignTokens function proxyPayment(address _owner) payable returns(bool) { doPayment(_owner); return true; } /// @notice Notifies the controller about a transfer /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) returns(bool) { return true; } /// @notice Notifies the controller about an approval /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The ammount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) returns(bool) { return true; } /// @dev `doPayment()` is an internal function that sends the ether that this /// contract receives to the `vault` and creates campaignTokens in the /// address of the `_owner` assuming the Campaign is still accepting funds /// @param _owner The address that will hold the newly created CampaignTokens function doPayment(address _owner) internal { // First we check that the Campaign is allowed to receive this donation if ((now<startFundingTime) || (now>endFundingTime) || (tokenContract.controller() == 0) || // Extra check (msg.value == 0) || (totalCollected + msg.value > maximumFunding)) { throw; } //Track how much the Campaign has collected totalCollected += msg.value; //Send the ether to the vault if (!vaultAddress.send(msg.value)) { throw; } // Creates an equal amount of CampaignTokens as ether sent. The new CampaignTokens // are created in the `_owner` address if (!tokenContract.generateTokens(_owner, msg.value)) { throw; } return; } /// @notice `finalizeFunding()` ends the Campaign by calling removing himself /// as a controller. /// @dev `finalizeFunding()` can only be called after the end of the funding period. function finalizeFunding() { if (now < endFundingTime) throw; tokenContract.changeController(0); } //////////// // Initial import from the old token //////////// bool public sealed; function fill(uint[] data) onlyOwner { if (sealed) throw; for (uint i=0; i< data.length; i+= 2) { address dth = address(data[i]); uint amount = uint(data[i+1]); if (!tokenContract.generateTokens(dth, amount)) { throw; } totalCollected += amount; } } function seal() { if (sealed) throw; sealed= true; } function setVault(address _newVaultAddress) onlyOwner { vaultAddress = _newVaultAddress; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"seal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vaultAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newVaultAddress","type":"address"}],"name":"setVault","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"}],"name":"fill","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumFunding","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalizeFunding","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startFundingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"onApprove","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endFundingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sealed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"inputs":[{"name":"_startFundingTime","type":"uint256"},{"name":"_endFundingTime","type":"uint256"},{"name":"_maximumFunding","type":"uint256"},{"name":"_vaultAddress","type":"address"},{"name":"_tokenAddress","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"}]
Contract Creation Code
6060604052341561000c57fe5b60405160a08061092583398101604090815281516020830151918301516060840151608090940151919390915b5b60008054600160a060020a03191633600160a060020a03161790555b428410806100645750848411155b80610078575069152d02c7e14af680000083115b8061008a5750600160a060020a038216155b156100955760006000fd5b60018590556002849055600383905560058054600160a060020a03808416600160a060020a03199283161790925560068054928516929091169190911790555b50505050505b61083b806100ea6000396000f300606060405236156100ca5763ffffffff60e060020a6000350416633fb27b8581146100dc578063430bf08a146100ee5780634a3931491461011a57806355a373d6146101535780636817031b1461017f578063884b5dc21461019d578063893d20e8146101f257806399d64ab01461021e578063a19ed39d14610240578063a6f9dae114610252578063b75ece9c14610270578063da682aeb1461011a578063e29eb836146102cb578063e4693e98146102ed578063e4b203ef1461030f578063f48c305414610333575b6100da5b6100d73361035b565b5b565b005b34156100e457fe5b6100da6104f1565b005b34156100f657fe5b6100fe610530565b60408051600160a060020a039092168252519081900360200190f35b341561012257fe5b61013f600160a060020a036004358116906024351660443561053f565b604080519115158252519081900360200190f35b341561015b57fe5b6100fe610549565b60408051600160a060020a039092168252519081900360200190f35b341561018757fe5b6100da600160a060020a0360043516610558565b005b34156101a557fe5b6100da6004808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105a195505050505050565b005b34156101fa57fe5b6100fe6106d9565b60408051600160a060020a039092168252519081900360200190f35b341561022657fe5b61022e6106fc565b60408051918252519081900360200190f35b341561024857fe5b6100da610702565b005b341561025a57fe5b6100da600160a060020a0360043516610786565b005b341561027857fe5b61022e6107cf565b60408051918252519081900360200190f35b341561012257fe5b61013f600160a060020a036004358116906024351660443561053f565b604080519115158252519081900360200190f35b34156102d357fe5b61022e6107df565b60408051918252519081900360200190f35b34156102f557fe5b61022e6107e5565b60408051918252519081900360200190f35b341561031757fe5b61013f6107eb565b604080519115158252519081900360200190f35b61013f600160a060020a03600435166107fb565b604080519115158252519081900360200190f35b60015442108061036c575060025442115b806103f65750600554604080516000602091820181905282517ff77c47910000000000000000000000000000000000000000000000000000000081529251600160a060020a039094169363f77c47919360048082019493918390030190829087803b15156103d657fe5b60325a03f115156103e357fe5b505060405151600160a060020a03161590505b806103ff575034155b8061040f57506003543460045401115b1561041a5760006000fd5b6004805434908101909155600654604051600160a060020a039091169180156108fc02916000818181858888f1935050505015156104585760006000fd5b600554604080516000602091820181905282517f827f32c0000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301523460248301529351939094169363827f32c0936044808301949391928390030190829087803b15156104cc57fe5b60325a03f115156104d957fe5b505060405151151590506104ed5760006000fd5b5b50565b60065460a060020a900460ff16156105095760006000fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790555b565b600654600160a060020a031681565b60015b9392505050565b600554600160a060020a031681565b60005433600160a060020a039081169116146105745760006000fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080548190819033600160a060020a039081169116146105c25760006000fd5b60065460a060020a900460ff16156105da5760006000fd5b600092505b83518310156106d15783838151811015156105f657fe5b906020019060200201519150838360010181518110151561061357fe5b906020019060200201519050600560009054906101000a9004600160a060020a0316600160a060020a031663827f32c083836000604051602001526040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b151561069c57fe5b60325a03f115156106a957fe5b505060405151151590506106bd5760006000fd5b60048054820190555b6002830192506105df565b5b5b50505050565b600060003411156106ea5760006000fd5b50600054600160a060020a03165b5b90565b60035481565b6002544210156107125760006000fd5b600554604080517f3cebb8230000000000000000000000000000000000000000000000000000000081526000600482018190529151600160a060020a0390931692633cebb8239260248084019391929182900301818387803b151561077357fe5b60325a03f1151561078057fe5b5050505b565b60005433600160a060020a039081169116146107a25760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60015481565b60015b9392505050565b60045481565b60025481565b60065460a060020a900460ff1681565b60006108068261035b565b5060015b9190505600a165627a7a72305820ba09f9e56790c41549e644beae47ef269d96f2db75829694f2f4220b7e5e3c2900290000000000000000000000000000000000000000000000000000000058ee4657000000000000000000000000000000000000000000000000000000007e864c5700000000000000000000000000000000000000000000152d02c7e14af68000000000000000000000000000008f951903c9360345b4e1b536c7f5ae8f88a64e79000000000000000000000000b94c53b0e67fabac3d97173482663ef597d4174a
Deployed Bytecode
0x606060405236156100ca5763ffffffff60e060020a6000350416633fb27b8581146100dc578063430bf08a146100ee5780634a3931491461011a57806355a373d6146101535780636817031b1461017f578063884b5dc21461019d578063893d20e8146101f257806399d64ab01461021e578063a19ed39d14610240578063a6f9dae114610252578063b75ece9c14610270578063da682aeb1461011a578063e29eb836146102cb578063e4693e98146102ed578063e4b203ef1461030f578063f48c305414610333575b6100da5b6100d73361035b565b5b565b005b34156100e457fe5b6100da6104f1565b005b34156100f657fe5b6100fe610530565b60408051600160a060020a039092168252519081900360200190f35b341561012257fe5b61013f600160a060020a036004358116906024351660443561053f565b604080519115158252519081900360200190f35b341561015b57fe5b6100fe610549565b60408051600160a060020a039092168252519081900360200190f35b341561018757fe5b6100da600160a060020a0360043516610558565b005b34156101a557fe5b6100da6004808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105a195505050505050565b005b34156101fa57fe5b6100fe6106d9565b60408051600160a060020a039092168252519081900360200190f35b341561022657fe5b61022e6106fc565b60408051918252519081900360200190f35b341561024857fe5b6100da610702565b005b341561025a57fe5b6100da600160a060020a0360043516610786565b005b341561027857fe5b61022e6107cf565b60408051918252519081900360200190f35b341561012257fe5b61013f600160a060020a036004358116906024351660443561053f565b604080519115158252519081900360200190f35b34156102d357fe5b61022e6107df565b60408051918252519081900360200190f35b34156102f557fe5b61022e6107e5565b60408051918252519081900360200190f35b341561031757fe5b61013f6107eb565b604080519115158252519081900360200190f35b61013f600160a060020a03600435166107fb565b604080519115158252519081900360200190f35b60015442108061036c575060025442115b806103f65750600554604080516000602091820181905282517ff77c47910000000000000000000000000000000000000000000000000000000081529251600160a060020a039094169363f77c47919360048082019493918390030190829087803b15156103d657fe5b60325a03f115156103e357fe5b505060405151600160a060020a03161590505b806103ff575034155b8061040f57506003543460045401115b1561041a5760006000fd5b6004805434908101909155600654604051600160a060020a039091169180156108fc02916000818181858888f1935050505015156104585760006000fd5b600554604080516000602091820181905282517f827f32c0000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301523460248301529351939094169363827f32c0936044808301949391928390030190829087803b15156104cc57fe5b60325a03f115156104d957fe5b505060405151151590506104ed5760006000fd5b5b50565b60065460a060020a900460ff16156105095760006000fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790555b565b600654600160a060020a031681565b60015b9392505050565b600554600160a060020a031681565b60005433600160a060020a039081169116146105745760006000fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080548190819033600160a060020a039081169116146105c25760006000fd5b60065460a060020a900460ff16156105da5760006000fd5b600092505b83518310156106d15783838151811015156105f657fe5b906020019060200201519150838360010181518110151561061357fe5b906020019060200201519050600560009054906101000a9004600160a060020a0316600160a060020a031663827f32c083836000604051602001526040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b151561069c57fe5b60325a03f115156106a957fe5b505060405151151590506106bd5760006000fd5b60048054820190555b6002830192506105df565b5b5b50505050565b600060003411156106ea5760006000fd5b50600054600160a060020a03165b5b90565b60035481565b6002544210156107125760006000fd5b600554604080517f3cebb8230000000000000000000000000000000000000000000000000000000081526000600482018190529151600160a060020a0390931692633cebb8239260248084019391929182900301818387803b151561077357fe5b60325a03f1151561078057fe5b5050505b565b60005433600160a060020a039081169116146107a25760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60015481565b60015b9392505050565b60045481565b60025481565b60065460a060020a900460ff1681565b60006108068261035b565b5060015b9190505600a165627a7a72305820ba09f9e56790c41549e644beae47ef269d96f2db75829694f2f4220b7e5e3c290029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000058ee4657000000000000000000000000000000000000000000000000000000007e864c5700000000000000000000000000000000000000000000152d02c7e14af68000000000000000000000000000008f951903c9360345b4e1b536c7f5ae8f88a64e79000000000000000000000000b94c53b0e67fabac3d97173482663ef597d4174a
-----Decoded View---------------
Arg [0] : _startFundingTime (uint256): 1492010583
Arg [1] : _endFundingTime (uint256): 2122730583
Arg [2] : _maximumFunding (uint256): 100000000000000000000000
Arg [3] : _vaultAddress (address): 0x8f951903C9360345B4e1b536c7F5ae8f88A64e79
Arg [4] : _tokenAddress (address): 0xB94c53B0E67FABac3d97173482663Ef597D4174a
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000058ee4657
Arg [1] : 000000000000000000000000000000000000000000000000000000007e864c57
Arg [2] : 00000000000000000000000000000000000000000000152d02c7e14af6800000
Arg [3] : 0000000000000000000000008f951903c9360345b4e1b536c7f5ae8f88a64e79
Arg [4] : 000000000000000000000000b94c53b0e67fabac3d97173482663ef597d4174a
Swarm Source
bzzr://ba09f9e56790c41549e644beae47ef269d96f2db75829694f2f4220b7e5e3c29
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.