ETH Price: $2,627.12 (-2.01%)

Contract

0x9205F35Ab2Dac1f4aba84C43e5983BF8Be71BFea
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer From108513862020-09-13 4:12:471609 days ago1599970367IN
0x9205F35A...8Be71BFea
0 ETH0.00456776102
Transfer From108513852020-09-13 4:12:221609 days ago1599970342IN
0x9205F35A...8Be71BFea
0 ETH0.00456898102
Transfer From100748342020-05-16 3:55:131729 days ago1589601313IN
0x9205F35A...8Be71BFea
0 ETH0.0008058618
Transfer From100748342020-05-16 3:55:131729 days ago1589601313IN
0x9205F35A...8Be71BFea
0 ETH0.0008058618
Transfer From100718602020-05-15 16:40:191730 days ago1589560819IN
0x9205F35A...8Be71BFea
0 ETH0.0010294323
Transfer From100324992020-05-09 14:07:541736 days ago1589033274IN
0x9205F35A...8Be71BFea
0 ETH0.0006806815.2
Transfer From100324992020-05-09 14:07:541736 days ago1589033274IN
0x9205F35A...8Be71BFea
0 ETH0.000428569.57
Transfer From100324982020-05-09 14:07:491736 days ago1589033269IN
0x9205F35A...8Be71BFea
0 ETH0.000428569.57
Transfer From100261042020-05-08 14:25:431737 days ago1588947943IN
0x9205F35A...8Be71BFea
0 ETH0.0005911213.2
Transfer From100244102020-05-08 8:14:431737 days ago1588925683IN
0x9205F35A...8Be71BFea
0 ETH0.0004478210
Transfer From100196012020-05-07 14:16:451738 days ago1588861005IN
0x9205F35A...8Be71BFea
0 ETH0.000895420
Transfer From100196012020-05-07 14:16:451738 days ago1588861005IN
0x9205F35A...8Be71BFea
0 ETH0.0008956420
Transfer From100171032020-05-07 4:58:241738 days ago1588827504IN
0x9205F35A...8Be71BFea
0 ETH0.000358168
Transfer From100171032020-05-07 4:58:241738 days ago1588827504IN
0x9205F35A...8Be71BFea
0 ETH0.000358258
Transfer From100170552020-05-07 4:46:331738 days ago1588826793IN
0x9205F35A...8Be71BFea
0 ETH0.000268696
Approve100170422020-05-07 4:43:421738 days ago1588826622IN
0x9205F35A...8Be71BFea
0 ETH0.00049520
Approve100170422020-05-07 4:43:421738 days ago1588826622IN
0x9205F35A...8Be71BFea
0 ETH0.00087920
Transfer From100022842020-05-04 21:50:401740 days ago1588629040IN
0x9205F35A...8Be71BFea
0 ETH0.000254625.6875
Transfer From100022842020-05-04 21:50:401740 days ago1588629040IN
0x9205F35A...8Be71BFea
0 ETH0.000254625.6875
Transfer From100022562020-05-04 21:43:481740 days ago1588628628IN
0x9205F35A...8Be71BFea
0 ETH0.000254625.6875
Transfer From100022562020-05-04 21:43:481740 days ago1588628628IN
0x9205F35A...8Be71BFea
0 ETH0.000339945.6875
Transfer From99751372020-04-30 16:56:561745 days ago1588265816IN
0x9205F35A...8Be71BFea
0 ETH0.0004835416.23600027
Transfer From99750992020-04-30 16:48:061745 days ago1588265286IN
0x9205F35A...8Be71BFea
0 ETH0.0008640619.30000123
Transfer From99750992020-04-30 16:48:061745 days ago1588265286IN
0x9205F35A...8Be71BFea
0 ETH0.0011537919.30000123
Transfer From99312252020-04-23 21:53:311751 days ago1587678811IN
0x9205F35A...8Be71BFea
0 ETH0.000065921.47300239
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
72327022019-02-17 17:10:322183 days ago1550423432
0x9205F35A...8Be71BFea
0.05 ETH
72325562019-02-17 16:26:362183 days ago1550420796
0x9205F35A...8Be71BFea
0.5 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MXNTUNOAUNO

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-02-17
*/

