ETH Price: $2,615.46 (+1.66%)

Contract

0xaC0179761Ac1e385b8Fc58E20943dfD5d052A50b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318892017-07-16 21:18:492648 days ago1500239929IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318882017-07-16 21:18:112648 days ago1500239891IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318882017-07-16 21:18:112648 days ago1500239891IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318862017-07-16 21:17:572648 days ago1500239877IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318852017-07-16 21:16:462648 days ago1500239806IN
0xaC017976...5d052A50b
0 ETH0.0027080831.5
Issue40318852017-07-16 21:16:462648 days ago1500239806IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318852017-07-16 21:16:462648 days ago1500239806IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318852017-07-16 21:16:462648 days ago1500239806IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
Issue40318852017-07-16 21:16:462648 days ago1500239806IN
0xaC017976...5d052A50b
0 ETH0.0027060731.5
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Issuer

Compiler Version
v0.4.8+commit.60cc1668

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-07-14
*/

pragma solidity ^0.4.8;



/*
 * ERC20 interface
 * see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 {
  uint public totalSupply;
  function balanceOf(address who) constant returns (uint);
  function allowance(address owner, address spender) constant returns (uint);

  function transfer(address to, uint value) returns (bool ok);
  function transferFrom(address from, address to, uint value) returns (bool ok);
  function approve(address spender, uint value) returns (bool ok);
  event Transfer(address indexed from, address indexed to, uint value);
  event Approval(address indexed owner, address indexed spender, uint value);
}



/*
 * Ownable
 *
 * Base contract with an owner.
 * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
 */
contract Ownable {
  address public owner;

  function Ownable() {
    owner = msg.sender;
  }

  modifier onlyOwner() {
    if (msg.sender != owner) {
      throw;
    }
    _;
  }

  function transferOwnership(address newOwner) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}


/**
 * Issuer manages token distribution after the crowdsale.
 *
 * This contract is fed a CSV file with Ethereum addresses and their
 * issued token balances.
 *
 * Issuer act as a gate keeper to ensure there is no double issuance
 * per address, in the case we need to do several issuance batches,
 * there is a race condition or there is a fat finger error.
 *
 * Issuer contract gets allowance from the team multisig to distribute tokens.
 *
 */
contract Issuer is Ownable {

  /** Map addresses whose tokens we have already issued. */
  mapping(address => bool) public issued;

  /** Centrally issued token we are distributing to our contributors */
  ERC20 public token;

  /** Party (team multisig) who is in the control of the token pool. Note that this will be different from the owner address (scripted) that calls this contract. */
  address public allower;

  /** How many addresses have received their tokens. */
  uint public issuedCount;

  function Issuer(address _owner, address _allower, ERC20 _token) {
    owner = _owner;
    allower = _allower;
    token = _token;
  }

  function issue(address benefactor, uint amount) onlyOwner {
    if(issued[benefactor]) throw;
    token.transferFrom(allower, benefactor, amount);
    issued[benefactor] = true;
    issuedCount += amount;
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"issuedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"benefactor","type":"address"},{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"allower","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"issued","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_owner","type":"address"},{"name":"_allower","type":"address"},{"name":"_token","type":"address"}],"payable":false,"type":"constructor"}]

