ETH Price: $2,169.87 (+4.17%)

Contract

0x4E8D979271cC2739D2Bbd13B291faA3Eb6Df1504
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer123770402021-05-05 22:44:401782 days ago1620254680IN
NokuEURToken
0 ETH0.0016948886
Transfer116028362021-01-06 19:03:451901 days ago1609959825IN
NokuEURToken
0 ETH0.0014481268
Transfer115156232020-12-24 9:56:511915 days ago1608803811IN
NokuEURToken
0 ETH0.00399388110
Transfer113145082020-11-23 12:30:161946 days ago1606134616IN
NokuEURToken
0 ETH0.0007449435.00000051
Transfer107873042020-09-03 8:42:452027 days ago1599122565IN
NokuEURToken
0 ETH0.00596624280
Transfer107838802020-09-02 20:05:152027 days ago1599077115IN
NokuEURToken
0 ETH0.01186486327
Transfer107697442020-08-31 16:22:262029 days ago1598890946IN
NokuEURToken
0 ETH0.01083435298.5
Transfer107695362020-08-31 15:37:162029 days ago1598888236IN
NokuEURToken
0 ETH0.01059492292
Transfer107688092020-08-31 12:54:042030 days ago1598878444IN
NokuEURToken
0 ETH0.01127984220.00000145
Transfer107507522020-08-28 18:15:022032 days ago1598638502IN
NokuEURToken
0 ETH0.0019166490
Transfer107497412020-08-28 14:30:472033 days ago1598625047IN
NokuEURToken
0 ETH0.0029036880
Transfer107436662020-08-27 16:26:252033 days ago1598545585IN
NokuEURToken
0 ETH0.003847275
Transfer104104622020-07-07 5:45:342085 days ago1594100734IN
NokuEURToken
0 ETH0.0018970637
Transfer103660202020-06-30 8:27:052092 days ago1593505625IN
NokuEURToken
0 ETH0.0035907270
Transfer102589392020-06-13 18:22:562108 days ago1592072576IN
NokuEURToken
0 ETH0.0002768413
Transfer102071352020-06-05 17:47:302116 days ago1591379250IN
NokuEURToken
0 ETH0.0015905431.00000051
Transfer102053662020-06-05 11:04:442117 days ago1591355084IN
NokuEURToken
0 ETH0.000639630
Transfer99290522020-04-23 13:34:252160 days ago1587648865IN
NokuEURToken
0 ETH0.000085134
Transfer99238082020-04-22 18:18:342160 days ago1587579514IN
NokuEURToken
0 ETH0.000145234
Transfer99172052020-04-21 17:36:252161 days ago1587490585IN
NokuEURToken
0 ETH0.000108883
Transfer99170712020-04-21 17:06:392161 days ago1587488799IN
NokuEURToken
0 ETH0.000145184
Transfer99170362020-04-21 17:00:322161 days ago1587488432IN
NokuEURToken
0 ETH0.000145134
Transfer99168722020-04-21 16:26:022161 days ago1587486362IN
NokuEURToken
0 ETH0.0004393212.10000077
Transfer99167732020-04-21 16:05:282161 days ago1587485128IN
NokuEURToken
0 ETH0.0006205312.10000077
Transfer98724122020-04-14 19:16:402168 days ago1586891800IN
NokuEURToken
0 ETH0.000087364.1
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NokuToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.11;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control 
 * functions, this simplifies the implementation of "user permissions". 
 */