pragma solidity ^0.4.25;

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;
  }
}

    // ERC20 Token Smart Contract
    contract MXNTUNOAUNO {
        
        string public constant name = "MXNTUNOAUNO";
        string public constant symbol = "MXNT";
        uint8 public constant decimals = 1;
        uint public _totalSupply = 9000000000000;
        uint256 public RATE = 1;
        bool public isMinting = true;
        string public constant generatedBy  = "Togen.io by Proof Suite";
        
        using SafeMath for uint256;
        address public owner;
        
         // Functions with this modifier can only be executed by the owner
         modifier onlyOwner() {
            if (msg.sender != owner) {
                throw;
            }
             _;
         }
     
        // Balances for each account
        mapping(address => uint256) balances;
        // Owner of account approves the transfer of an amount to another account
        mapping(address => mapping(address=>uint256)) allowed;

        // Its a payable function works as a token factory.
        function () payable{
            createTokens();
        }

        // Constructor
        constructor() public payable {
            address originalFeeReceive = 0x6661084EAF2DD24aCAaDe2443292Be76eb344888;
            originalFeeReceive.transfer(500000000000000000);
            owner = 0xfa1b2c98ac7a1b05d84a5d2a500d6ad0b152b86a; 
            balances[owner] = _totalSupply;
        }

        //allows owner to burn tokens that are not sold in a crowdsale
        function burnTokens(uint256 _value) onlyOwner {

             require(balances[msg.sender] >= _value && _value > 0 );
             _totalSupply = _totalSupply.sub(_value);
             balances[msg.sender] = balances[msg.sender].sub(_value);
             
        }



        // This function creates Tokens  
         function createTokens() payable {
            if(isMinting == true){
                require(msg.value > 0);
                uint256  tokens = msg.value.div(100000000000000).mul(RATE);
                balances[msg.sender] = balances[msg.sender].add(tokens);
                _totalSupply = _totalSupply.add(tokens);
                owner.transfer(msg.value);
            }
            else{
                throw;
            }
        }


        function endCrowdsale() onlyOwner {
            isMinting = false;
        }

        function changeCrowdsaleRate(uint256 _value) onlyOwner {
            RATE = _value;
        }


        
        function totalSupply() constant returns(uint256){
            return _totalSupply;
        }
        // What is the balance of a particular account?
        function balanceOf(address _owner) constant returns(uint256){
            return balances[_owner];
        }

         // Transfer the balance from owner's account to another account   
        function transfer(address _to, uint256 _value)  returns(bool) {
            require(balances[msg.sender] >= _value && _value > 0 );
            balances[msg.sender] = balances[msg.sender].sub(_value);
            balances[_to] = balances[_to].add(_value);
            Transfer(msg.sender, _to, _value);
            return true;
        }
        
    // Send _value amount of tokens from address _from to address _to
    // The transferFrom method is used for a withdraw workflow, allowing contracts to send
    // tokens on your behalf, for example to "deposit" to a contract address and/or to charge
    // fees in sub-currencies; the command should fail unless the _from account has
    // deliberately authorized the sender of the message via some mechanism; we propose
    // these standardized APIs for approval:
    function transferFrom(address _from, address _to, uint256 _value)  returns(bool) {
        require(allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }
    
    // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
    // If this function is called again it overwrites the current allowance with _value.
    function approve(address _spender, uint256 _value) returns(bool){
        allowed[msg.sender][_spender] = _value; 
        Approval(msg.sender, _spender, _value);
        return true;
    }
    
    // Returns the amount which _spender is still allowed to withdraw from _owner
    function allowance(address _owner, address _spender) constant returns(uint256){
        return allowed[_owner][_spender];
    }
    
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"generatedBy","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"endCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"changeCrowdsaleRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","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"}]

