ETH Price: $3,554.10 (-1.49%)
Gas: 29 Gwei

Contract

0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer76293022019-04-24 9:18:251801 days ago1556097505IN
0x9F6b043a...91A68998D
0 ETH0.0005222810
Transfer42161882017-08-29 11:29:052404 days ago1504006145IN
0x9F6b043a...91A68998D
0 ETH0.000052221
Transfer42150512017-08-29 3:48:002404 days ago1503978480IN
0x9F6b043a...91A68998D
0 ETH0.000052161
Transfer42132872017-08-28 15:52:532404 days ago1503935573IN
0x9F6b043a...91A68998D
0 ETH0.000052221
Transfer42058362017-08-26 12:11:232407 days ago1503749483IN
0x9F6b043a...91A68998D
0 ETH0.0010954421
Transfer41940322017-08-23 11:07:162410 days ago1503486436IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41940292017-08-23 11:06:182410 days ago1503486378IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41940272017-08-23 11:05:372410 days ago1503486337IN
0x9F6b043a...91A68998D
0 ETH0.0010445620
Transfer41939332017-08-23 10:28:272410 days ago1503484107IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41939302017-08-23 10:28:112410 days ago1503484091IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41939272017-08-23 10:27:102410 days ago1503484030IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41939242017-08-23 10:26:172410 days ago1503483977IN
0x9F6b043a...91A68998D
0 ETH0.0010445620
Transfer41939172017-08-23 10:24:352410 days ago1503483875IN
0x9F6b043a...91A68998D
0 ETH0.0010458420
Transfer41939102017-08-23 10:21:402410 days ago1503483700IN
0x9F6b043a...91A68998D
0 ETH0.0007471220
Transfer41939012017-08-23 10:18:512410 days ago1503483531IN
0x9F6b043a...91A68998D
0 ETH0.0010432820
0x60a0604041930272017-08-23 5:21:522410 days ago1503465712IN
 Create: CoinToken
0 ETH0.0253898820

Advanced mode:
Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CoinToken

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-08-23
*/

pragma solidity ^0.4.2;
contract owned {
  address public owner;

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

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

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

contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract token {
  /* Public variables of the token */
  string public standard = 'Token 0.1';
  string public name;
  string public symbol;
  uint8 public decimals;
  uint256 public totalSupply;

  /* This creates an array with all balances */
  mapping (address => uint256) public balanceOf;
  mapping (address => mapping (address => uint256)) public allowance;

  /* This generates a public event on the blockchain that will notify clients */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /* Initializes contract with initial supply tokens to the creator of the contract */
  function token(
  uint256 initialSupply,
  string tokenName,
  uint8 decimalUnits,
  string tokenSymbol
  ) {
    balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
    totalSupply = initialSupply;                        // Update total supply
    name = tokenName;                                   // Set the name for display purposes
    symbol = tokenSymbol;                               // Set the symbol for display purposes
    decimals = decimalUnits;                            // Amount of decimals for display purposes
  }

  /* Send coins */
  function transfer(address _to, uint256 _value) {
    if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
    if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
    balanceOf[msg.sender] -= _value;                     // Subtract from the sender
    balanceOf[_to] += _value;                            // Add the same to the recipient
    Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
  }

  /* Allow another contract to spend some tokens in your behalf */
  function approve(address _spender, uint256 _value)
  returns (bool success) {
    allowance[msg.sender][_spender] = _value;
    return true;
  }

  /* Approve and then communicate the approved contract in a single tx */
  function approveAndCall(address _spender, uint256 _value, bytes _extraData)
  returns (bool success) {
    tokenRecipient spender = tokenRecipient(_spender);
    if (approve(_spender, _value)) {
      spender.receiveApproval(msg.sender, _value, this, _extraData);
      return true;
    }
  }

  /* A contract attempts to get the coins */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
    if (balanceOf[_from] < _value) throw;                 // Check if the sender has enough
    if (balanceOf[_to] + _value < balanceOf[_to]) throw;  // Check for overflows
    if (_value > allowance[_from][msg.sender]) throw;   // Check allowance
    balanceOf[_from] -= _value;                          // Subtract from the sender
    balanceOf[_to] += _value;                            // Add the same to the recipient
    allowance[_from][msg.sender] -= _value;
    Transfer(_from, _to, _value);
    return true;
  }

  /* This unnamed function is called whenever someone tries to send ether to it */
  function () {
    throw;     // Prevents accidental sending of ether
  }
}

