ETH Price: $3,248.89 (-0.19%)
Gas: 35 Gwei

Contract

0x0Eb814EF5E010EcE061addEeA6Ca346458A45165
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer117173532021-01-24 8:54:011280 days ago1611478441IN
0x0Eb814EF...458A45165
0 ETH0.0024816948.00000145
Transfer117173332021-01-24 8:49:101280 days ago1611478150IN
0x0Eb814EF...458A45165
0 ETH0.002636851.00000145
Transfer116570882021-01-15 3:05:361289 days ago1610679936IN
0x0Eb814EF...458A45165
0 ETH0.002636851.00000145
Transfer116256772021-01-10 7:18:251294 days ago1610263105IN
0x0Eb814EF...458A45165
0 ETH0.0026355751.00000145
Transfer116029252021-01-06 19:23:481298 days ago1609961028IN
0x0Eb814EF...458A45165
0 ETH0.00532353145.00000145
Transfer115905852021-01-04 21:54:451299 days ago1609797285IN
0x0Eb814EF...458A45165
0 ETH0.0042405482.00000145
Transfer115881192021-01-04 13:01:101300 days ago1609765270IN
0x0Eb814EF...458A45165
0 ETH0.00847912164.00000145
Transfer115394342020-12-28 1:38:271307 days ago1609119507IN
0x0Eb814EF...458A45165
0 ETH0.0020163739.00000145
Transfer115336532020-12-27 4:28:291308 days ago1609043309IN
0x0Eb814EF...458A45165
0 ETH0.002223743.00000145
Transfer115332682020-12-27 2:57:211308 days ago1609037841IN
0x0Eb814EF...458A45165
0 ETH0.0027159474.00000145
Transfer115283992020-12-26 9:11:291309 days ago1608973889IN
0x0Eb814EF...458A45165
0 ETH0.0021197841.00000145
Transfer115283542020-12-26 9:03:081309 days ago1608973388IN
0x0Eb814EF...458A45165
0 ETH0.002740253.00000145
Transfer115283472020-12-26 9:01:491309 days ago1608973309IN
0x0Eb814EF...458A45165
0 ETH0.002688552.00000145
Transfer115282872020-12-26 8:47:121309 days ago1608972432IN
0x0Eb814EF...458A45165
0 ETH0.001835150.00000145
Transfer115282602020-12-26 8:38:211309 days ago1608971901IN
0x0Eb814EF...458A45165
0 ETH0.0021192941.00000145
Transfer115282122020-12-26 8:26:061309 days ago1608971166IN
0x0Eb814EF...458A45165
0 ETH0.0023777446.00000145
Transfer115206732020-12-25 4:45:151310 days ago1608871515IN
0x0Eb814EF...458A45165
0 ETH0.0044991187.00000145
Transfer115206652020-12-25 4:43:341310 days ago1608871414IN
0x0Eb814EF...458A45165
0 ETH0.00527482102.00000145
Transfer115206392020-12-25 4:37:321310 days ago1608871052IN
0x0Eb814EF...458A45165
0 ETH0.0047059791.00000145
Transfer115206222020-12-25 4:33:561310 days ago1608870836IN
0x0Eb814EF...458A45165
0 ETH0.0039302676.00000145
Transfer115206162020-12-25 4:32:231310 days ago1608870743IN
0x0Eb814EF...458A45165
0 ETH0.0032579863.00000145
Transfer115152832020-12-24 8:41:341311 days ago1608799294IN
0x0Eb814EF...458A45165
0 ETH0.0031530961.00000145
Transfer115012772020-12-22 5:15:151313 days ago1608614115IN
0x0Eb814EF...458A45165
0 ETH0.0012478634.00000145
Transfer115011242020-12-22 4:40:031313 days ago1608612003IN
0x0Eb814EF...458A45165
0 ETH0.0021287158.00000145
Transfer115010022020-12-22 4:09:391313 days ago1608610179IN
0x0Eb814EF...458A45165
0 ETH0.0019458453.00000145
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 0xcF939c2C...C8cc3ac2d
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.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-03-21
*/

// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
pragma solidity ^0.4.24;


