ETH Price: $2,026.86 (+0.27%)

Contract

0x53de43e44b7ea3cBF6cD375407d8A63301Fd8A0d
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer79768792019-06-17 16:00:402459 days ago1560787240IN
0x53de43e4...301Fd8A0d
0 ETH0.00004151.971875
Transfer74808942019-04-01 6:06:192536 days ago1554098779IN
0x53de43e4...301Fd8A0d
0 ETH0.000156273
Transfer71638032019-02-02 13:51:562594 days ago1549115516IN
0x53de43e4...301Fd8A0d
0 ETH0.000072931.4
Transfer69825972018-12-30 23:40:152628 days ago1546213215IN
0x53de43e4...301Fd8A0d
0 ETH0.00006691.8
Transfer69812782018-12-30 18:18:492628 days ago1546193929IN
0x53de43e4...301Fd8A0d
0 ETH0.000083141.6
Transfer69810852018-12-30 17:29:082628 days ago1546190948IN
0x53de43e4...301Fd8A0d
0 ETH0.000066761.8
Transfer69810772018-12-30 17:26:422628 days ago1546190802IN
0x53de43e4...301Fd8A0d
0 ETH0.000088551.7
Transfer60736882018-08-02 7:24:162778 days ago1533194656IN
0x53de43e4...301Fd8A0d
0 ETH0.0004156519.75
Transfer60021852018-07-21 5:32:262790 days ago1532151146IN
0x53de43e4...301Fd8A0d
0 ETH0.000231511

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xccaAD3f2...D59ECFEa1
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Token

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-01-09
*/

