ETH Price: $3,250.43 (-0.29%)
Gas: 1 Gwei

Contract

0x21B12a7428036a63139f4FC8Ef4cA45eE9e5fD9C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve167901932023-03-09 10:55:35506 days ago1678359335IN
0x21B12a74...eE9e5fD9C
0 ETH0.0005242421.78010032
Approve160854602022-11-30 21:23:59605 days ago1669843439IN
0x21B12a74...eE9e5fD9C
0 ETH0.0003369814
Approve159017782022-11-05 5:38:23630 days ago1667626703IN
0x21B12a74...eE9e5fD9C
0 ETH0.0003235212.41002427
Approve159017722022-11-05 5:37:11630 days ago1667626631IN
0x21B12a74...eE9e5fD9C
0 ETH0.0002860811.8855622
Transfer156046232022-09-24 17:09:59672 days ago1664039399IN
0x21B12a74...eE9e5fD9C
0 ETH0.000414618.90017095
Approve155760842022-09-20 17:09:35676 days ago1663693775IN
0x21B12a74...eE9e5fD9C
0 ETH0.0013300628.6936163
Approve155745002022-09-20 11:49:35676 days ago1663674575IN
0x21B12a74...eE9e5fD9C
0 ETH0.000314176.77780423
Approve155743292022-09-20 11:14:59676 days ago1663672499IN
0x21B12a74...eE9e5fD9C
0 ETH0.000168743.64039837
Approve155739152022-09-20 9:51:11676 days ago1663667471IN
0x21B12a74...eE9e5fD9C
0 ETH0.000120355
Approve155737342022-09-20 9:14:23676 days ago1663665263IN
0x21B12a74...eE9e5fD9C
0 ETH0.000224194.83655036
Approve155729032022-09-20 6:27:35676 days ago1663655255IN
0x21B12a74...eE9e5fD9C
0 ETH0.000459599.91496707
Approve155725152022-09-20 5:08:59676 days ago1663650539IN
0x21B12a74...eE9e5fD9C
0 ETH0.000387028.34926509
Approve155710862022-09-20 0:21:11677 days ago1663633271IN
0x21B12a74...eE9e5fD9C
0 ETH0.000281486.07260049
Approve155710852022-09-20 0:20:59677 days ago1663633259IN
0x21B12a74...eE9e5fD9C
0 ETH0.000266155.7418991
Approve155706132022-09-19 22:46:11677 days ago1663627571IN
0x21B12a74...eE9e5fD9C
0 ETH0.000364567.86477079
Approve155705452022-09-19 22:32:23677 days ago1663626743IN
0x21B12a74...eE9e5fD9C
0 ETH0.000359987.76590981
Approve155704422022-09-19 22:11:23677 days ago1663625483IN
0x21B12a74...eE9e5fD9C
0 ETH0.0006011612.96905808
Approve155702582022-09-19 21:34:11677 days ago1663623251IN
0x21B12a74...eE9e5fD9C
0 ETH0.0005562412
Approve155702102022-09-19 21:24:35677 days ago1663622675IN
0x21B12a74...eE9e5fD9C
0 ETH0.0009920821.40235244
Approve155701822022-09-19 21:18:47677 days ago1663622327IN
0x21B12a74...eE9e5fD9C
0 ETH0.0002813911.69077667
Approve155701762022-09-19 21:17:35677 days ago1663622255IN
0x21B12a74...eE9e5fD9C
0 ETH0.0005392611.63355759
Approve155701672022-09-19 21:15:47677 days ago1663622147IN
0x21B12a74...eE9e5fD9C
0 ETH0.0005528411.92661479
Approve155700992022-09-19 21:01:59677 days ago1663621319IN
0x21B12a74...eE9e5fD9C
0 ETH0.0011673125.18266286
Approve155700722022-09-19 20:56:23677 days ago1663620983IN
0x21B12a74...eE9e5fD9C
0 ETH0.0010074121.73313627
Approve155699462022-09-19 20:31:11677 days ago1663619471IN
0x21B12a74...eE9e5fD9C
0 ETH0.0005117711.04060157
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 0xA001eB01...147D7ddBD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Nameless

Compiler Version
v0.4.4+commit.4633f3de

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.4.4;