contract CoinToken is owned, token {

  uint256 public sellPrice;
  uint256 public buyPrice;

  mapping (address => bool) public frozenAccount;

  /* This generates a public event on the blockchain that will notify clients */
  event FrozenFunds(address target, bool frozen);

  /* This notifies clients about the amount burnt */
  event Burn(address indexed from, uint256 value);

  /* Initializes contract with initial supply tokens to the creator of the contract */
  function CoinToken (
  uint256 initialSupply,
  string tokenName,
  uint8 decimalUnits,
  string tokenSymbol
  ) token (initialSupply, tokenName, decimalUnits, tokenSymbol) {}

  /* Send coins */
  function transfer(address _to, uint256 _value) {
    if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
    if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
    if (frozenAccount[msg.sender]) throw;                // Check if frozen
    balanceOf[msg.sender] -= _value;                     // Subtract from the sender
    balanceOf[_to] += _value;                            // Add the same to the recipient
    Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
  }


  /* A contract attempts to get the coins */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
    if (frozenAccount[_from]) throw;                        // Check if frozen
    if (balanceOf[_from] < _value) throw;                 // Check if the sender has enough
    if (balanceOf[_to] + _value < balanceOf[_to]) throw;  // Check for overflows
    if (_value > allowance[_from][msg.sender]) throw;   // Check allowance
    balanceOf[_from] -= _value;                          // Subtract from the sender
    balanceOf[_to] += _value;                            // Add the same to the recipient
    allowance[_from][msg.sender] -= _value;
    Transfer(_from, _to, _value);
    return true;
  }

  function mintToken(address target, uint256 mintedAmount) onlyOwner {
    balanceOf[target] += mintedAmount;
    totalSupply += mintedAmount;
    Transfer(0, this, mintedAmount);
    Transfer(this, target, mintedAmount);
  }

  function freezeAccount(address target, bool freeze) onlyOwner {
    frozenAccount[target] = freeze;
    FrozenFunds(target, freeze);
  }

  function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner {
    sellPrice = newSellPrice;
    buyPrice = newBuyPrice;
  }

  function buy() payable {
    uint amount = msg.value / buyPrice;                // calculates the amount
    if (balanceOf[this] < amount) throw;               // checks if it has enough to sell
    balanceOf[msg.sender] += amount;                   // adds the amount to buyer's balance
    balanceOf[this] -= amount;                         // subtracts amount from seller's balance
    Transfer(this, msg.sender, amount);                // execute an event reflecting the change
  }

  function sell(uint256 amount) {
    if (balanceOf[msg.sender] < amount ) throw;        // checks if the sender has enough to sell
    balanceOf[this] += amount;                         // adds the amount to owner's balance
    balanceOf[msg.sender] -= amount;                   // subtracts the amount from seller's balance
    if (!msg.sender.send(amount * sellPrice)) {        // sends ether to the seller. It's important
      throw;                                         // to do this last to avoid recursion attacks
    } else {
      Transfer(msg.sender, this, amount);            // executes an event reflecting on the change
    }
  }

  function burn(uint256 amount) onlyOwner returns (bool success) {
    if (balanceOf[msg.sender] < amount) throw;            // Check if the sender has enough
    balanceOf[msg.sender] -= amount;                      // Subtract from the sender
    totalSupply -= amount;                                // Updates totalSupply
    Burn(msg.sender, amount);
    return true;
  }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"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":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","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":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","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"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