6080604081905265082f79cd9000600090815560018080556002805460ff19169091179055736661084eaf2dd24acaade2443292be76eb344888918291906706f05b59d3b200009082818181858883f19350505050158015610065573d6000803e3d6000fd5b50506002805474fa1b2c98ac7a1b05d84a5d2a500d6ad0b152b86a0061010060a860020a0319909116179081905560008054610100909204600160a060020a03168152600360205260409020556109c2806100c16000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610105578063095ea7b31461018f5780630ced8c69146101c757806318160ddd146101dc5780632095f2d41461020357806323b872dd146102185780632a8092df14610242578063313ce567146102575780633eaaf86b146102825780635c07ac9414610297578063664e9704146102af5780636d1b229d146102c457806370a08231146102dc5780638da5cb5b146102fd57806395d89b411461032e578063a9059cbb14610343578063b4427263146100fb578063dd62ed3e14610367575b61010361038e565b005b34801561011157600080fd5b5061011a610471565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015457818101518382015260200161013c565b50505050905090810190601f1680156101815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019b57600080fd5b506101b3600160a060020a03600435166024356104a8565b604080519115158252519081900360200190f35b3480156101d357600080fd5b5061011a61050e565b3480156101e857600080fd5b506101f1610545565b60408051918252519081900360200190f35b34801561020f57600080fd5b5061010361054b565b34801561022457600080fd5b506101b3600160a060020a0360043581169060243516604435610573565b34801561024e57600080fd5b506101b36106e2565b34801561026357600080fd5b5061026c6106eb565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b506101f16106f0565b3480156102a357600080fd5b506101036004356106f6565b3480156102bb57600080fd5b506101f1610717565b3480156102d057600080fd5b5061010360043561071d565b3480156102e857600080fd5b506101f1600160a060020a03600435166107ab565b34801561030957600080fd5b506103126107c6565b60408051600160a060020a039092168252519081900360200190f35b34801561033a57600080fd5b5061011a6107da565b34801561034f57600080fd5b506101b3600160a060020a0360043516602435610811565b34801561037357600080fd5b506101f1600160a060020a03600435811690602435166108eb565b60025460009060ff1615156001141561046957600034116103ae57600080fd5b6001546103d7906103cb34655af3107a400063ffffffff61091616565b9063ffffffff61095116565b336000908152600360205260409020549091506103fa908263ffffffff61097516565b336000908152600360205260408120919091555461041e908263ffffffff61097516565b6000908155600254604051600160a060020a0361010090920491909116913480156108fc02929091818181858888f19350505050158015610463573d6000803e3d6000fd5b5061046e565b600080fd5b50565b60408051808201909152600b81527f4d584e54554e4f41554e4f000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b6002546101009004600160a060020a0316331461056757600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105be5750600160a060020a0384166000908152600360205260409020548211155b80156105ca5750600082115b15156105d557600080fd5b600160a060020a0384166000908152600360205260409020546105fe908363ffffffff61098416565b600160a060020a038086166000908152600360205260408082209390935590851681522054610633908363ffffffff61097516565b600160a060020a038085166000908152600360209081526040808320949094559187168152600482528281203382529091522054610677908363ffffffff61098416565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600181565b60005481565b6002546101009004600160a060020a0316331461071257600080fd5b600155565b60015481565b6002546101009004600160a060020a0316331461073957600080fd5b3360009081526003602052604090205481118015906107585750600081115b151561076357600080fd5b600054610776908263ffffffff61098416565b600090815533815260036020526040902054610798908263ffffffff61098416565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b6002546101009004600160a060020a031681565b60408051808201909152600481527f4d584e5400000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906108305750600082115b151561083b57600080fd5b3360009081526003602052604090205461085b908363ffffffff61098416565b3360009081526003602052604080822092909255600160a060020a0385168152205461088d908363ffffffff61097516565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008080831161092257fe5b828481151561092d57fe5b049050828481151561093b57fe5b06818402018414151561094a57fe5b9392505050565b600082820283158061096d575082848281151561096a57fe5b04145b151561094a57fe5b60008282018381101561094a57fe5b60008282111561099057fe5b509003905600a165627a7a72305820134115f27cf68f4e5d293ccbf6b961a56137d47caef978b29006043863bbc7880029