contract Token {

    /// @return total amount of tokens
    function totalSupply() constant returns (uint256 supply) {}

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant 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) 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) returns (bool success) {}

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) 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) constant returns (uint256 remaining) {}

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



contract StandardToken is Token {

    function transfer(address _to, uint256 _value) 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) 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 returns (uint256 balance) {
        return balances[_owner];
    }

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

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

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


//name this contract whatever you'd like
contract Nameless is StandardToken {

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

    /* 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 = 'H1.0';       //human 0.1 standard. Just an arbitrary versioning scheme.

//
// CHANGE THESE VALUES FOR YOUR TOKEN
//

//make sure this function name matches the contract name above. So if you're token is called TutorialToken, make sure the //contract name above is also TutorialToken instead of ERC20Token

    function Nameless(
        ) {
        balances[msg.sender] = 99983740000000000000000000;               // Give the creator all initial tokens (100000 for example)
        totalSupply = 107975610000000000000000000;                        // Update total supply (100000 for example)
        name = "Nameless";                                   // Set the name for display purposes
        decimals = 18;                            // Amount of decimals for display purposes
        symbol = "NXN";                               // Set the symbol for display purposes
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);

        //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
        //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"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":"success","type":"bool"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"type":"constructor"},{"payable":false,"type":"fallback"},{"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

0x606060405236156100ab576000357c01000000000000000000000000000000000000000000000000000000009004806306fdde03146100bd578063095ea7b31461013d57806318160ddd1461017957806323b872dd146101a1578063313ce567146101e657806354fd4d501461021157806370a082311461029157806395d89b41146102c2578063a9059cbb14610342578063cae9ca511461037e578063dd62ed3e14610401576100ab565b34610002576100bb5b610002565b565b005b34610002576100cf600480505061043b565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100025761016160048080359060200190919080359060200190919050506104dc565b60405180821515815260200191505060405180910390f35b346100025761018b60048050506105b0565b6040518082815260200191505060405180910390f35b34610002576101ce60048080359060200190919080359060200190919080359060200190919050506105b9565b60405180821515815260200191505060405180910390f35b34610002576101f860048050506107c5565b604051808260ff16815260200191505060405180910390f35b346100025761022360048050506107d8565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156102835780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610002576102ac6004808035906020019091905050610879565b6040518082815260200191505060405180910390f35b34610002576102d460048050506108b7565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156103345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610002576103666004808035906020019091908035906020019091905050610958565b60405180821515815260200191505060405180910390f35b34610002576103e96004808035906020019091908035906020019091908035906020019082018035906020019191908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050909091905050610a98565b60405180821515815260200191505060405180910390f35b34610002576104256004808035906020019091908035906020019091905050610cdf565b6040518082815260200191505060405180910390f35b60036000508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b505050505081565b600081600160005060003373ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005060008573ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3600190506105aa565b92915050565b60026000505481565b600081600060005060008673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000505410158015610653575081600160005060008673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005060003373ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000505410155b801561065f5750600082115b156107b45781600060005060008573ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282825054019250508190555081600060005060008673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282825054039250508190555081600160005060008673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005060003373ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828282505403925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190506107be566107bd565b600090506107be565b5b9392505050565b600460009054906101000a900460ff1681565b60066000508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b505050505081565b6000600060005060008373ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000505490506108b2565b919050565b60056000508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109505780601f1061092557610100808354040283529160200191610950565b820191906000526020600020905b81548152906001019060200180831161093357829003601f168201915b505050505081565b600081600060005060003373ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005054101580156109995750600082115b15610a885781600060005060003373ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282825054039250508190555081600060005060008573ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828282505401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a360019050610a9256610a91565b60009050610a92565b5b92915050565b600082600160005060003373ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005060008673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600050819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040518082815260200191505060405180910390a38373ffffffffffffffffffffffffffffffffffffffff1660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815260200150602e01905060405180910390207c0100000000000000000000000000000000000000000000000000000000900433853086604051857c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018280519060200190808383829060006004602084601f0104600302600f01f150905090810190601f168015610ca75780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000876161da5a03f1925050501515610ccf57610002565b60019050610cd8565b9392505050565b6000600160005060008473ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060005060008373ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600050549050610d42565b9291505056

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.