contract Ownable {
  address public owner;


  /** 
   * @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() {
    if (msg.sender != owner) {
      throw;
    }
    _;
  }


  /**
   * @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 {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}


/**
 * @title Claimable
 * @dev Extension for the Ownable contract, where the ownership needs to be claimed. 
 * This allows the new owner to accept the transfer.
 */
contract Claimable is Ownable {
  address public pendingOwner;

  /**
   * @dev Modifier throws if called by any account other than the pendingOwner. 
   */
  modifier onlyPendingOwner() {
    if (msg.sender != pendingOwner) {
      throw;
    }
    _;
  }

  /**
   * @dev Allows the current owner to set the pendingOwner address. 
   * @param newOwner The address to transfer ownership to. 
   */
  function transferOwnership(address newOwner) onlyOwner {
    pendingOwner = newOwner;
  }

  /**
   * @dev Allows the pendingOwner address to finalize the transfer.
   */
  function claimOwnership() onlyPendingOwner {
    owner = pendingOwner;
    pendingOwner = 0x0;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal 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 returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances. 
 */
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) {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
  }

  /**
  * @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) constant returns (uint256 balance) {
    return balances[_owner];
  }
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value);
  function approve(address spender, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @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 amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint256 _value) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // if (_value > _allowance) throw;

    balances[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
  }

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) {

    // 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 ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
  }

  /**
   * @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 specifing the amount of tokens still avaible for the spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

contract ControlledSupplyToken is Claimable, StandardToken {
    using SafeMath for uint256;

    address public minter;

    event Burn(uint amount);
    event Mint(uint amount);

    modifier onlyMinter() {
        if (msg.sender != minter) throw;
        _;
    }

    function ControlledSupplyToken(
        uint256 initialSupply
    ) {
        totalSupply = initialSupply;
        balances[msg.sender] = initialSupply;
    }

    function changeMinter(address _minter) onlyOwner {
        minter = _minter;
    }

    function mintTokens(address target, uint256 mintedAmount) onlyMinter {
        if (mintedAmount > 0) {
            balances[target] = balances[target].add(mintedAmount);
            totalSupply = totalSupply.add(mintedAmount);
            Mint(mintedAmount);
            Transfer(0, target, mintedAmount);
        }
    }

    function burnTokens(uint256 burnedAmount) onlyMinter {
        if (burnedAmount > balances[msg.sender]) throw;
        if (burnedAmount == 0) throw;
        balances[msg.sender] = balances[msg.sender].sub(burnedAmount);
        totalSupply = totalSupply.sub(burnedAmount);
        Transfer(msg.sender, 0, burnedAmount);
        Burn(burnedAmount);
    }
}

contract NokuToken is ControlledSupplyToken {
  string public name;
  string public symbol;
  uint256 public decimals;

  function NokuToken(
    uint256 _initialSupply,
    string _tokenName,
    uint8 _decimalUnits,
    string _tokenSymbol
  ) ControlledSupplyToken(_initialSupply) {
    name = _tokenName;
    symbol = _tokenSymbol;
    decimals = _decimalUnits;
  }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"changeMinter","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"burnedAmount","type":"uint256"}],"name":"burnTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6060604052341561000c57fe5b604051610cc4380380610cc4833981016040908152815160208301519183015160608401519193928301929091015b835b5b60008054600160a060020a03191633600160a060020a03161790555b6002819055600160a060020a03331660009081526003602052604090208190555b50825161008f9060069060208601906100b5565b5080516100a39060079060208401906100b5565b5060ff82166008555b50505050610155565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100f657805160ff1916838001178555610123565b82800160010185558215610123579182015b82811115610123578251825591602001919060010190610108565b5b50610130929150610134565b5090565b61015291905b80821115610130576000815560010161013a565b5090565b90565b610b60806101646000396000f300606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f05780630754617214610180578063095ea7b3146101ac57806318160ddd146101cd57806323b872dd146101ef5780632c4d4d1814610216578063313ce567146102345780634e71e0c8146102565780636d1b229d1461026857806370a082311461027d5780638da5cb5b146102ab57806395d89b41146102d7578063a9059cbb14610367578063dd62ed3e14610388578063e30c3978146103bc578063f0dda65c146103e8578063f2fde38b14610409575bfe5b34156100f857fe5b610100610427565b604080516020808252835181830152835191928392908301918501908083838215610146575b80518252602083111561014657601f199092019160209182019101610126565b505050905090810190601f1680156101725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018857fe5b6101906104b5565b60408051600160a060020a039092168252519081900360200190f35b34156101b457fe5b6101cb600160a060020a03600435166024356104c4565b005b34156101d557fe5b6101dd610564565b60408051918252519081900360200190f35b34156101f757fe5b6101cb600160a060020a036004358116906024351660443561056a565b005b341561021e57fe5b6101cb600160a060020a0360043516610664565b005b341561023c57fe5b6101dd6106ad565b60408051918252519081900360200190f35b341561025e57fe5b6101cb6106b3565b005b341561027057fe5b6101cb600435610705565b005b341561028557fe5b6101dd600160a060020a0360043516610813565b60408051918252519081900360200190f35b34156102b357fe5b610190610832565b60408051600160a060020a039092168252519081900360200190f35b34156102df57fe5b610100610841565b604080516020808252835181830152835191928392908301918501908083838215610146575b80518252602083111561014657601f199092019160209182019101610126565b505050905090810190601f1680156101725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561036f57fe5b6101cb600160a060020a03600435166024356108cf565b005b341561039057fe5b6101dd600160a060020a0360043581169060243516610978565b60408051918252519081900360200190f35b34156103c457fe5b6101906109a5565b60408051600160a060020a039092168252519081900360200190f35b34156103f057fe5b6101cb600160a060020a03600435166024356109b4565b005b341561041157fe5b6101cb600160a060020a0360043516610a9a565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b505050505081565b600554600160a060020a031681565b80158015906104f75750600160a060020a0333811660009081526004602090815260408083209386168352929052205415155b156105025760006000fd5b600160a060020a03338116600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5050565b60025481565b600160a060020a0380841660009081526004602090815260408083203385168452825280832054938616835260039091529020546105ae908363ffffffff610ae316565b600160a060020a0380851660009081526003602052604080822093909355908616815220546105e3908363ffffffff610afd16565b600160a060020a03851660009081526003602052604090205561060c818363ffffffff610afd16565b600160a060020a03808616600081815260046020908152604080832033861684528252918290209490945580518681529051928716939192600080516020610b15833981519152929181900390910190a35b50505050565b60005433600160a060020a039081169116146106805760006000fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60085481565b60015433600160a060020a039081169116146106cf5760006000fd5b600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b5b565b60055433600160a060020a039081169116146107215760006000fd5b600160a060020a0333166000908152600360205260409020548111156107475760006000fd5b8015156107545760006000fd5b600160a060020a03331660009081526003602052604090205461077d908263ffffffff610afd16565b600160a060020a0333166000908152600360205260409020556002546107a9908263ffffffff610afd16565b600255604080518281529051600091600160a060020a03331691600080516020610b158339815191529181900360200190a36040805182815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a15b5b50565b600160a060020a0381166000908152600360205260409020545b919050565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b505050505081565b600160a060020a0333166000908152600360205260409020546108f8908263ffffffff610afd16565b600160a060020a03338116600090815260036020526040808220939093559084168152205461092d908263ffffffff610ae316565b600160a060020a03808416600081815260036020908152604091829020949094558051858152905191933390931692600080516020610b1583398151915292918290030190a35b5050565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b92915050565b600154600160a060020a031681565b60055433600160a060020a039081169116146109d05760006000fd5b600081111561056057600160a060020a038216600090815260036020526040902054610a02908263ffffffff610ae316565b600160a060020a038316600090815260036020526040902055600254610a2e908263ffffffff610ae316565b6002556040805182815290517f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846659181900360200190a1604080518281529051600160a060020a03841691600091600080516020610b158339815191529181900360200190a35b5b5b5050565b60005433600160a060020a03908116911614610ab65760006000fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082820183811015610af257fe5b8091505b5092915050565b600082821115610b0957fe5b508082035b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058205e2c2f6b9b17a6cfecb1753ca812aa8e7b28131a59e662c195dd8bf7b17b166f002900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000084e6f6b752045555200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044555524e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f05780630754617214610180578063095ea7b3146101ac57806318160ddd146101cd57806323b872dd146101ef5780632c4d4d1814610216578063313ce567146102345780634e71e0c8146102565780636d1b229d1461026857806370a082311461027d5780638da5cb5b146102ab57806395d89b41146102d7578063a9059cbb14610367578063dd62ed3e14610388578063e30c3978146103bc578063f0dda65c146103e8578063f2fde38b14610409575bfe5b34156100f857fe5b610100610427565b604080516020808252835181830152835191928392908301918501908083838215610146575b80518252602083111561014657601f199092019160209182019101610126565b505050905090810190601f1680156101725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018857fe5b6101906104b5565b60408051600160a060020a039092168252519081900360200190f35b34156101b457fe5b6101cb600160a060020a03600435166024356104c4565b005b34156101d557fe5b6101dd610564565b60408051918252519081900360200190f35b34156101f757fe5b6101cb600160a060020a036004358116906024351660443561056a565b005b341561021e57fe5b6101cb600160a060020a0360043516610664565b005b341561023c57fe5b6101dd6106ad565b60408051918252519081900360200190f35b341561025e57fe5b6101cb6106b3565b005b341561027057fe5b6101cb600435610705565b005b341561028557fe5b6101dd600160a060020a0360043516610813565b60408051918252519081900360200190f35b34156102b357fe5b610190610832565b60408051600160a060020a039092168252519081900360200190f35b34156102df57fe5b610100610841565b604080516020808252835181830152835191928392908301918501908083838215610146575b80518252602083111561014657601f199092019160209182019101610126565b505050905090810190601f1680156101725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561036f57fe5b6101cb600160a060020a03600435166024356108cf565b005b341561039057fe5b6101dd600160a060020a0360043581169060243516610978565b60408051918252519081900360200190f35b34156103c457fe5b6101906109a5565b60408051600160a060020a039092168252519081900360200190f35b34156103f057fe5b6101cb600160a060020a03600435166024356109b4565b005b341561041157fe5b6101cb600160a060020a0360043516610a9a565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b505050505081565b600554600160a060020a031681565b80158015906104f75750600160a060020a0333811660009081526004602090815260408083209386168352929052205415155b156105025760006000fd5b600160a060020a03338116600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5050565b60025481565b600160a060020a0380841660009081526004602090815260408083203385168452825280832054938616835260039091529020546105ae908363ffffffff610ae316565b600160a060020a0380851660009081526003602052604080822093909355908616815220546105e3908363ffffffff610afd16565b600160a060020a03851660009081526003602052604090205561060c818363ffffffff610afd16565b600160a060020a03808616600081815260046020908152604080832033861684528252918290209490945580518681529051928716939192600080516020610b15833981519152929181900390910190a35b50505050565b60005433600160a060020a039081169116146106805760006000fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60085481565b60015433600160a060020a039081169116146106cf5760006000fd5b600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b5b565b60055433600160a060020a039081169116146107215760006000fd5b600160a060020a0333166000908152600360205260409020548111156107475760006000fd5b8015156107545760006000fd5b600160a060020a03331660009081526003602052604090205461077d908263ffffffff610afd16565b600160a060020a0333166000908152600360205260409020556002546107a9908263ffffffff610afd16565b600255604080518281529051600091600160a060020a03331691600080516020610b158339815191529181900360200190a36040805182815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a15b5b50565b600160a060020a0381166000908152600360205260409020545b919050565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b505050505081565b600160a060020a0333166000908152600360205260409020546108f8908263ffffffff610afd16565b600160a060020a03338116600090815260036020526040808220939093559084168152205461092d908263ffffffff610ae316565b600160a060020a03808416600081815260036020908152604091829020949094558051858152905191933390931692600080516020610b1583398151915292918290030190a35b5050565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b92915050565b600154600160a060020a031681565b60055433600160a060020a039081169116146109d05760006000fd5b600081111561056057600160a060020a038216600090815260036020526040902054610a02908263ffffffff610ae316565b600160a060020a038316600090815260036020526040902055600254610a2e908263ffffffff610ae316565b6002556040805182815290517f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846659181900360200190a1604080518281529051600160a060020a03841691600091600080516020610b158339815191529181900360200190a35b5b5b5050565b60005433600160a060020a03908116911614610ab65760006000fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082820183811015610af257fe5b8091505b5092915050565b600082821115610b0957fe5b508082035b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058205e2c2f6b9b17a6cfecb1753ca812aa8e7b28131a59e662c195dd8bf7b17b166f0029

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

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000084e6f6b752045555200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044555524e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 0
Arg [1] : _tokenName (string): Noku EUR
Arg [2] : _decimalUnits (uint8): 18
Arg [3] : _tokenSymbol (string): EURN

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4e6f6b7520455552000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4555524e00000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://5e2c2f6b9b17a6cfecb1753ca812aa8e7b28131a59e662c195dd8bf7b17b166f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.