ETH Price: $3,244.51 (+3.57%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer129577132021-08-04 8:57:071275 days ago1628067427IN
0xfe555f56...3700E929c
0 ETH0.0017864634.5597696
Transfer124256242021-05-13 10:56:121358 days ago1620903372IN
0xfe555f56...3700E929c
0 ETH0.0089695173.5988427
Transfer116864422021-01-19 15:02:241472 days ago1611068544IN
0xfe555f56...3700E929c
0 ETH0.00522619100.7128655
Transfer113459542020-11-28 8:33:231524 days ago1606552403IN
0xfe555f56...3700E929c
0 ETH0.0005900816
Transfer112961182020-11-20 16:39:571532 days ago1605890397IN
0xfe555f56...3700E929c
0 ETH0.0049274695
Transfer111980522020-11-05 15:36:541547 days ago1604590614IN
0xfe555f56...3700E929c
0 ETH0.00651291125.5671629
Transfer110157672020-10-08 15:40:271575 days ago1602171627IN
0xfe555f56...3700E929c
0 ETH0.00416493112.8952474
Transfer110157622020-10-08 15:39:011575 days ago1602171541IN
0xfe555f56...3700E929c
0 ETH0.00416357112.8952474
Transfer110084332020-10-07 11:55:241576 days ago1602071724IN
0xfe555f56...3700E929c
0 ETH0.0037336372
Transfer109366722020-09-26 6:38:211587 days ago1601102301IN
0xfe555f56...3700E929c
0 ETH0.0029564757.00000134
Transfer109033712020-09-21 3:35:061592 days ago1600659306IN
0xfe555f56...3700E929c
0 ETH0.00409119110.9325848
Transfer109033632020-09-21 3:33:421592 days ago1600659222IN
0xfe555f56...3700E929c
0 ETH0.00401251108.7992775
Transfer109033592020-09-21 3:32:381592 days ago1600659158IN
0xfe555f56...3700E929c
0 ETH0.00397317107.7326151
Transfer108632812020-09-15 0:09:401598 days ago1600128580IN
0xfe555f56...3700E929c
0 ETH0.0036584799.1993387
Transfer108632192020-09-14 23:56:211598 days ago1600127781IN
0xfe555f56...3700E929c
0 ETH0.00377648102.3993173
Transfer108632182020-09-14 23:56:111598 days ago1600127771IN
0xfe555f56...3700E929c
0 ETH0.0036584799.1993387
Transfer108419412020-09-11 17:32:051602 days ago1599845525IN
0xfe555f56...3700E929c
0 ETH0.00570406154.6656356
Transfer108419292020-09-11 17:30:441602 days ago1599845444IN
0xfe555f56...3700E929c
0 ETH0.00590076159.9989333
Transfer108419262020-09-11 17:29:531602 days ago1599845393IN
0xfe555f56...3700E929c
0 ETH0.00562145152.4256522
Transfer108333552020-09-10 10:13:011603 days ago1599732781IN
0xfe555f56...3700E929c
0 ETH0.0103688200.00000134
Transfer108154152020-09-07 15:43:411606 days ago1599493421IN
0xfe555f56...3700E929c
0 ETH0.00483862131.1991253
Transfer108154072020-09-07 15:39:321606 days ago1599493172IN
0xfe555f56...3700E929c
0 ETH0.00483862131.1991253
Transfer108154052020-09-07 15:39:231606 days ago1599493163IN
0xfe555f56...3700E929c
0 ETH0.00472693128.1705741
Transfer108150362020-09-07 14:19:051606 days ago1599488345IN
0xfe555f56...3700E929c
0 ETH0.0075226145.00000145
Transfer108127762020-09-07 6:06:131606 days ago1599458773IN
0xfe555f56...3700E929c
0 ETH0.00369781100.2659998
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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.