606060405234610000576040516060806103cd8339810160409081528151602083015191909201515b5b60008054600160a060020a03191633600160a060020a03161790555b60008054600160a060020a03808616600160a060020a0319928316179092556003805485841690831617905560028054928416929091169190911790555b5050505b610337806100966000396000f300606060405236156100675763ffffffff60e060020a6000350416630b0f7743811461006c578063867904b41461008b5780638da5cb5b146100a9578063dd449a83146100d2578063f02d7ef0146100fb578063f2fde38b14610128578063fc0c546a14610143575b610000565b346100005761007961016c565b60408051918252519081900360200190f35b34610000576100a7600160a060020a0360043516602435610172565b005b34610000576100b6610271565b60408051600160a060020a039092168252519081900360200190f35b34610000576100b6610280565b60408051600160a060020a039092168252519081900360200190f35b3461000057610114600160a060020a036004351661028f565b604080519115158252519081900360200190f35b34610000576100a7600160a060020a03600435166102a4565b005b34610000576100b66102fc565b60408051600160a060020a039092168252519081900360200190f35b60045481565b60005433600160a060020a0390811691161461018d57610000565b600160a060020a03821660009081526001602052604090205460ff16156101b357610000565b600254600354604080516000602091820181905282517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a039485166004820152878516602482015260448101879052925193909416936323b872dd936064808501949192918390030190829087803b156100005760325a03f11561000057505050600160a060020a0382166000908152600160208190526040909120805460ff1916909117905560048054820190555b5b5050565b600054600160a060020a031681565b600354600160a060020a031681565b60016020526000908152604090205460ff1681565b60005433600160a060020a039081169116146102bf57610000565b600160a060020a038116156102f7576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600254600160a060020a0316815600a165627a7a72305820a395c617733c9e561b328d67424a191b8395443826bb5e97b514721482ce1dff00290000000000000000000000009a95c1be5497cbc0cfedde4853aed3f2faa8afca0000000000000000000000002323763d78bf7104b54a462a79c2ce858d118f2f00000000000000000000000041e5560054824ea6b0732e656e3ad64e20e94e45

Deployed Bytecode

0x606060405236156100675763ffffffff60e060020a6000350416630b0f7743811461006c578063867904b41461008b5780638da5cb5b146100a9578063dd449a83146100d2578063f02d7ef0146100fb578063f2fde38b14610128578063fc0c546a14610143575b610000565b346100005761007961016c565b60408051918252519081900360200190f35b34610000576100a7600160a060020a0360043516602435610172565b005b34610000576100b6610271565b60408051600160a060020a039092168252519081900360200190f35b34610000576100b6610280565b60408051600160a060020a039092168252519081900360200190f35b3461000057610114600160a060020a036004351661028f565b604080519115158252519081900360200190f35b34610000576100a7600160a060020a03600435166102a4565b005b34610000576100b66102fc565b60408051600160a060020a039092168252519081900360200190f35b60045481565b60005433600160a060020a0390811691161461018d57610000565b600160a060020a03821660009081526001602052604090205460ff16156101b357610000565b600254600354604080516000602091820181905282517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a039485166004820152878516602482015260448101879052925193909416936323b872dd936064808501949192918390030190829087803b156100005760325a03f11561000057505050600160a060020a0382166000908152600160208190526040909120805460ff1916909117905560048054820190555b5b5050565b600054600160a060020a031681565b600354600160a060020a031681565b60016020526000908152604090205460ff1681565b60005433600160a060020a039081169116146102bf57610000565b600160a060020a038116156102f7576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600254600160a060020a0316815600a165627a7a72305820a395c617733c9e561b328d67424a191b8395443826bb5e97b514721482ce1dff0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000009a95c1be5497cbc0cfedde4853aed3f2faa8afca0000000000000000000000002323763d78bf7104b54a462a79c2ce858d118f2f00000000000000000000000041e5560054824ea6b0732e656e3ad64e20e94e45

-----Decoded View---------------
Arg [0] : _owner (address): 0x9a95C1BE5497CBC0CfEDde4853AED3F2faa8afcA
Arg [1] : _allower (address): 0x2323763D78bF7104b54A462A79C2Ce858d118F2F
Arg [2] : _token (address): 0x41e5560054824eA6B0732E656E3Ad64E20e94E45

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009a95c1be5497cbc0cfedde4853aed3f2faa8afca
Arg [1] : 0000000000000000000000002323763d78bf7104b54a462a79c2ce858d118f2f
Arg [2] : 00000000000000000000000041e5560054824ea6b0732e656e3ad64e20e94e45


Swarm Source

bzzr://a395c617733c9e561b328d67424a191b8395443826bb5e97b514721482ce1dff

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.