contract EIP20Interface {
    /* 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) public view 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 view returns (uint256 remaining);

    // solhint-disable-next-line no-simple-event-func-name
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract ERC20Token is EIP20Interface {

    uint256 constant private MAX_UINT256 = 2**256 - 1;
    mapping (address => uint256) private balances;
    mapping (address => mapping (address => uint256)) private allowed;
    /*
    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.
    string public symbol;                 //An identifier: eg SBX
    
    constructor( string _name, uint _totalSupply, string _symbol ) public {
        totalSupply = _totalSupply * 10 ** 18;           // Update total supply
        balances[msg.sender] = totalSupply;                     // Give the creator all initial tokens
        name = _name;                                           // Set the name for display purposes
        decimals = 18;                                   // Amount of decimals for display purposes
        symbol = _symbol;                                       // Set the symbol for display purposes
    }

    function transfer(address _to, uint256 _value) public returns (bool success) {
        require(balances[msg.sender] >= _value);
        balances[msg.sender] -= _value;
        balances[_to] += _value;
        emit Transfer(msg.sender, _to, _value); //solhint-disable-line indent, no-unused-vars
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        uint256 allowance = allowed[_from][msg.sender];
        require(balances[_from] >= _value && allowance >= _value);
        balances[_to] += _value;
        balances[_from] -= _value;
        if (allowance < MAX_UINT256) {
            allowed[_from][msg.sender] -= _value;
        }
        emit Transfer(_from, _to, _value); //solhint-disable-line indent, no-unused-vars
        return true;
    }

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

    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars
        return true;
    }

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

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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":"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"},{"inputs":[{"name":"_name","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_symbol","type":"string"}],"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"}]

Deployed Bytecode

0x608060405260043610610099576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde031461009e578063095ea7b31461012e57806318160ddd1461019357806323b872dd146101be578063313ce5671461024357806370a082311461027457806395d89b41146102cb578063a9059cbb1461035b578063dd62ed3e146103c0575b600080fd5b3480156100aa57600080fd5b506100b3610437565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f35780820151818401526020810190506100d8565b50505050905090810190601f1680156101205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013a57600080fd5b50610179600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506104d5565b604051808215151515815260200191505060405180910390f35b34801561019f57600080fd5b506101a86105c7565b6040518082815260200191505060405180910390f35b3480156101ca57600080fd5b50610229600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105cd565b604051808215151515815260200191505060405180910390f35b34801561024f57600080fd5b50610258610867565b604051808260ff1660ff16815260200191505060405180910390f35b34801561028057600080fd5b506102b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061087a565b6040518082815260200191505060405180910390f35b3480156102d757600080fd5b506102e06108c3565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610320578082015181840152602081019050610305565b50505050905090810190601f16801561034d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036757600080fd5b506103a6600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610961565b604051808215151515815260200191505060405180910390f35b3480156103cc57600080fd5b50610421600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aba565b6040518082815260200191505060405180910390f35b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60005481565b600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015801561069e5750828110155b15156106a957600080fd5b82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555082600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156107f65782600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a360019150509392505050565b600460009054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b505050505081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156109b157600080fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050929150505600a165627a7a72305820536b1d7212ff772aa1a1d1258312bf7b32a47b0f124006ad95cce38475fe683d0029

Deployed Bytecode Sourcemap

2528:2709:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3048:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3048:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3048:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4822:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4822:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;653:26:0;;;;;;;;;;;;;;;;;;;;;;;4178:513;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4178:513:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3120:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3120:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4699:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4699:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3192:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3192:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3192:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3843:327;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3843:327:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5090:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5090:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3048:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4822:260::-;4889:12;4946:6;4914:7;:19;4922:10;4914:19;;;;;;;;;;;;;;;:29;4934:8;4914:29;;;;;;;;;;;;;;;:38;;;;4989:8;4968:38;;4977:10;4968:38;;;4999:6;4968:38;;;;;;;;;;;;;;;;;;5070:4;5063:11;;4822:260;;;;:::o;653:26::-;;;;:::o;4178:513::-;4260:12;4285:17;4305:7;:14;4313:5;4305:14;;;;;;;;;;;;;;;:26;4320:10;4305:26;;;;;;;;;;;;;;;;4285:46;;4369:6;4350:8;:15;4359:5;4350:15;;;;;;;;;;;;;;;;:25;;:48;;;;;4392:6;4379:9;:19;;4350:48;4342:57;;;;;;;;4427:6;4410:8;:13;4419:3;4410:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;4463:6;4444:8;:15;4453:5;4444:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;2614:10;4484:9;:23;4480:92;;;4554:6;4524:7;:14;4532:5;4524:14;;;;;;;;;;;;;;;:26;4539:10;4524:26;;;;;;;;;;;;;;;;:36;;;;;;;;;;;4480:92;4603:3;4587:28;;4596:5;4587:28;;;4608:6;4587:28;;;;;;;;;;;;;;;;;;4679:4;4672:11;;4178:513;;;;;;:::o;3120:21::-;;;;;;;;;;;;;:::o;4699:115::-;4755:15;4790:8;:16;4799:6;4790:16;;;;;;;;;;;;;;;;4783:23;;4699:115;;;:::o;3192:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3843:327::-;3906:12;3963:6;3939:8;:20;3948:10;3939:20;;;;;;;;;;;;;;;;:30;;3931:39;;;;;;;;4005:6;3981:8;:20;3990:10;3981:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;4039:6;4022:8;:13;4031:3;4022:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;4082:3;4061:33;;4070:10;4061:33;;;4087:6;4061:33;;;;;;;;;;;;;;;;;;4158:4;4151:11;;3843:327;;;;:::o;5090:144::-;5164:17;5201:7;:15;5209:6;5201:15;;;;;;;;;;;;;;;:25;5217:8;5201:25;;;;;;;;;;;;;;;;5194:32;;5090:144;;;;:::o

Swarm Source

bzzr://536b1d7212ff772aa1a1d1258312bf7b32a47b0f124006ad95cce38475fe683d

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.