ETH Price: $3,247.12 (-0.09%)

Token

ELTCoin (ELTCoin)
 

Overview

Max Total Supply

84,000,000 ELTCoin

Holders

1,463

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
bscpleb.eth
Balance
7,000 ELTCoin

Value
$0.00
0xf1f12A06Ca57BFb6f8d2b075577a6d138f1d70e8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ELTCoin

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.13;

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

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

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

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

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) public returns (bool) {
    require(_to != address(0));

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

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

}

contract ELTCoin is BasicToken {

  string public constant name = "ELTCoin";
  string public constant symbol = "ELTCoin";
  uint8 public constant decimals = 8;

  uint256 public constant INITIAL_SUPPLY = 84000000 * (10 ** uint256(decimals));

  /**
   * @dev Constructor that gives msg.sender all of existing tokens.
   */
  function ELTCoin() {
    totalSupply = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"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"}]

6060604052341561000f57600080fd5b5b661dd7c1681d00006000818155600160a060020a0333168152600160205260409020555b5b61044c806100446000396000f300606060405236156100805763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461008557806318160ddd146101105780632ff2e9dc14610135578063313ce5671461015a57806370a082311461018357806395d89b4114610085578063a9059cbb1461023f575b600080fd5b341561009057600080fd5b610098610275565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100d55780820151818401525b6020016100bc565b50505050905090810190601f1680156101025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561011b57600080fd5b6101236102ac565b60405190815260200160405180910390f35b341561014057600080fd5b6101236102b2565b60405190815260200160405180910390f35b341561016557600080fd5b61016d6102bd565b60405160ff909116815260200160405180910390f35b341561018e57600080fd5b610123600160a060020a03600435166102c2565b60405190815260200160405180910390f35b341561009057600080fd5b610098610275565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100d55780820151818401525b6020016100bc565b50505050905090810190601f1680156101025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024a57600080fd5b610261600160a060020a0360043516602435610318565b604051901515815260200160405180910390f35b60408051908101604052600781527f454c54436f696e00000000000000000000000000000000000000000000000000602082015281565b60005481565b661dd7c1681d000081565b600881565b600160a060020a0381166000908152600160205260409020545b919050565b60408051908101604052600781527f454c54436f696e00000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561032f57600080fd5b600160a060020a033316600090815260016020526040902054610358908363ffffffff6103ef16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461038d908363ffffffff61040616565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b6000828211156103fb57fe5b508082035b92915050565b60008282018381101561041557fe5b8091505b50929150505600a165627a7a723058201f9b655da989c37fb0950f80bb7bf09b2b9a5bd44f28270a5b758148c003ece80029

Deployed Bytecode

0x606060405236156100805763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461008557806318160ddd146101105780632ff2e9dc14610135578063313ce5671461015a57806370a082311461018357806395d89b4114610085578063a9059cbb1461023f575b600080fd5b341561009057600080fd5b610098610275565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100d55780820151818401525b6020016100bc565b50505050905090810190601f1680156101025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561011b57600080fd5b6101236102ac565b60405190815260200160405180910390f35b341561014057600080fd5b6101236102b2565b60405190815260200160405180910390f35b341561016557600080fd5b61016d6102bd565b60405160ff909116815260200160405180910390f35b341561018e57600080fd5b610123600160a060020a03600435166102c2565b60405190815260200160405180910390f35b341561009057600080fd5b610098610275565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100d55780820151818401525b6020016100bc565b50505050905090810190601f1680156101025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024a57600080fd5b610261600160a060020a0360043516602435610318565b604051901515815260200160405180910390f35b60408051908101604052600781527f454c54436f696e00000000000000000000000000000000000000000000000000602082015281565b60005481565b661dd7c1681d000081565b600881565b600160a060020a0381166000908152600160205260409020545b919050565b60408051908101604052600781527f454c54436f696e00000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561032f57600080fd5b600160a060020a033316600090815260016020526040902054610358908363ffffffff6103ef16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461038d908363ffffffff61040616565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b6000828211156103fb57fe5b508082035b92915050565b60008282018381101561041557fe5b8091505b50929150505600a165627a7a723058201f9b655da989c37fb0950f80bb7bf09b2b9a5bd44f28270a5b758148c003ece80029

Swarm Source

bzzr://1f9b655da989c37fb0950f80bb7bf09b2b9a5bd44f28270a5b758148c003ece8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.