60a0604052600960608190527f546f6b656e20302e31000000000000000000000000000000000000000000000060809081526200004091600191906200010a565b5034156200004a57fe5b6040516200111f3803806200111f833981016040908152815160208301519183015160608401519193928301929091015b838383835b5b60008054600160a060020a03191633600160a060020a03161790555b600160a060020a033316600090815260066020908152604090912085905560058590558351620000d491600291908601906200010a565b508051620000ea9060039060208401906200010a565b506004805460ff191660ff84161790555b505050505b50505050620001b4565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014d57805160ff19168380011785556200017d565b828001600101855582156200017d579182015b828111156200017d57825182559160200191906001019062000160565b5b506200018c92915062000190565b5090565b620001b191905b808211156200018c576000815560010162000197565b5090565b90565b610f5b80620001c46000396000f300606060405236156101255763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013b57806306fdde0314610153578063095ea7b3146101e357806318160ddd1461021657806323b872dd14610238578063313ce5671461027157806342966c68146102975780634b750334146102be5780635a3b7e42146102e057806370a082311461037057806379c650681461039e5780638620410b146103bf5780638da5cb5b146103e157806395d89b411461040d578063a6f2ae3a1461049d578063a9059cbb146104a7578063b414d4b6146104c8578063cae9ca51146104f8578063dd62ed3e1461056f578063e4849b32146105a3578063e724529c146105b8578063f2fde38b146105db575b341561012d57fe5b6101395b60006000fd5b565b005b341561014357fe5b6101396004356024356105f9565b005b341561015b57fe5b610163610625565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101eb57fe5b610202600160a060020a03600435166024356106b0565b604080519115158252519081900360200190f35b341561021e57fe5b6102266106e1565b60408051918252519081900360200190f35b341561024057fe5b610202600160a060020a03600435811690602435166044356106e7565b604080519115158252519081900360200190f35b341561027957fe5b61028161080b565b6040805160ff9092168252519081900360200190f35b341561029f57fe5b610202600435610814565b604080519115158252519081900360200190f35b34156102c657fe5b6102266108bf565b60408051918252519081900360200190f35b34156102e857fe5b6101636108c5565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037857fe5b610226600160a060020a0360043516610952565b60408051918252519081900360200190f35b34156103a657fe5b610139600160a060020a0360043516602435610964565b005b34156103c757fe5b610226610a0e565b60408051918252519081900360200190f35b34156103e957fe5b6103f1610a14565b60408051600160a060020a039092168252519081900360200190f35b341561041557fe5b610163610a23565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610139610ab1565b005b34156104af57fe5b610139600160a060020a0360043516602435610b47565b005b34156104d057fe5b610202600160a060020a0360043516610c17565b604080519115158252519081900360200190f35b341561050057fe5b604080516020600460443581810135601f8101849004840285018401909552848452610202948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610c2c95505050505050565b604080519115158252519081900360200190f35b341561057757fe5b610226600160a060020a0360043581169060243516610d66565b60408051918252519081900360200190f35b34156105ab57fe5b610139600435610d83565b005b34156105c057fe5b610139600160a060020a03600435166024351515610e44565b005b34156105e357fe5b610139600160a060020a0360043516610ec6565b005b60005433600160a060020a039081169116146106155760006000fd5b600882905560098190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561070e5760006000fd5b600160a060020a038416600090815260066020526040902054829010156107355760006000fd5b600160a060020a038316600090815260066020526040902054828101101561075d5760006000fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156107915760006000fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452948252918290208054879003905581518681529151600080516020610f108339815191529281900390910190a35060015b9392505050565b60045460ff1681565b6000805433600160a060020a039081169116146108315760006000fd5b600160a060020a033316600090815260066020526040902054829010156108585760006000fd5b600160a060020a03331660008181526006602090815260409182902080548690039055600580548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b5b919050565b60085481565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146109805760006000fd5b600160a060020a0380831660009081526006602090815260408083208054860190556005805486019055805185815290513090941693600080516020610f10833981519152929181900390910190a381600160a060020a031630600160a060020a0316600080516020610f10833981519152836040518082815260200191505060405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b600060095434811515610ac057fe5b600160a060020a033016600090815260066020526040902054919004915081901015610aec5760006000fd5b600160a060020a0333811660008181526006602090815260408083208054870190553090941680835291849020805486900390558351858152935192939192600080516020610f108339815191529281900390910190a35b50565b600160a060020a03331660009081526006602052604090205481901015610b6e5760006000fd5b600160a060020a0382166000908152600660205260409020548181011015610b965760006000fd5b600160a060020a0333166000908152600a602052604090205460ff1615610bbd5760006000fd5b600160a060020a0333811660008181526006602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610f10833981519152929081900390910190a35b5050565b600a6020526000908152604090205460ff1681565b600083610c3981856106b0565b15610d5d5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360008314610cfd575b805182526020831115610cfd57601f199092019160209182019101610cdd565b505050905090810190601f168015610d295780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610d4757fe5b6102c65a03f11515610d5557fe5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610daa5760006000fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082528282208054859003905560085492519092840280156108fc0292909190818181858888f193505050501515610e065760006000fd5b30600160a060020a031633600160a060020a0316600080516020610f10833981519152836040518082815260200191505060405180910390a35b5b50565b60005433600160a060020a03908116911614610e605760006000fd5b600160a060020a0382166000818152600a6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610ee25760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582024c8213e6a3c242c4342b8c729c953f7535335104076be4b6760135bad6574020029000000000000000000000000000000000000000000000000000775f05a0740000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e4254434320506f6f6c20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034250430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156101255763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013b57806306fdde0314610153578063095ea7b3146101e357806318160ddd1461021657806323b872dd14610238578063313ce5671461027157806342966c68146102975780634b750334146102be5780635a3b7e42146102e057806370a082311461037057806379c650681461039e5780638620410b146103bf5780638da5cb5b146103e157806395d89b411461040d578063a6f2ae3a1461049d578063a9059cbb146104a7578063b414d4b6146104c8578063cae9ca51146104f8578063dd62ed3e1461056f578063e4849b32146105a3578063e724529c146105b8578063f2fde38b146105db575b341561012d57fe5b6101395b60006000fd5b565b005b341561014357fe5b6101396004356024356105f9565b005b341561015b57fe5b610163610625565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101eb57fe5b610202600160a060020a03600435166024356106b0565b604080519115158252519081900360200190f35b341561021e57fe5b6102266106e1565b60408051918252519081900360200190f35b341561024057fe5b610202600160a060020a03600435811690602435166044356106e7565b604080519115158252519081900360200190f35b341561027957fe5b61028161080b565b6040805160ff9092168252519081900360200190f35b341561029f57fe5b610202600435610814565b604080519115158252519081900360200190f35b34156102c657fe5b6102266108bf565b60408051918252519081900360200190f35b34156102e857fe5b6101636108c5565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037857fe5b610226600160a060020a0360043516610952565b60408051918252519081900360200190f35b34156103a657fe5b610139600160a060020a0360043516602435610964565b005b34156103c757fe5b610226610a0e565b60408051918252519081900360200190f35b34156103e957fe5b6103f1610a14565b60408051600160a060020a039092168252519081900360200190f35b341561041557fe5b610163610a23565b6040805160208082528351818301528351919283929083019185019080838382156101a9575b8051825260208311156101a957601f199092019160209182019101610189565b505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610139610ab1565b005b34156104af57fe5b610139600160a060020a0360043516602435610b47565b005b34156104d057fe5b610202600160a060020a0360043516610c17565b604080519115158252519081900360200190f35b341561050057fe5b604080516020600460443581810135601f8101849004840285018401909552848452610202948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610c2c95505050505050565b604080519115158252519081900360200190f35b341561057757fe5b610226600160a060020a0360043581169060243516610d66565b60408051918252519081900360200190f35b34156105ab57fe5b610139600435610d83565b005b34156105c057fe5b610139600160a060020a03600435166024351515610e44565b005b34156105e357fe5b610139600160a060020a0360043516610ec6565b005b60005433600160a060020a039081169116146106155760006000fd5b600882905560098190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561070e5760006000fd5b600160a060020a038416600090815260066020526040902054829010156107355760006000fd5b600160a060020a038316600090815260066020526040902054828101101561075d5760006000fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156107915760006000fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452948252918290208054879003905581518681529151600080516020610f108339815191529281900390910190a35060015b9392505050565b60045460ff1681565b6000805433600160a060020a039081169116146108315760006000fd5b600160a060020a033316600090815260066020526040902054829010156108585760006000fd5b600160a060020a03331660008181526006602090815260409182902080548690039055600580548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b5b919050565b60085481565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146109805760006000fd5b600160a060020a0380831660009081526006602090815260408083208054860190556005805486019055805185815290513090941693600080516020610f10833981519152929181900390910190a381600160a060020a031630600160a060020a0316600080516020610f10833981519152836040518082815260200191505060405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b600060095434811515610ac057fe5b600160a060020a033016600090815260066020526040902054919004915081901015610aec5760006000fd5b600160a060020a0333811660008181526006602090815260408083208054870190553090941680835291849020805486900390558351858152935192939192600080516020610f108339815191529281900390910190a35b50565b600160a060020a03331660009081526006602052604090205481901015610b6e5760006000fd5b600160a060020a0382166000908152600660205260409020548181011015610b965760006000fd5b600160a060020a0333166000908152600a602052604090205460ff1615610bbd5760006000fd5b600160a060020a0333811660008181526006602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610f10833981519152929081900390910190a35b5050565b600a6020526000908152604090205460ff1681565b600083610c3981856106b0565b15610d5d5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360008314610cfd575b805182526020831115610cfd57601f199092019160209182019101610cdd565b505050905090810190601f168015610d295780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610d4757fe5b6102c65a03f11515610d5557fe5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610daa5760006000fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082528282208054859003905560085492519092840280156108fc0292909190818181858888f193505050501515610e065760006000fd5b30600160a060020a031633600160a060020a0316600080516020610f10833981519152836040518082815260200191505060405180910390a35b5b50565b60005433600160a060020a03908116911614610e605760006000fd5b600160a060020a0382166000818152600a6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610ee25760006000fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582024c8213e6a3c242c4342b8c729c953f7535335104076be4b6760135bad6574020029

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

000000000000000000000000000000000000000000000000000775f05a0740000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e4254434320506f6f6c20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034250430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 2100000000000000
Arg [1] : tokenName (string): BTCC Pool Coin
Arg [2] : decimalUnits (uint8): 8
Arg [3] : tokenSymbol (string): BPC

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000775f05a074000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 4254434320506f6f6c20436f696e000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4250430000000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://24c8213e6a3c242c4342b8c729c953f7535335104076be4b6760135bad657402

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

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