pragma solidity ^0.4.21;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure 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 a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract ERC20Token {
  using SafeMath for uint256;

  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);

  mapping(address => uint256) internal balances_;
  mapping (address => mapping (address => uint256)) internal allowed_;

  uint256 internal totalSupply_;
  string public name;
  string public symbol;
  uint8 public decimals;

  function ERC20Token(
    string tokenName,
    string tokenSymbol,
    uint8 tokenDecimals,
    uint256 tokenSupply,
    address initAddress,
    uint256 initBalance
  ) public {
    name = tokenName;
    symbol = tokenSymbol;
    decimals = tokenDecimals;
    totalSupply_ = tokenSupply * 10 ** uint256(decimals);
    if (initBalance > 0) {
        uint256 ib = initBalance * 10 ** uint256(decimals);
        require(ib <= totalSupply_);
        balances_[initAddress] = ib;
        if (ib < totalSupply_) {
            balances_[msg.sender] = totalSupply_.sub(ib);
        }
    } else {
        balances_[msg.sender] = totalSupply_;
    }
  }

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances_[_owner];
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed_ to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed_[_owner][_spender];
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances_[msg.sender]);

    balances_[msg.sender] = balances_[msg.sender].sub(_value);
    balances_[_to] = balances_[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances_[_from]);
    require(_value <= allowed_[_from][msg.sender]);

    balances_[_from] = balances_[_from].sub(_value);
    balances_[_to] = balances_[_to].add(_value);
    allowed_[_from][msg.sender] = allowed_[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed_[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenDecimals","type":"uint8"},{"name":"tokenSupply","type":"uint256"},{"name":"initAddress","type":"address"},{"name":"initBalance","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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"}]

0x6060604052341561000f57600080fd5b6040516108fe3803806108fe833981016040528080518201919060200180518201919060200180519190602001805191906020018051919060200180519150600090506003878051610065929160200190610158565b506004868051610079929160200190610158565b506005805460ff191660ff878116919091179182905516600a0a8402600255600082111561011d575060055460025460ff909116600a0a8202908111156100bf57600080fd5b600160a060020a0383166000908152602081905260409020819055600254811015610118576002546100fe90826401000000006106a861014682021704565b600160a060020a0333166000908152602081905260409020555b61013a565b600254600160a060020a0333166000908152602081905260409020555b505050505050506101f3565b60008282111561015257fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019957805160ff19168380011785556101c6565b828001600101855582156101c6579182015b828111156101c65782518255916020019190600101906101ab565b506101d29291506101d6565b5090565b6101f091905b808211156101d257600081556001016101dc565b90565b6106fc806102026000396000f3006060604052600436106100985763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461009d578063095ea7b31461012757806318160ddd1461015d57806323b872dd14610182578063313ce567146101aa57806370a08231146101d357806395d89b41146101f2578063a9059cbb14610205578063dd62ed3e14610227575b600080fd5b34156100a857600080fd5b6100b061024c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100ec5780820151838201526020016100d4565b50505050905090810190601f1680156101195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013257600080fd5b610149600160a060020a03600435166024356102ea565b604051901515815260200160405180910390f35b341561016857600080fd5b610170610356565b60405190815260200160405180910390f35b341561018d57600080fd5b610149600160a060020a036004358116906024351660443561035c565b34156101b557600080fd5b6101bd6104dc565b60405160ff909116815260200160405180910390f35b34156101de57600080fd5b610170600160a060020a03600435166104e5565b34156101fd57600080fd5b6100b0610500565b341561021057600080fd5b610149600160a060020a036004351660243561056b565b341561023257600080fd5b610170600160a060020a036004358116906024351661067d565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b600160a060020a03338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60025490565b6000600160a060020a038316151561037357600080fd5b600160a060020a03841660009081526020819052604090205482111561039857600080fd5b600160a060020a03808516600090815260016020908152604080832033909416835292905220548211156103cb57600080fd5b600160a060020a0384166000908152602081905260409020546103f4908363ffffffff6106a816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610429908363ffffffff6106ba16565b600160a060020a038085166000908152602081815260408083209490945587831682526001815283822033909316825291909152205461046f908363ffffffff6106a816565b600160a060020a03808616600081815260016020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60055460ff1681565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b6000600160a060020a038316151561058257600080fd5b600160a060020a0333166000908152602081905260409020548211156105a757600080fd5b600160a060020a0333166000908152602081905260409020546105d0908363ffffffff6106a816565b600160a060020a033381166000908152602081905260408082209390935590851681522054610605908363ffffffff6106ba16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000828211156106b457fe5b50900390565b6000828201838110156106c957fe5b93925050505600a165627a7a7230582049b1b5dbc48994b63295053e98602aed3f2f81d05a817709574c70243df33739002900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000004c810b23f5a17de0cc927dae37b8ef66a5f12eb80000000000000000000000000000000000000000000000000000000005f45a60000000000000000000000000000000000000000000000000000000000000000a47656d426974436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034742430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106100985763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461009d578063095ea7b31461012757806318160ddd1461015d57806323b872dd14610182578063313ce567146101aa57806370a08231146101d357806395d89b41146101f2578063a9059cbb14610205578063dd62ed3e14610227575b600080fd5b34156100a857600080fd5b6100b061024c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100ec5780820151838201526020016100d4565b50505050905090810190601f1680156101195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013257600080fd5b610149600160a060020a03600435166024356102ea565b604051901515815260200160405180910390f35b341561016857600080fd5b610170610356565b60405190815260200160405180910390f35b341561018d57600080fd5b610149600160a060020a036004358116906024351660443561035c565b34156101b557600080fd5b6101bd6104dc565b60405160ff909116815260200160405180910390f35b34156101de57600080fd5b610170600160a060020a03600435166104e5565b34156101fd57600080fd5b6100b0610500565b341561021057600080fd5b610149600160a060020a036004351660243561056b565b341561023257600080fd5b610170600160a060020a036004358116906024351661067d565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b600160a060020a03338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60025490565b6000600160a060020a038316151561037357600080fd5b600160a060020a03841660009081526020819052604090205482111561039857600080fd5b600160a060020a03808516600090815260016020908152604080832033909416835292905220548211156103cb57600080fd5b600160a060020a0384166000908152602081905260409020546103f4908363ffffffff6106a816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610429908363ffffffff6106ba16565b600160a060020a038085166000908152602081815260408083209490945587831682526001815283822033909316825291909152205461046f908363ffffffff6106a816565b600160a060020a03808616600081815260016020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60055460ff1681565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b6000600160a060020a038316151561058257600080fd5b600160a060020a0333166000908152602081905260409020548211156105a757600080fd5b600160a060020a0333166000908152602081905260409020546105d0908363ffffffff6106a816565b600160a060020a033381166000908152602081905260408082209390935590851681522054610605908363ffffffff6106ba16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000828211156106b457fe5b50900390565b6000828201838110156106c957fe5b93925050505600a165627a7a7230582049b1b5dbc48994b63295053e98602aed3f2f81d05a817709574c70243df337390029

Swarm Source

bzzr://49b1b5dbc48994b63295053e98602aed3f2f81d05a817709574c70243df33739

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.