ETH Price: $2,729.03 (+0.84%)

Contract

0x6b4A19deaDFA03C42CE679f6949F3b24F8aA8362
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer123545332021-05-02 11:39:271377 days ago1619955567IN
0x6b4A19de...4F8aA8362
0 ETH0.000489525
Transfer122980272021-04-23 18:07:221385 days ago1619201242IN
0x6b4A19de...4F8aA8362
0 ETH0.0014088972.00000145
Transfer122070582021-04-09 17:41:381399 days ago1617990098IN
0x6b4A19de...4F8aA8362
0 ETH0.00790651152.4
Transfer118067662021-02-07 3:16:121461 days ago1612667772IN
0x6b4A19de...4F8aA8362
0 ETH0.00615896167.00000156
Transfer117771592021-02-02 13:44:481466 days ago1612273488IN
0x6b4A19de...4F8aA8362
0 ETH0.00689555186.912
Transfer116333372021-01-11 11:30:561488 days ago1610364656IN
0x6b4A19de...4F8aA8362
0 ETH0.00548595148.8
Transfer116243172021-01-10 2:18:311489 days ago1610245111IN
0x6b4A19de...4F8aA8362
0 ETH0.00414236112.32
Transfer116013222021-01-06 13:35:291493 days ago1609940129IN
0x6b4A19de...4F8aA8362
0 ETH0.00574255155.76
Transfer115949712021-01-05 14:03:211494 days ago1609855401IN
0x6b4A19de...4F8aA8362
0 ETH0.00455319123.5
Transfer115792892021-01-03 4:18:281496 days ago1609647508IN
0x6b4A19de...4F8aA8362
0 ETH0.0031163684.5
Transfer115786982021-01-03 2:05:431496 days ago1609639543IN
0x6b4A19de...4F8aA8362
0 ETH0.00427181115.83
Transfer115765112021-01-02 18:04:361496 days ago1609610676IN
0x6b4A19de...4F8aA8362
0 ETH0.00464536126
Transfer115726882021-01-02 4:00:371497 days ago1609560037IN
0x6b4A19de...4F8aA8362
0 ETH0.0022710661.6
Transfer115653642021-01-01 1:15:471498 days ago1609463747IN
0x6b4A19de...4F8aA8362
0 ETH0.0034999194.9
Transfer115558312020-12-30 14:12:331500 days ago1609337553IN
0x6b4A19de...4F8aA8362
0 ETH0.00561868152.4
Transfer115519212020-12-29 23:45:511500 days ago1609285551IN
0x6b4A19de...4F8aA8362
0 ETH0.0032601988.4
Transfer115498292020-12-29 15:46:361500 days ago1609256796IN
0x6b4A19de...4F8aA8362
0 ETH0.004045778
Transfer115490262020-12-29 12:49:561501 days ago1609246196IN
0x6b4A19de...4F8aA8362
0 ETH0.0047944130
Transfer115460872020-12-29 1:56:441501 days ago1609207004IN
0x6b4A19de...4F8aA8362
0 ETH0.0031224560.2
Transfer115455442020-12-28 23:56:071501 days ago1609199767IN
0x6b4A19de...4F8aA8362
0 ETH0.0021169157.4
Transfer115433822020-12-28 15:54:481501 days ago1609170888IN
0x6b4A19de...4F8aA8362
0 ETH0.00504518136.8
Transfer115432502020-12-28 15:25:461501 days ago1609169146IN
0x6b4A19de...4F8aA8362
0 ETH0.00784425151.2
Transfer115430642020-12-28 14:46:111502 days ago1609166771IN
0x6b4A19de...4F8aA8362
0 ETH0.00660798127.4
Transfer115427752020-12-28 13:40:521502 days ago1609162852IN
0x6b4A19de...4F8aA8362
0 ETH0.00889256241.2
Transfer115421972020-12-28 11:38:571502 days ago1609155537IN
0x6b4A19de...4F8aA8362
0 ETH0.00465056126.1
View all transactions

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

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

Contract Name:
SimpleToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.17;