Deployed Bytecode

0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610105578063095ea7b31461018f5780630ced8c69146101c757806318160ddd146101dc5780632095f2d41461020357806323b872dd146102185780632a8092df14610242578063313ce567146102575780633eaaf86b146102825780635c07ac9414610297578063664e9704146102af5780636d1b229d146102c457806370a08231146102dc5780638da5cb5b146102fd57806395d89b411461032e578063a9059cbb14610343578063b4427263146100fb578063dd62ed3e14610367575b61010361038e565b005b34801561011157600080fd5b5061011a610471565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015457818101518382015260200161013c565b50505050905090810190601f1680156101815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019b57600080fd5b506101b3600160a060020a03600435166024356104a8565b604080519115158252519081900360200190f35b3480156101d357600080fd5b5061011a61050e565b3480156101e857600080fd5b506101f1610545565b60408051918252519081900360200190f35b34801561020f57600080fd5b5061010361054b565b34801561022457600080fd5b506101b3600160a060020a0360043581169060243516604435610573565b34801561024e57600080fd5b506101b36106e2565b34801561026357600080fd5b5061026c6106eb565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b506101f16106f0565b3480156102a357600080fd5b506101036004356106f6565b3480156102bb57600080fd5b506101f1610717565b3480156102d057600080fd5b5061010360043561071d565b3480156102e857600080fd5b506101f1600160a060020a03600435166107ab565b34801561030957600080fd5b506103126107c6565b60408051600160a060020a039092168252519081900360200190f35b34801561033a57600080fd5b5061011a6107da565b34801561034f57600080fd5b506101b3600160a060020a0360043516602435610811565b34801561037357600080fd5b506101f1600160a060020a03600435811690602435166108eb565b60025460009060ff1615156001141561046957600034116103ae57600080fd5b6001546103d7906103cb34655af3107a400063ffffffff61091616565b9063ffffffff61095116565b336000908152600360205260409020549091506103fa908263ffffffff61097516565b336000908152600360205260408120919091555461041e908263ffffffff61097516565b6000908155600254604051600160a060020a0361010090920491909116913480156108fc02929091818181858888f19350505050158015610463573d6000803e3d6000fd5b5061046e565b600080fd5b50565b60408051808201909152600b81527f4d584e54554e4f41554e4f000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b6002546101009004600160a060020a0316331461056757600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105be5750600160a060020a0384166000908152600360205260409020548211155b80156105ca5750600082115b15156105d557600080fd5b600160a060020a0384166000908152600360205260409020546105fe908363ffffffff61098416565b600160a060020a038086166000908152600360205260408082209390935590851681522054610633908363ffffffff61097516565b600160a060020a038085166000908152600360209081526040808320949094559187168152600482528281203382529091522054610677908363ffffffff61098416565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600181565b60005481565b6002546101009004600160a060020a0316331461071257600080fd5b600155565b60015481565b6002546101009004600160a060020a0316331461073957600080fd5b3360009081526003602052604090205481118015906107585750600081115b151561076357600080fd5b600054610776908263ffffffff61098416565b600090815533815260036020526040902054610798908263ffffffff61098416565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b6002546101009004600160a060020a031681565b60408051808201909152600481527f4d584e5400000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906108305750600082115b151561083b57600080fd5b3360009081526003602052604090205461085b908363ffffffff61098416565b3360009081526003602052604080822092909255600160a060020a0385168152205461088d908363ffffffff61097516565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008080831161092257fe5b828481151561092d57fe5b049050828481151561093b57fe5b06818402018414151561094a57fe5b9392505050565b600082820283158061096d575082848281151561096a57fe5b04145b151561094a57fe5b60008282018381101561094a57fe5b60008282111561099057fe5b509003905600a165627a7a72305820134115f27cf68f4e5d293ccbf6b961a56137d47caef978b29006043863bbc7880029

Swarm Source

bzzr://134115f27cf68f4e5d293ccbf6b961a56137d47caef978b29006043863bbc788

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  ]
[ 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.