ETH Price: $2,370.09 (+1.59%)

Contract

0x3CF090C5E5A30177E94156d0A7F026F47E253464
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer138281942021-12-18 8:57:38997 days ago1639817858IN
0x3CF090C5...47E253464
0 ETH0.0011216937.8567295
Transfer138281592021-12-18 8:49:00997 days ago1639817340IN
0x3CF090C5...47E253464
0 ETH0.0017449437.3409294
Approve74248072019-03-23 11:57:041998 days ago1553342224IN
0x3CF090C5...47E253464
0 ETH0.000116085
Transfer73849542019-03-17 6:44:232004 days ago1552805063IN
0x3CF090C5...47E253464
0 ETH0.0001464
Transfer69250602018-12-21 6:12:402090 days ago1545372760IN
0x3CF090C5...47E253464
0 ETH0.0001464
Approve68201802018-12-03 19:24:442107 days ago1543865084IN
0x3CF090C5...47E253464
0 ETH0.000116085
Transfer59859362018-07-18 10:46:502246 days ago1531910810IN
0x3CF090C5...47E253464
0 ETH0.0007313220
Transfer57206872018-06-02 17:23:592292 days ago1527960239IN
0x3CF090C5...47E253464
0 ETH0.0004387912
Transfer56917752018-05-28 14:20:142297 days ago1527517214IN
0x3CF090C5...47E253464
0 ETH0.0021115841
Transfer55890792018-05-10 11:40:462315 days ago1525952446IN
0x3CF090C5...47E253464
0 ETH0.000182835
Transfer55543452018-05-04 10:28:182321 days ago1525429698IN
0x3CF090C5...47E253464
0 ETH0.000360967
Transfer55542162018-05-04 9:54:272321 days ago1525427667IN
0x3CF090C5...47E253464
0 ETH0.000360067
Transfer55419292018-05-02 5:51:232323 days ago1525240283IN
0x3CF090C5...47E253464
0 ETH0.000086264
Transfer55416072018-05-02 4:32:012323 days ago1525235521IN
0x3CF090C5...47E253464
0 ETH0.000360067
Transfer55384722018-05-01 15:30:162324 days ago1525188616IN
0x3CF090C5...47E253464
0 ETH0.0002064
Transfer55271752018-04-29 15:54:122326 days ago1525017252IN
0x3CF090C5...47E253464
0 ETH0.0007665421
Transfer54699282018-04-19 18:56:432335 days ago1524164203IN
0x3CF090C5...47E253464
0 ETH0.0000732
Transfer54265202018-04-12 9:32:422343 days ago1523525562IN
0x3CF090C5...47E253464
0 ETH0.0021115841
Transfer53305902018-03-27 10:17:512359 days ago1522145871IN
0x3CF090C5...47E253464
0 ETH0.000235434.56568884
Transfer53199142018-03-25 15:42:262361 days ago1521992546IN
0x3CF090C5...47E253464
0 ETH0.0000732
Transfer52308802018-03-10 15:00:052376 days ago1520694005IN
0x3CF090C5...47E253464
0 ETH0.000182515
Transfer51035532018-02-17 0:24:322397 days ago1518827072IN
0x3CF090C5...47E253464
0 ETH0.0009281818
Transfer50874272018-02-14 6:59:502400 days ago1518591590IN
0x3CF090C5...47E253464
0 ETH0.0004387912
Approve49729392018-01-26 0:30:122419 days ago1516926612IN
0x3CF090C5...47E253464
0 ETH0.0013930260
Approve49729312018-01-26 0:28:212419 days ago1516926501IN
0x3CF090C5...47E253464
0 ETH0.0013930260
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:
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

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.