/**
 * @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;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @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) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}


/**
 * @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 c;
  }

  /**
  * @dev Substracts 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;
  }
}

contract  Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant public returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value)  public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

interface Version {


    function blockVersion() constant  public returns (string version);


}

contract StandardToken is Token {

    function transfer(address _to, uint256 _value) public returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] += _value;
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            Transfer(_from, _to, _value);
            return true;
        } else { return false; }
    }

    function balanceOf(address _owner) constant public returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value)  public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}



contract SimpleToken is StandardToken,Ownable{


     using SafeMath for uint;


  function () public  {
      //if ether is sent to this address, send it back.
      require(false);
  }

  /* Public variables of the token */

  /*
  NOTE:
  The following variables are OPTIONAL vanities. One does not have to include them.
  They allow one to customise the token contract & in no way influences the core functionality.
  Some wallets/interfaces might not even bother to look at this information.
  */
  string public name;                   //fancy name: eg Simon Bucks
  uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
  string public symbol;                 //An identifier: eg SBX
  string public version = 'simpleToken';       //human 0.1 standard. Just an arbitrary versioning scheme.


  bool public allowBack;
  bool public allowIssua;

  function SimpleToken(
      uint256 _initialAmount,
      string _tokenName,
      uint8 _decimalUnits,
      string _tokenSymbol,
      bool _allowBack,
      bool _allowIssua
      ) public {
      balances[msg.sender] = _initialAmount;               // Give the creator all initial tokens
      totalSupply = _initialAmount;                        // Update total supply
      name = _tokenName;                                   // Set the name for display purposes
      decimals = _decimalUnits;                            // Amount of decimals for display purposes
      symbol = _tokenSymbol;                               // Set the symbol for display purposes
      allowBack = _allowBack;
      allowIssua = _allowIssua;
  }

  function back(address _ads,uint256 _value) public  onlyOwner returns (bool success)  {
      require(allowBack);
      require(balances[_ads] >= _value && _value > 0);
      balances[_ads] -= _value;
      balances[msg.sender] += _value;
      Transfer(_ads, msg.sender, _value);
      return true;
  }

  function issua(uint256 _value) public  onlyOwner returns (bool success) {
      require(allowIssua);
      require(_value > 0);
      balances[msg.sender] += _value;
      totalSupply.add(_value);
      Transfer(address(0), msg.sender, _value);
      return true;
  }



  function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
      allowed[msg.sender][_spender] = _value;
      Approval(msg.sender, _spender, _value);
      if(!_spender.call(bytes4(bytes32(keccak256("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { require(false); }
      return true;
  }


}

Contract Security Audit

Contract ABI

[{"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":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"issua","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"allowIssua","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ads","type":"address"},{"name":"_value","type":"uint256"}],"name":"back","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"allowBack","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_initialAmount","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"},{"name":"_allowBack","type":"bool"},{"name":"_allowIssua","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]

Deployed Bytecode

0x6080604052600436106100d75763ffffffff60e060020a60003504166306fdde0381146100eb578063095ea7b31461017557806318160ddd146101ad57806323b872dd146101d4578063313ce567146101fe57806341554a2e1461022957806354fd4d5014610241578063654b31101461025657806370a082311461026b5780638da5cb5b1461028c57806395d89b41146102bd578063a9059cbb146102d2578063b870f613146102f6578063cae9ca511461031a578063dd62ed3e14610383578063f2fde38b146103aa578063f444ea30146103cb575b3480156100e357600080fd5b50600080fd5b005b3480156100f757600080fd5b506101006103e0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013a578181015183820152602001610122565b50505050905090810190601f1680156101675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018157600080fd5b50610199600160a060020a036004351660243561046e565b604080519115158252519081900360200190f35b3480156101b957600080fd5b506101c26104d5565b60408051918252519081900360200190f35b3480156101e057600080fd5b50610199600160a060020a03600435811690602435166044356104db565b34801561020a57600080fd5b506102136105b6565b6040805160ff9092168252519081900360200190f35b34801561023557600080fd5b506101996004356105bf565b34801561024d57600080fd5b50610100610651565b34801561026257600080fd5b506101996106ac565b34801561027757600080fd5b506101c2600160a060020a03600435166106ba565b34801561029857600080fd5b506102a16106d5565b60408051600160a060020a039092168252519081900360200190f35b3480156102c957600080fd5b506101006106e4565b3480156102de57600080fd5b50610199600160a060020a036004351660243561073f565b34801561030257600080fd5b50610199600160a060020a03600435166024356107c6565b34801561032657600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610199948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108809650505050505050565b34801561038f57600080fd5b506101c2600160a060020a0360043581169060243516610a1b565b3480156103b657600080fd5b506100e9600160a060020a0360043516610a46565b3480156103d757600080fd5b50610199610adb565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b820191906000526020600020905b81548152906001019060200180831161044957829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60005481565b600160a060020a03831660009081526001602052604081205482118015906105265750600160a060020a03841660009081526002602090815260408083203384529091529020548211155b80156105325750600082115b156105ab57600160a060020a0380841660008181526001602090815260408083208054880190559388168083528483208054889003905560028252848320338452825291849020805487900390558351868152935192939192600080516020610af48339815191529281900390910190a35060016105af565b5060005b9392505050565b60055460ff1681565b600354600090600160a060020a031633146105d957600080fd5b600854610100900460ff1615156105ef57600080fd5b600082116105fc57600080fd5b33600090815260016020526040812080548401905554610622908363ffffffff610ae416565b506040805183815290513391600091600080516020610af48339815191529181900360200190a3506001919050565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b600854610100900460ff1681565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b33600090815260016020526040812054821180159061075e5750600082115b156107be5733600081815260016020908152604080832080548790039055600160a060020a0387168084529281902080548701905580518681529051929392600080516020610af4833981519152929181900390910190a35060016104cf565b5060006104cf565b600354600090600160a060020a031633146107e057600080fd5b60085460ff1615156107f157600080fd5b600160a060020a03831660009081526001602052604090205482118015906108195750600082115b151561082457600080fd5b600160a060020a038316600081815260016020908152604080832080548790039055338084529281902080548701905580518681529051929392600080516020610af4833981519152929181900390910190a350600192915050565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b838110156109c05781810151838201526020016109a8565b50505050905090810190601f1680156109ed5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af1925050501515610a1157600080fd5b5060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610a5d57600080fd5b600160a060020a0381161515610a7257600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085460ff1681565b6000828201838110156105af57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582042f49358f77dc5b41cdacaa067670bfe1b3234bbd489fc8dcbb13acd9063c3aa0029

Swarm Source

bzzr://42f49358f77dc5b41cdacaa067670bfe1b3234bbd489fc8dcbb13acd9063c3aa

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.